x86/xen: fix arbitrary_virt_to_machine()

While I realize that the function isn't currently being used, I still
think an obvious mistake like this should be corrected.

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Acked-by: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by Jan Beulich and committed by Thomas Gleixner de067814 2584a82d

+1 -1
+1 -1
arch/x86/xen/mmu.c
··· 60 60 { 61 61 unsigned int level; 62 62 pte_t *pte = lookup_address(address, &level); 63 - unsigned offset = address & PAGE_MASK; 63 + unsigned offset = address & ~PAGE_MASK; 64 64 65 65 BUG_ON(pte == NULL); 66 66