I see this in kvm: static u64 vmx_get_mt_mask(struct kvm_vcpu *vcpu, gfn_t gfn, bool is_mmio) { u64 ret; /* For VT-d and EPT combination * 1. MMIO: always map as UC * 2. EPT with VT-d: * a. VT-d without snooping control feature: can't guarantee * the * result, try to trust guest. * b. VT-d with snooping control feature: snooping control * feature of * VT-d engine can guarantee the cache correctness. Just * set it * to WB to keep consistent with host. So the same as item * 3. * 3. EPT without VT-d: always map as WB and set IPAT=1 to keep * consistent with host MTRR */ if (is_mmio) ret = MTRR_TYPE_UNCACHABLE << VMX_EPT_MT_EPTE_SHIFT; ... } does this mean that even if guest maps BAR for an assigned device as write combined (or configures such using an MTRR), host will override this and use uncacheable in practice? I think there are some drivers that map MMIO as write-combined for performance (but don't have such hardware) so I'd like to figure out from code whether this will work correctly. -- MST -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html