search for: page_shift_x86

Displaying 2 results from an estimated 2 matches for "page_shift_x86".

2007 Feb 12
0
[PATCH] lift physical address restriction in svae/restore code
...ivate.h =================================================================== --- 2007-02-07.orig/tools/libxc/xg_private.h 2007-01-30 10:23:29.000000000 +0100 +++ 2007-02-07/tools/libxc/xg_private.h 2007-02-12 09:04:01.000000000 +0100 @@ -134,6 +134,9 @@ typedef l4_pgentry_64_t l4_pgentry_t; #define PAGE_SHIFT_X86 12 #define PAGE_SIZE_X86 (1UL << PAGE_SHIFT_X86) #define PAGE_MASK_X86 (~(PAGE_SIZE_X86-1)) +#define MADDR_BITS_X86 52 +#define MFN_MASK_X86 ((1ULL << MADDR_BITS_X86) - 1) +#define MADDR_MASK_X86 (MFN_MASK_X86 << PAGE_SHI...
2013 Sep 23
57
[PATCH RFC v13 00/20] Introduce PVH domU support
This patch series is a reworking of a series developed by Mukesh Rathor at Oracle. The entirety of the design and development was done by him; I have only reworked, reorganized, and simplified things in a way that I think makes more sense. The vast majority of the credit for this effort therefore goes to him. This version is labelled v13 because it is based on his most recent series, v11.