x86/mtrr: recalculate P2M type for domains with iocaps
authorIgor Druzhinin <igor.druzhinin@citrix.com>
Thu, 6 Jun 2019 12:07:06 +0000 (14:07 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 6 Jun 2019 12:07:06 +0000 (14:07 +0200)
This change reflects the logic in epte_get_entry_emt() and allows
changes in guest MTTRs to be reflected in EPT for domains having
direct access to certain hardware memory regions but without IOMMU
context assigned (e.g. XenGT).

Signed-off-by: Igor Druzhinin <igor.druzhinin@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
master commit: f3d880bf2be92534c5bacf11de2f561cbad550fb
master date: 2019-05-13 09:54:45 +0200

xen/arch/x86/hvm/mtrr.c

index a61cc1e6dcaf9bb4acc4c3aa8c8b4cac1f7dbc55..fa9e27b3b7ac821d148ab1766747109096690d7c 100644 (file)
@@ -755,7 +755,7 @@ HVM_REGISTER_SAVE_RESTORE(MTRR, hvm_save_mtrr_msr, hvm_load_mtrr_msr,
 
 void memory_type_changed(struct domain *d)
 {
-    if ( need_iommu(d) && d->vcpu && d->vcpu[0] )
+    if ( (need_iommu(d) || cache_flush_permitted(d)) && d->vcpu && d->vcpu[0] )
     {
         p2m_memory_type_changed(d);
         flush_all(FLUSH_CACHE);