[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/EPT: also force EMT re-evaluation if pinned ranges change
commit 35d1c20b85156eea6b6c3af32b6bad7b9caf6315 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Fri May 2 10:51:32 2014 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Fri May 2 10:51:32 2014 +0200 x86/EPT: also force EMT re-evaluation if pinned ranges change This was inadvertently left out of aa9114ed ("x86/EPT: force re-evaluation of memory type as necessary"). Note that this intentionally doesn't use memory_type_changed(): Changes to the pinned ranges are independent of IOMMU presence, which that function uses to determine whether to call the underlying p2m_memory_type_changed(). Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Kevin Tian <kevin.tian@xxxxxxxxx> Reviewed-by: Tim Deegan <tim@xxxxxxx> --- xen/arch/x86/hvm/mtrr.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/xen/arch/x86/hvm/mtrr.c b/xen/arch/x86/hvm/mtrr.c index 98a4f34..0ec38fc 100644 --- a/xen/arch/x86/hvm/mtrr.c +++ b/xen/arch/x86/hvm/mtrr.c @@ -651,6 +651,7 @@ int32_t hvm_set_mem_pinned_cacheattr( rcu_read_unlock(&pinned_cacheattr_rcu_lock); list_del_rcu(&range->list); call_rcu(&range->rcu, free_pinned_cacheattr_entry); + p2m_memory_type_changed(d); return 0; } rcu_read_unlock(&pinned_cacheattr_rcu_lock); @@ -696,6 +697,7 @@ int32_t hvm_set_mem_pinned_cacheattr( range->type = type; list_add_rcu(&range->list, &d->arch.hvm_domain.pinned_cacheattr_ranges); + p2m_memory_type_changed(d); return 0; } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |