I didn't pay attention to the fact that 'end' must always be an upper
bound, while xen_start_info->nr_pages must be additionally during
boot.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
for (k = 0; k < PTRS_PER_PTE; pte++, k++, address += PTE_SIZE) {
unsigned long pteval = address | _PAGE_NX | _KERNPG_TABLE;
- if (address >= (after_bootmem
- ? end
- : xen_start_info->nr_pages << PAGE_SHIFT))
+ if (address >= end ||
+ (!after_bootmem &&
+ (address >> PAGE_SHIFT) >= xen_start_info->nr_pages))
pteval = 0;
else if (make_readonly(address))
pteval &= ~_PAGE_RW;