search for: xen_pvh_adjust_stat

Displaying 1 result from an estimated 1 matches for "xen_pvh_adjust_stat".

Did you mean: xen_pvh_adjust_stats
2013 Jan 30
2
[PATCH] PVH: remove code to map iomem from guest
...eap. - * Also, we map the entire IO space, ie, beyond max_pfn_mapped. - */ -static void __init xen_pvh_identity_map_chunk(unsigned long start_pfn, +/* PVH: xen has already mapped the IO space in the EPT/NPT for us, so we + * just need to adjust the released and identity count */ +static void __init xen_pvh_adjust_stats(unsigned long start_pfn, unsigned long end_pfn, unsigned long max_pfn, unsigned long *released, unsigned long *identity) { - unsigned long pfn; - int numpfns = 1, add_mapping = 1; - - for (pfn = start_pfn; pfn < end_pfn; pfn++) - xen_set_clr_mmio_pvh_pte(pfn, pfn, numpfns, add_mapping);...