[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.5] x86/EPT: tighten conditions of IOMMU mapping updates
commit dde24142b34c64a03316fdaceb9a81db417c0ea5 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Oct 8 11:35:55 2015 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Oct 8 11:35:55 2015 +0200 x86/EPT: tighten conditions of IOMMU mapping updates Permission changes should also result in updates or TLB flushes. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Kevin Tian <kevin.tian@xxxxxxxxx> Reviewed-by: George Dunlap <george.dunlap@xxxxxxxxxx> master commit: 6c0e4ad60850032c9bbd5d18b8446421c97e08e4 master date: 2015-09-29 10:25:29 +0200 --- xen/arch/x86/mm/p2m-ept.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/xen/arch/x86/mm/p2m-ept.c b/xen/arch/x86/mm/p2m-ept.c index 06969eb..5e6ab3f 100644 --- a/xen/arch/x86/mm/p2m-ept.c +++ b/xen/arch/x86/mm/p2m-ept.c @@ -619,6 +619,7 @@ ept_set_entry(struct p2m_domain *p2m, unsigned long gfn, mfn_t mfn, uint8_t ipat = 0; int need_modify_vtd_table = 1; int vtd_pte_present = 0; + unsigned int iommu_flags = p2m_get_iommu_flags(p2mt); enum { sync_off, sync_on, sync_check } needs_sync = sync_check; ept_entry_t old_entry = { .epte = 0 }; ept_entry_t new_entry = { .epte = 0 }; @@ -749,8 +750,9 @@ ept_set_entry(struct p2m_domain *p2m, unsigned long gfn, mfn_t mfn, new_entry.mfn = mfn_x(mfn); /* Safe to read-then-write because we hold the p2m lock */ - if ( ept_entry->mfn == new_entry.mfn ) - need_modify_vtd_table = 0; + if ( ept_entry->mfn == new_entry.mfn && + p2m_get_iommu_flags(ept_entry->sa_p2mt) == iommu_flags ) + need_modify_vtd_table = 0; ept_p2m_type_to_flags(&new_entry, p2mt, p2ma); } @@ -775,11 +777,9 @@ out: iommu_pte_flush(d, gfn, &ept_entry->epte, order, vtd_pte_present); else { - unsigned int flags = p2m_get_iommu_flags(p2mt); - - if ( flags != 0 ) + if ( iommu_flags ) for ( i = 0; i < (1 << order); i++ ) - iommu_map_page(d, gfn + i, mfn_x(mfn) + i, flags); + iommu_map_page(d, gfn + i, mfn_x(mfn) + i, iommu_flags); else for ( i = 0; i < (1 << order); i++ ) iommu_unmap_page(d, gfn + i); -- generated by git-patchbot for /home/xen/git/xen.git#stable-4.5 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |