This is so that callers can determine what range of address space would
get altered by a corresponding "set".
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
/* 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. */
((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;
}