mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
f7b3ea8cf7
group_cpus_evenly() has become a generic function which can be used for other subsystems than the interrupt subsystem, so move it into lib/. Signed-off-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Jens Axboe <axboe@kernel.dk> Link: https://lore.kernel.org/r/20221227022905.352674-6-ming.lei@redhat.com
14 lines
310 B
C
14 lines
310 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2016 Thomas Gleixner.
|
|
* Copyright (C) 2016-2017 Christoph Hellwig.
|
|
*/
|
|
|
|
#ifndef __LINUX_GROUP_CPUS_H
|
|
#define __LINUX_GROUP_CPUS_H
|
|
#include <linux/kernel.h>
|
|
#include <linux/cpu.h>
|
|
|
|
struct cpumask *group_cpus_evenly(unsigned int numgrps);
|
|
|
|
#endif
|