From: Julien Grall Date: Tue, 17 Dec 2013 16:27:54 +0000 (+0000) Subject: xen/arm: Retrieve p2m type in get_page_from_gfn X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5733 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=bc10bb6134e858722177ca60ea06574fa9911ab8;p=xen.git xen/arm: Retrieve p2m type in get_page_from_gfn Signed-off-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/xen/include/asm-arm/p2m.h b/xen/include/asm-arm/p2m.h index 9d0d1e72a7..0eb07a8668 100644 --- a/xen/include/asm-arm/p2m.h +++ b/xen/include/asm-arm/p2m.h @@ -109,11 +109,17 @@ static inline struct page_info *get_page_from_gfn( struct domain *d, unsigned long gfn, p2m_type_t *t, p2m_query_t q) { struct page_info *page; - unsigned long mfn = gmfn_to_mfn(d, gfn); + p2m_type_t p2mt; + paddr_t maddr = p2m_lookup(d, pfn_to_paddr(gfn), &p2mt); + unsigned long mfn = maddr >> PAGE_SHIFT; - ASSERT(t == NULL); + if (t) + *t = p2mt; - if (!mfn_valid(mfn)) + if ( p2mt == p2m_invalid || p2mt == p2m_mmio_direct ) + return NULL; + + if ( !mfn_valid(mfn) ) return NULL; page = mfn_to_page(mfn); if ( !get_page(page, d) )