diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2014-10-30 09:33:43 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-12-15 12:21:01 +0100 |
commit | 076796f8fd27f4d014fe2efb6372f1cdc1df9a41 (patch) | |
tree | 117d8ba651ab2045a7a643f29fb8a0485cbc9479 /target-i386 | |
parent | d19ae73e987ecc13a89c0830b501341103d06982 (diff) |
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 <borntraeger@de.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/kvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |