From 076796f8fd27f4d014fe2efb6372f1cdc1df9a41 Mon Sep 17 00:00:00 2001 From: Christian Borntraeger Date: Thu, 30 Oct 2014 09:33:43 +0100 Subject: [PATCH] valgrind/i386: avoid false positives on KVM_SET_VCPU_EVENTS ioctl struct kvm_vcpu_events contains reserved fields. Let's use a designated initializer to avoid false positives in valgrind. Signed-off-by: Christian Borntraeger Signed-off-by: Paolo Bonzini --- target-i386/kvm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 1762c2e184..4a2ee6fd32 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -1884,7 +1884,7 @@ static int kvm_put_apic(X86CPU *cpu) static int kvm_put_vcpu_events(X86CPU *cpu, int level) { CPUX86State *env = &cpu->env; - struct kvm_vcpu_events events; + struct kvm_vcpu_events events = {}; if (!kvm_has_vcpu_events()) { return 0; -- 2.11.4.GIT