X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fsmp_processor_id.c;h=c4381d9516f658ff62c6a2fd767310c78d80b7bc;hb=0ccd58fc03f40529f66190b1a41e92a732d2bda8;hp=3b4dc098181e47ae4d3a239aa4c27dcd6d9a7d47;hpb=3a533374283aea50eab3976d8a6d30532175f009;p=linux-2.6 diff --git a/lib/smp_processor_id.c b/lib/smp_processor_id.c index 3b4dc09818..c4381d9516 100644 --- a/lib/smp_processor_id.c +++ b/lib/smp_processor_id.c @@ -11,7 +11,7 @@ notrace unsigned int debug_smp_processor_id(void) { unsigned long preempt_count = preempt_count(); int this_cpu = raw_smp_processor_id(); - cpumask_t this_mask; + cpumask_of_cpu_ptr_declare(this_mask); if (likely(preempt_count)) goto out; @@ -23,9 +23,9 @@ notrace unsigned int debug_smp_processor_id(void) * Kernel threads bound to a single CPU can safely use * smp_processor_id(): */ - this_mask = cpumask_of_cpu(this_cpu); + cpumask_of_cpu_ptr_next(this_mask, this_cpu); - if (cpus_equal(current->cpus_allowed, this_mask)) + if (cpus_equal(current->cpus_allowed, *this_mask)) goto out; /*