Luckily sh_remove_all_mappings()'s use of the parameter is limited to
generation of log messages. Nevertheless we'd better pass correct GFNs
around:
- the incoming GFN, when replacing a large page, may not be large page
aligned,
- incrementing by page-size-scaled values can't be right.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Tim Deegan <tim@xen.org>
&& mfn_valid(nmfn) )
npte = map_domain_page(nmfn);
+ gfn &= ~(L1_PAGETABLE_ENTRIES - 1);
+
for ( i = 0; i < L1_PAGETABLE_ENTRIES; i++ )
{
if ( !npte
{
/* This GFN->MFN mapping has gone away */
sh_remove_all_shadows_and_parents(d, omfn);
- if ( sh_remove_all_mappings(d, omfn,
- _gfn(gfn + (i << PAGE_SHIFT))) )
+ if ( sh_remove_all_mappings(d, omfn, _gfn(gfn + i)) )
cpumask_or(&flushmask, &flushmask, d->dirty_cpumask);
}
omfn = mfn_add(omfn, 1);