Commit 5d6700ea7bfb4704a8d5d10c6ebf0e947410f9ce

Authored by Stephen Rothwell
Committed by Linus Torvalds
1 parent 0cb55ad2ad

percpu: __percpu_depopulate_mask can take a const mask

This eliminates a compiler warning:

  mm/allocpercpu.c: In function 'free_percpu':
  mm/allocpercpu.c:146: warning: passing argument 2 of '__percpu_depopulate_mask' discards qualifiers from pointer target type

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -31,7 +31,7 @@
31 31 * @__pdata: per-cpu data to depopulate
32 32 * @mask: depopulate per-cpu data for cpu's selected through mask bits
33 33 */
34   -static void __percpu_depopulate_mask(void *__pdata, cpumask_t *mask)
  34 +static void __percpu_depopulate_mask(void *__pdata, const cpumask_t *mask)
35 35 {
36 36 int cpu;
37 37 for_each_cpu_mask_nr(cpu, *mask)