[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v3 2/7] x86/xpti: don't flush TLB twice when switching to 64-bit pv context
>>> On 21.03.18 at 13:51, <jgross@xxxxxxxx> wrote: > When switching to a 64-bit pv context the TLB is flushed twice today: > the first time when switching to the new address space in > write_ptbase(), the second time when switching to guest mode in > restore_to_guest. > > Avoid the first TLB flush in that case. > > Signed-off-by: Juergen Gross <jgross@xxxxxxxx> > --- > V3: > - omit setting root_pgt_changed to false (Jan Beulich) > --- > xen/arch/x86/mm.c | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > > diff --git a/xen/arch/x86/mm.c b/xen/arch/x86/mm.c > index 352600ad73..8c944b33c9 100644 > --- a/xen/arch/x86/mm.c > +++ b/xen/arch/x86/mm.c > @@ -123,6 +123,7 @@ > #include <asm/io_apic.h> > #include <asm/pci.h> > #include <asm/guest.h> > +#include <asm/processor.h> > > #include <asm/hvm/grant_table.h> > #include <asm/pv/grant_table.h> > @@ -507,8 +508,14 @@ void make_cr3(struct vcpu *v, mfn_t mfn) > void write_ptbase(struct vcpu *v) > { > if ( this_cpu(root_pgt) && is_pv_vcpu(v) && !is_pv_32bit_vcpu(v) ) > + { > get_cpu_info()->root_pgt_changed = true; > - write_cr3(v->arch.cr3); > + asm volatile ( "mov %0, %%cr3" : : "r" (v->arch.cr3) : "memory" ); > + } > + else > + { > + write_cr3(v->arch.cr3); > + } Unnecessary braces. with that Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> (This could be taken care of while committing, but the patch depends on patch 1 anyway, which may see further transformation.) Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |