From: Oliver Kurth Date: Tue, 5 Jun 2018 22:47:41 +0000 (-0700) Subject: Go back to the old INVALID_PPN value X-Git-Tag: stable-11.0.0~541 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d8437a0ed19163e0b30d2f653fd6cfc8c6c6c8b;p=thirdparty%2Fopen-vm-tools.git Go back to the old INVALID_PPN value --- diff --git a/open-vm-tools/lib/include/vm_basic_types.h b/open-vm-tools/lib/include/vm_basic_types.h index 2d347095b..409a89aa5 100644 --- a/open-vm-tools/lib/include/vm_basic_types.h +++ b/open-vm-tools/lib/include/vm_basic_types.h @@ -621,7 +621,7 @@ typedef void * UserVA; #define MAX_PPN_BITS 31 #define MAX_PPN (((PPN)1 << MAX_PPN_BITS) - 1) -#define INVALID_PPN ((PPN)0x000fffffffffffffull) +#define INVALID_PPN ((PPN)0xffffffff) #define INVALID_PPN32 ((PPN32)0xffffffff) #define INVALID_PPN64 ((PPN)0xffffffffffffffffull) #define APIC_INVALID_PPN ((PPN)0x000ffffffffffffeull)