mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
12 lines
244 B
C
12 lines
244 B
C
|
#include <linux/kernel.h>
|
||
|
#include <linux/bitops.h>
|
||
|
#include <linux/cpumask.h>
|
||
|
#include <linux/module.h>
|
||
|
|
||
|
int __first_cpu(const cpumask_t *srcp)
|
||
|
{
|
||
|
return min_t(int, NR_CPUS, find_first_bit(srcp->bits, NR_CPUS));
|
||
|
}
|
||
|
EXPORT_SYMBOL(__first_cpu);
|
||
|
|