X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_paging.h;h=687b440db9b2a68d9975b910fd07a605b5e2af92;hb=f84bd0ca67af7c0a1143d5e279e0af408729128e;hp=2663b2c7517efc8874e199ea3e537b6a30e59748;hpb=b07ca7a7edd31d34a8dc613e3d208bbeedd44661;p=palacios.git diff --git a/palacios/include/palacios/vmm_paging.h b/palacios/include/palacios/vmm_paging.h index 2663b2c..687b440 100644 --- a/palacios/include/palacios/vmm_paging.h +++ b/palacios/include/palacios/vmm_paging.h @@ -112,6 +112,8 @@ the host state in the vmcs before entering the guest. #define CR3_TO_PML4E64(cr3) (((ullong_t)cr3) & 0x000ffffffffff000LL) + + /* Accessor functions for the page table structures */ #define PDE32_T_ADDR(x) (((x).pt_base_addr) << 12) #define PTE32_T_ADDR(x) (((x).page_base_addr) << 12) @@ -119,6 +121,7 @@ the host state in the vmcs before entering the guest. /* Page Table Flag Values */ #define PT32_HOOK 0x1 +#define PT32_GUEST_PT 0x2 #endif