diff options
Diffstat (limited to 'sysutils/xenkernel33/patches/patch-SA45835')
-rw-r--r-- | sysutils/xenkernel33/patches/patch-SA45835 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sysutils/xenkernel33/patches/patch-SA45835 b/sysutils/xenkernel33/patches/patch-SA45835 new file mode 100644 index 00000000000..5fd95c35daa --- /dev/null +++ b/sysutils/xenkernel33/patches/patch-SA45835 @@ -0,0 +1,13 @@ +$NetBSD: patch-SA45835,v 1.1.2.2 2011/09/10 23:34:16 tron Exp $ + +--- xen/include/asm-x86/x86_64/uaccess.h.orig 2011-09-10 20:10:52.000000000 +0200 ++++ xen/include/asm-x86/x86_64/uaccess.h 2011-09-10 20:11:28.000000000 +0200 +@@ -19,7 +19,7 @@ + * non-canonical address (and thus fault) before ever reaching VIRT_START. + */ + #define __addr_ok(addr) \ +- (((unsigned long)(addr) < (1UL<<48)) || \ ++ (((unsigned long)(addr) < (1UL<<47)) || \ + ((unsigned long)(addr) >= HYPERVISOR_VIRT_END)) + + #define access_ok(addr, size) \ |