From: Jan Beulich Date: Tue, 22 Sep 2015 10:45:03 +0000 (+0200) Subject: x86/EPT: always return proper order value from ept_get_entry() X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2517 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3fde8ad95e4bfb5c256ab87a76acaa076f68be6c;p=xen.git x86/EPT: always return proper order value from ept_get_entry() This is so that callers can determine what range of address space would get altered by a corresponding "set". Signed-off-by: Jan Beulich Acked-by: Kevin Tian Reviewed-by: Andrew Cooper --- diff --git a/xen/arch/x86/mm/p2m-ept.c b/xen/arch/x86/mm/p2m-ept.c index 2f3df91891..58db34ef5c 100644 --- a/xen/arch/x86/mm/p2m-ept.c +++ b/xen/arch/x86/mm/p2m-ept.c @@ -879,7 +879,13 @@ static mfn_t ept_get_entry(struct p2m_domain *p2m, /* This pfn is higher than the highest the p2m map currently holds */ if ( gfn > p2m->max_mapped_pfn ) + { + for ( i = ept_get_wl(ept); i > 0; --i ) + if ( (gfn & ~((1UL << (i * EPT_TABLE_ORDER)) - 1)) > + p2m->max_mapped_pfn ) + break; goto out; + } /* Should check if gfn obeys GAW here. */ @@ -956,12 +962,12 @@ static mfn_t ept_get_entry(struct p2m_domain *p2m, ((1 << (i * EPT_TABLE_ORDER)) - 1)); mfn = _mfn(split_mfn); } - - if ( page_order ) - *page_order = i * EPT_TABLE_ORDER; } -out: + out: + if ( page_order ) + *page_order = i * EPT_TABLE_ORDER; + unmap_domain_page(table); return mfn; }