From e106906d56d0f0d9a3ab1efeff190f4593939f33 Mon Sep 17 00:00:00 2001 From: Hongyong Zang Date: Fri, 6 Jan 2012 10:06:26 +0800 Subject: [PATCH] kvm tool: Change kvm->ram_size to real mapped size. If a guest's ram_size exceeds KVM_32BIT_GAP_START, the corresponding kvm tool's virtual address size should be (ram_size + KVM_32BIT_GAP_SIZE), rather than ram_size. Use macro define KVM_32BIT_MAX_MEM_SIZE instead of magic number "0x100000000ULL". Signed-off-by: Hongyong Zang Signed-off-by: Pekka Enberg --- tools/kvm/x86/bios.c | 4 ++-- tools/kvm/x86/include/kvm/kvm-arch.h | 3 ++- tools/kvm/x86/kvm.c | 10 +++++----- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/tools/kvm/x86/bios.c b/tools/kvm/x86/bios.c index 64a072c2d114..0f1bd85f685f 100644 --- a/tools/kvm/x86/bios.c +++ b/tools/kvm/x86/bios.c @@ -92,8 +92,8 @@ static void e820_setup(struct kvm *kvm) .type = E820_RAM, }; mem_map[i++] = (struct e820entry) { - .addr = 0x100000000ULL, - .size = kvm->ram_size - KVM_32BIT_GAP_START, + .addr = KVM_32BIT_MAX_MEM_SIZE, + .size = kvm->ram_size - KVM_32BIT_MAX_MEM_SIZE, .type = E820_RAM, }; } diff --git a/tools/kvm/x86/include/kvm/kvm-arch.h b/tools/kvm/x86/include/kvm/kvm-arch.h index 244d36c5f75f..ba04561e7c1b 100644 --- a/tools/kvm/x86/include/kvm/kvm-arch.h +++ b/tools/kvm/x86/include/kvm/kvm-arch.h @@ -11,8 +11,9 @@ /* * The hole includes VESA framebuffer and PCI memory. */ +#define KVM_32BIT_MAX_MEM_SIZE (1ULL << 32) #define KVM_32BIT_GAP_SIZE (768 << 20) -#define KVM_32BIT_GAP_START ((1ULL << 32) - KVM_32BIT_GAP_SIZE) +#define KVM_32BIT_GAP_START (KVM_32BIT_MAX_MEM_SIZE - KVM_32BIT_GAP_SIZE) #define KVM_MMIO_START KVM_32BIT_GAP_START diff --git a/tools/kvm/x86/kvm.c b/tools/kvm/x86/kvm.c index 286f106c45dc..a21888123e99 100644 --- a/tools/kvm/x86/kvm.c +++ b/tools/kvm/x86/kvm.c @@ -109,8 +109,8 @@ void kvm__init_ram(struct kvm *kvm) /* Second RAM range from 4GB to the end of RAM: */ - phys_start = 0x100000000ULL; - phys_size = kvm->ram_size - phys_size; + phys_start = KVM_32BIT_MAX_MEM_SIZE; + phys_size = kvm->ram_size - phys_start; host_mem = kvm->ram_start + phys_start; kvm__register_mem(kvm, phys_start, phys_size, host_mem); @@ -155,12 +155,12 @@ void kvm__arch_init(struct kvm *kvm, const char *hugetlbfs_path, u64 ram_size) if (ret < 0) die_perror("KVM_CREATE_PIT2 ioctl"); - kvm->ram_size = ram_size; - - if (kvm->ram_size < KVM_32BIT_GAP_START) { + if (ram_size < KVM_32BIT_GAP_START) { + kvm->ram_size = ram_size; kvm->ram_start = mmap_anon_or_hugetlbfs(hugetlbfs_path, ram_size); } else { kvm->ram_start = mmap_anon_or_hugetlbfs(hugetlbfs_path, ram_size + KVM_32BIT_GAP_SIZE); + kvm->ram_size = ram_size + KVM_32BIT_GAP_SIZE; if (kvm->ram_start != MAP_FAILED) /* * We mprotect the gap (see kvm__init_ram() for details) PROT_NONE so that -- 2.39.5