Displaying 1 result from an estimated 1 matches for "mfn_mask_x86".
2007 Feb 12
0
[PATCH] lift physical address restriction in svae/restore code
...libxc/xc_linux_restore.c 2007-02-12 09:06:05.000000000 +0100
@@ -82,7 +82,7 @@ static int uncanonicalize_pagetable(int
if(!(pte & _PAGE_PRESENT))
continue;
- pfn = (pte >> PAGE_SHIFT) & 0xffffffff;
+ pfn = (pte >> PAGE_SHIFT) & MFN_MASK_X86;
if(pfn >= max_pfn) {
/* This "page table page" is probably not one; bail. */
@@ -120,12 +120,12 @@ static int uncanonicalize_pagetable(int
if(!(pte & _PAGE_PRESENT))
continue;
- pfn = (pte >> PAGE_SHIFT)...