diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-04 19:19:19 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-09 23:24:42 -0400 |
commit | cdfdef75e795fb5ab76c66f3329e509f3ab8b9b5 (patch) | |
tree | 3e6ba270aadabfa764ceed44c2347f059cdcfe56 /lib | |
parent | c8ed00107b60b4a890798677d75e5c2910f393bb (diff) |
cpumask: only allocate nr_cpumask_bits.
Now we'll find out the hard way if anyone has CPUMASK_OFFSTACK and is
returning these or assigning them.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cpumask.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/cpumask.c b/lib/cpumask.c index b6513a9f2892..ba379d12bb57 100644 --- a/lib/cpumask.c +++ b/lib/cpumask.c | |||
@@ -89,13 +89,6 @@ bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node) | |||
89 | dump_stack(); | 89 | dump_stack(); |
90 | } | 90 | } |
91 | #endif | 91 | #endif |
92 | /* FIXME: Bandaid to save us from old primitives which go to NR_CPUS. */ | ||
93 | if (*mask) { | ||
94 | unsigned char *ptr = (unsigned char *)cpumask_bits(*mask); | ||
95 | unsigned int tail; | ||
96 | tail = BITS_TO_LONGS(NR_CPUS - nr_cpumask_bits) * sizeof(long); | ||
97 | memset(ptr + cpumask_size() - tail, 0, tail); | ||
98 | } | ||
99 | 92 | ||
100 | return *mask != NULL; | 93 | return *mask != NULL; |
101 | } | 94 | } |