@@ -317,10 +317,21 @@ static int create_p2m_entries(struct domain *d,
break;
case REMOVE:
{
- lpae_t pte;
+ lpae_t pte = third[third_table_offset(addr)];
+ unsigned long mfn;
+
+ maddr = (pte.bits & PADDR_MASK & PAGE_MASK);
+ mfn = paddr_to_pfn(maddr);
+
+ /* TODO: Handle other p2m type */
+ if ( pte.p2m.valid && p2m_is_foreign(pte.p2m.type) )
+ {
+ ASSERT(mfn_valid(mfn));
+ put_page(mfn_to_page(mfn));
+ }
+
memset(&pte, 0x00, sizeof(pte));
write_pte(&third[third_table_offset(addr)], pte);
- maddr += PAGE_SIZE;
}
break;
}
@@ -122,6 +122,18 @@ static inline struct page_info *get_page_from_gfn(
if ( !mfn_valid(mfn) )
return NULL;
page = mfn_to_page(mfn);
+
+ /* get_page won't work on foreign mapping because the page doesn't
+ * belong to the current domain.
+ */
+ if ( p2mt == p2m_map_foreign )
+ {
+ struct domain *fdom = page_get_owner_and_reference(page);
+ ASSERT(fdom != NULL);
+ ASSERT(fdom != d);
+ return page;
+ }
+
if ( !get_page(page, d) )
return NULL;
return page;
Here a new version of this patch. If needed I can resend the whole patch series. commit aa505db91a90bf00b216a5368b3721fdda02e437 Author: Julien Grall <julien.grall@linaro.org> Date: Fri Dec 13 16:51:03 2013 +0000 xen/arm: Handle remove foreign mapping Modify get_page_from_gfn to take reference on foreign mapping. This will avoid specific handling in the common code. Signed-off-by: Julien Grall <julien.grall@linaro.org> --- Changes in v4.2: - get_page_from_gfn: move foreign checking before get_page - add assert fdom != dom Changes in v4.1: - Remove specific p2m handling in common code - Handle foreign mapping in get_page_from_gfn Changes in v4: - Split patch #6 from dom0 pvh series v6.2 to retrieve only common code. - Rework commit title - Rename xen_rem_foreign_from_p2m in p2m_remove_foreign - Get the mfn from the pte. We are not sure that maddr given in parameters is valid Changes in v3: - Move put_page in create_p2m_entries - Move xenmem_rem_foreign_from_p2m in arch/arm/p2m.c Changes in v2: - Introduce the patch