SLUB: Write to per cpu data when allocating it

It turns out that the cmpxchg16b emulation has to access vmalloced
percpu memory with interrupts disabled. If the memory has never
been touched before then the fault necessary to establish the
mapping will not to occur and the kernel will fail on boot.

Fix that by reusing the CONFIG_PREEMPT code that writes the
cpu number into a field on every cpu. Writing to the per cpu
area before causes the mapping to be established before we get
to a cmpxchg16b emulation.

Tested-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>

authored by Christoph Lameter and committed by Pekka Enberg b8c4c96e f9b615de

+1 -1
+1 -1
mm/slub.c
··· 1604 1604 1605 1605 void init_kmem_cache_cpus(struct kmem_cache *s) 1606 1606 { 1607 - #if defined(CONFIG_CMPXCHG_LOCAL) && defined(CONFIG_PREEMPT) 1607 + #ifdef CONFIG_CMPXCHG_LOCAL 1608 1608 int cpu; 1609 1609 1610 1610 for_each_possible_cpu(cpu)