nova: fix size of virtual address space for 64bit

Fixes #933
This commit is contained in:
Alexander Boettcher 2013-10-30 09:21:22 +01:00 committed by Norman Feske
parent 7ac23a2419
commit bde7e24820
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ Platform::Platform() :
/* configure virtual address spaces */
#ifdef __x86_64__
_vm_size = 0x800000000000UL - _vm_base;
_vm_size = 0x7FFFFFFFF000UL - _vm_base;
#else
_vm_size = 0xc0000000UL - _vm_base;
#endif