From 541be9274e8ef227fb1b50ce124fd2cc2dce81a5 Mon Sep 17 00:00:00 2001 From: Christian Borntraeger Date: Thu, 25 Sep 2014 21:07:54 +0200 Subject: kvm/valgrind: don't mark memory as initialized since commit 7dda5dc82a77 ("migration: initialize RAM to zero") the guest memory is defined zero. No need to call valgrind on guest memory. This reverts commit 62fe83318d2f ("qemu: Use valgrind annotations to mark kvm guest memory as defined") thus speeding up kvm start if /valgrind/valgrind.h is available. Signed-off-by: Christian Borntraeger Signed-off-by: Paolo Bonzini --- kvm-all.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'kvm-all.c') diff --git a/kvm-all.c b/kvm-all.c index 6c6586f2e2..4afcd0551b 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -44,10 +44,6 @@ #include #endif -#ifdef CONFIG_VALGRIND_H -#include -#endif - /* KVM uses PAGE_SIZE in its definition of COALESCED_MMIO_MAX */ #define PAGE_SIZE TARGET_PAGE_SIZE @@ -1959,9 +1955,6 @@ int kvm_has_intx_set_mask(void) void kvm_setup_guest_memory(void *start, size_t size) { -#ifdef CONFIG_VALGRIND_H - VALGRIND_MAKE_MEM_DEFINED(start, size); -#endif if (!kvm_has_sync_mmu()) { int ret = qemu_madvise(start, size, QEMU_MADV_DONTFORK); -- cgit 1.4.1