stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] xen/x86/pvh: Use HVM's flush_tlb_others op
@ 2015-12-13  0:25 Boris Ostrovsky
       [not found] ` <20151214152713.GC23203@char.us.oracle.com>
  0 siblings, 1 reply; 9+ messages in thread
From: Boris Ostrovsky @ 2015-12-13  0:25 UTC (permalink / raw)
  To: david.vrabel, konrad.wilk
  Cc: xen-devel, linux-kernel, jbeulich, Boris Ostrovsky, stable

Using MMUEXT_TLB_FLUSH_MULTI doesn't buy us much since the hypervisor
will likely perform same IPIs as would have the guest.

More importantly, using MMUEXT_INVLPG_MULTI may not to invalidate the
guest's address on remote CPU (when, for example, VCPU from another guest
is running there).

Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Suggested-by: Jan Beulich <jbeulich@suse.com>
Cc: stable@vger.kernel.org # 3.14+
---
 arch/x86/xen/mmu.c |    9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index 9c479fe..9ed7eed 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -2495,14 +2495,9 @@ void __init xen_init_mmu_ops(void)
 {
 	x86_init.paging.pagetable_init = xen_pagetable_init;
 
-	/* Optimization - we can use the HVM one but it has no idea which
-	 * VCPUs are descheduled - which means that it will needlessly IPI
-	 * them. Xen knows so let it do the job.
-	 */
-	if (xen_feature(XENFEAT_auto_translated_physmap)) {
-		pv_mmu_ops.flush_tlb_others = xen_flush_tlb_others;
+	if (xen_feature(XENFEAT_auto_translated_physmap))
 		return;
-	}
+
 	pv_mmu_ops = xen_mmu_ops;
 
 	memset(dummy_mapping, 0xff, PAGE_SIZE);
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-12-15 16:07 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-13  0:25 [PATCH] xen/x86/pvh: Use HVM's flush_tlb_others op Boris Ostrovsky
     [not found] ` <20151214152713.GC23203@char.us.oracle.com>
2015-12-14 15:35   ` [Xen-devel] " Roger Pau Monné
2015-12-14 15:58     ` Boris Ostrovsky
2015-12-15 14:36   ` Boris Ostrovsky
2015-12-15 15:03     ` Jan Beulich
2015-12-15 15:14       ` Boris Ostrovsky
2015-12-15 15:24         ` Jan Beulich
2015-12-15 15:37           ` Boris Ostrovsky
2015-12-15 16:07             ` Jan Beulich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).