[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/mm: fix the check in get_pg_owner
commit 0e7ffe9604ecd3bf534e0d224025e516f2cbd209 Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Fri Mar 24 11:34:01 2017 +0000 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Fri Mar 24 12:23:47 2017 +0000 x86/mm: fix the check in get_pg_owner PVH (both v1 and v2) guest is actually an translated guest. It should be able to manipulate page table for other domains when acting as Dom0. The removal of PVHv1 deleted the special case for PVH guest but didn't add a check for HVM guest. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/mm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/mm.c b/xen/arch/x86/mm.c index a6b2649..4dbd24f 100644 --- a/xen/arch/x86/mm.c +++ b/xen/arch/x86/mm.c @@ -3041,7 +3041,7 @@ static struct domain *get_pg_owner(domid_t domid) goto out; } - if ( unlikely(paging_mode_translate(curr)) ) + if ( !is_hvm_domain(curr) && unlikely(paging_mode_translate(curr)) ) { MEM_LOG("Cannot mix foreign mappings with translated domains"); goto out; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |