diff options
| author | 2009-03-30 22:05:15 -0600 | |
|---|---|---|
| committer | 2009-03-30 22:05:16 +1030 | |
| commit | aa85ea5b89c36c51200d795dd788139bd9b8cf50 (patch) | |
| tree | 0b68a35b691417d927127376beb0541d96c9cc64 /mm/allocpercpu.c | |
| parent | cpumask: remove references to struct irqaction's mask field. (diff) | |
| download | wireguard-linux-aa85ea5b89c36c51200d795dd788139bd9b8cf50.tar.xz wireguard-linux-aa85ea5b89c36c51200d795dd788139bd9b8cf50.zip | |
cpumask: use new cpumask_ functions in core code.
Impact: cleanup
Time to clean up remaining laggards using the old cpu_ functions.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Trond.Myklebust@netapp.com
Diffstat (limited to 'mm/allocpercpu.c')
| -rw-r--r-- | mm/allocpercpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/allocpercpu.c b/mm/allocpercpu.c index 1882923bc706..139d5b7b6621 100644 --- a/mm/allocpercpu.c +++ b/mm/allocpercpu.c @@ -143,7 +143,7 @@ void free_percpu(void *__pdata) { if (unlikely(!__pdata)) return; - __percpu_depopulate_mask(__pdata, &cpu_possible_map); + __percpu_depopulate_mask(__pdata, cpu_possible_mask); kfree(__percpu_disguise(__pdata)); } EXPORT_SYMBOL_GPL(free_percpu); |
