mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 12:16:20 +00:00
sparc: replace for_each_cpu_mask_nr with for_each_cpu
Simple replacement, now the _nr is redundant. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Mike Travis <travis@sgi.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
81265fd93b
commit
8e757281de
1 changed files with 1 additions and 1 deletions
|
@ -773,7 +773,7 @@ static void xcall_deliver(u64 data0, u64 data1, u64 data2, const cpumask_t *mask
|
|||
|
||||
/* Setup the initial cpu list. */
|
||||
cnt = 0;
|
||||
for_each_cpu_mask_nr(i, *mask) {
|
||||
for_each_cpu(i, mask) {
|
||||
if (i == this_cpu || !cpu_online(i))
|
||||
continue;
|
||||
cpu_list[cnt++] = i;
|
||||
|
|
Loading…
Reference in a new issue