|
@@ -109,10 +109,10 @@ bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node)
|
|
#endif
|
|
#endif
|
|
/* FIXME: Bandaid to save us from old primitives which go to NR_CPUS. */
|
|
/* FIXME: Bandaid to save us from old primitives which go to NR_CPUS. */
|
|
if (*mask) {
|
|
if (*mask) {
|
|
|
|
+ unsigned char *ptr = (unsigned char *)cpumask_bits(*mask);
|
|
unsigned int tail;
|
|
unsigned int tail;
|
|
tail = BITS_TO_LONGS(NR_CPUS - nr_cpumask_bits) * sizeof(long);
|
|
tail = BITS_TO_LONGS(NR_CPUS - nr_cpumask_bits) * sizeof(long);
|
|
- memset(cpumask_bits(*mask) + cpumask_size() - tail,
|
|
|
|
- 0, tail);
|
|
|
|
|
|
+ memset(ptr + cpumask_size() - tail, 0, tail);
|
|
}
|
|
}
|
|
|
|
|
|
return *mask != NULL;
|
|
return *mask != NULL;
|