[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCHv2 for-4.6] p2m/ept: Work around hardware errata setting A bit
Hi, At 13:39 +0100 on 28 Sep (1443447574), Ross Lagerwall wrote: > Since commit 191b3f3344ee ("p2m/ept: enable PML in p2m-ept for > log-dirty"), the A and D bits of EPT paging entries are set > unconditionally, regardless of whether PML is enabled or not. This > causes a regression in Xen 4.6 on some processors due to Intel Errata > AVR41 -- HVM guests get severe memory corruption when the A bit is set > due to incorrect TLB flushing on mov to cr3. The errata affects the Atom > C2000 family (Avaton). > > To fix, do not set the A bit on this processor family. > > Signed-off-by: Ross Lagerwall <ross.lagerwall@xxxxxxxxxx> This looks pretty good as a 4.6 fix, though: > @@ -1150,6 +1152,9 @@ int ept_p2m_init(struct p2m_domain *p2m) > p2m->memory_type_changed = ept_memory_type_changed; > p2m->audit_p2m = NULL; > > + /* Work around Errata AVR41 on Avaton processors. */ > + cpu_has_ept_ad = boot_cpu_data.x86_model != 0x4d; > + Shouldn't this check the family (a.k.a. boot_cpu_data.x86) too? Cheers, Tim. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |