Skip to content

Commit 08a5bb2

Browse files
Sebastian Siewiormpe
authored andcommitted
powerpc/mm: Fixup preempt underflow with huge pages
hugepd_free() used __get_cpu_var() once. Nothing ensured that the code accessing the variable did not migrate from one CPU to another and soon this was noticed by Tiejun Chen in 94b09d7 ("powerpc/hugetlb: Replace __get_cpu_var with get_cpu_var"). So we had it fixed. Christoph Lameter was doing his __get_cpu_var() replaces and forgot PowerPC. Then he noticed this and sent his fixed up batch again which got applied as 69111ba ("powerpc: Replace __get_cpu_var uses"). The careful reader will noticed one little detail: get_cpu_var() got replaced with this_cpu_ptr(). So now we have a put_cpu_var() which does a preempt_enable() and nothing that does preempt_disable() so we underflow the preempt counter. Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Christoph Lameter <cl@linux.com> Cc: stable@vger.kernel.org Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
1 parent f55532a commit 08a5bb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/powerpc/mm/hugetlbpage.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,13 +413,13 @@ static void hugepd_free(struct mmu_gather *tlb, void *hugepte)
413413
{
414414
struct hugepd_freelist **batchp;
415415

416-
batchp = this_cpu_ptr(&hugepd_freelist_cur);
416+
batchp = &get_cpu_var(hugepd_freelist_cur);
417417

418418
if (atomic_read(&tlb->mm->mm_users) < 2 ||
419419
cpumask_equal(mm_cpumask(tlb->mm),
420420
cpumask_of(smp_processor_id()))) {
421421
kmem_cache_free(hugepte_cache, hugepte);
422-
put_cpu_var(hugepd_freelist_cur);
422+
put_cpu_var(hugepd_freelist_cur);
423423
return;
424424
}
425425

0 commit comments

Comments
 (0)