[<prev] [next>] [day] [month] [year] [list]
Message-ID: <49CD37BD.1080102@goop.org>
Date: Fri, 27 Mar 2009 13:31:57 -0700
From: Jeremy Fitzhardinge <jeremy@...p.org>
To: Nick Piggin <npiggin@...e.de>
CC: Avi Kivity <avi@...hat.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Linux Memory Management List <linux-mm@...ck.org>,
the arch/x86 maintainers <x86@...nel.org>
Subject: [PATCH 2/2] xen: spin in xen_flush_tlb_others if a target cpu is
in gup_fast()
get_user_pages_fast() relies on cross-cpu tlb flushes being a barrier
between clearing and setting a pte, and before freeing a pagetable page.
It normally implements this by disabling interrupts to suspend tlb flush
IPIs. This doesn't work for us because we don't use kernel-visible
IPIs for tlb flushes, so just spin manually until none of our target
cpus are in gup_fast().
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@...rix.com>
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index aa16ef4..b0523f8 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -50,6 +50,7 @@
#include <asm/setup.h>
#include <asm/paravirt.h>
#include <asm/linkage.h>
+#include <asm/mmu.h>
#include <asm/xen/hypercall.h>
#include <asm/xen/hypervisor.h>
@@ -1334,6 +1335,14 @@ static void xen_flush_tlb_others(const struct cpumask *cpus,
MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
xen_mc_issue(PARAVIRT_LAZY_MMU);
+
+ /*
+ * If we're racing with a get_user_pages_fast(), wait here
+ * until it has finishes so that it can use cross-cpu tlb
+ * flush as a barrier.
+ */
+ while (cpus_intersects(*in_gup_cpumask, *cpus))
+ cpu_relax();
}
static unsigned long xen_read_cr3(void)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists