#include <linux/slab.h>
#include <linux/kernel.h>
#include <linux/bitops.h>
#include <linux/cpumask.h>
#include <linux/export.h>
#include <linux/bootmem.h>
Go to the source code of this file.
cpumask_any_but - return a "random" in a cpumask, but not this one. : the cpumask to search : the cpu to ignore.
Often used to find any cpu but smp_processor_id() in a mask. Returns >= nr_cpu_ids if no cpus set.
Definition at line 55 of file cpumask.c.
cpumask_next_and - get the next cpu in *src1p & *src2p
: the cpu prior to the place to search (ie. return will be >
) : the first cpumask pointer : the second cpumask pointer
Returns >= nr_cpu_ids if no further cpus set in both.
Definition at line 37 of file cpumask.c.