diff options
author | Akinobu Mita <[email protected]> | 2010-01-31 20:53:24 +0900 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2010-02-02 06:58:27 +0100 |
commit | 90fdbdb48442a03c72cae5463e6edb64cb3a3a7d (patch) | |
tree | 7264bf97f0f597879734c7dae46f4e8f7fe04745 | |
parent | 60db48cacb9b253d5607a5ff206112a59cd09e34 (diff) |
sched: Use for_each_bit
No change in functionality.
Signed-off-by: Akinobu Mita <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Andrew Morton <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | kernel/sched_cpupri.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/sched_cpupri.c b/kernel/sched_cpupri.c index 597b33099dfa..eeb3506c4834 100644 --- a/kernel/sched_cpupri.c +++ b/kernel/sched_cpupri.c @@ -47,9 +47,7 @@ static int convert_prio(int prio) } #define for_each_cpupri_active(array, idx) \ - for (idx = find_first_bit(array, CPUPRI_NR_PRIORITIES); \ - idx < CPUPRI_NR_PRIORITIES; \ - idx = find_next_bit(array, CPUPRI_NR_PRIORITIES, idx+1)) + for_each_bit(idx, array, CPUPRI_NR_PRIORITIES) /** * cpupri_find - find the best (lowest-pri) CPU in the system |