Skip to content

Commit

Permalink
cpumask: Optimize cpumask_of_cpu in lib/smp_processor_id.c
Browse files Browse the repository at this point in the history
  * Optimize various places where a pointer to the cpumask_of_cpu value
    will result in reducing stack pressure.

Signed-off-by: Mike Travis <travis@sgi.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Mike Travis authored and Ingo Molnar committed Jul 18, 2008
1 parent c18a41f commit 4755b92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/smp_processor_id.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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, cpu);

if (cpus_equal(current->cpus_allowed, this_mask))
if (cpus_equal(current->cpus_allowed, *this_mask))
goto out;

/*
Expand Down

0 comments on commit 4755b92

Please sign in to comment.