]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - lib/smp_processor_id.c
regression: disable timer peek-ahead for 2.6.28
[linux-2.6-omap-h63xx.git] / lib / smp_processor_id.c
index 9fb2df0d8dfbf334e67b4e48c4a5ef4af7752dc8..0f8fc22ed1030a200f1fd3c203ca6789c5646ac8 100644 (file)
@@ -11,7 +11,6 @@ notrace unsigned int debug_smp_processor_id(void)
 {
        unsigned long preempt_count = preempt_count();
        int this_cpu = raw_smp_processor_id();
-       cpumask_of_cpu_ptr_declare(this_mask);
 
        if (likely(preempt_count))
                goto out;
@@ -23,9 +22,7 @@ notrace unsigned int debug_smp_processor_id(void)
         * Kernel threads bound to a single CPU can safely use
         * smp_processor_id():
         */
-       cpumask_of_cpu_ptr_next(this_mask, cpu);
-
-       if (cpus_equal(current->cpus_allowed, *this_mask))
+       if (cpus_equal(current->cpus_allowed, cpumask_of_cpu(this_cpu)))
                goto out;
 
        /*