From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33504) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xjm9x-0003Oa-3u for qemu-devel@nongnu.org; Thu, 30 Oct 2014 05:36:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xjm9h-0007BT-IK for qemu-devel@nongnu.org; Thu, 30 Oct 2014 05:36:49 -0400 Received: from e06smtp15.uk.ibm.com ([195.75.94.111]:51616) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xjm9h-0007Az-8Q for qemu-devel@nongnu.org; Thu, 30 Oct 2014 05:36:33 -0400 Received: from /spool/local by e06smtp15.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 30 Oct 2014 09:36:32 -0000 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id DFA16219006A for ; Thu, 30 Oct 2014 09:36:04 +0000 (GMT) Received: from d06av10.portsmouth.uk.ibm.com (d06av10.portsmouth.uk.ibm.com [9.149.37.251]) by b06cxnps4074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id s9U9aTX516974152 for ; Thu, 30 Oct 2014 09:36:29 GMT Received: from d06av10.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av10.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s9U9aS5E015933 for ; Thu, 30 Oct 2014 03:36:28 -0600 From: Christian Borntraeger Date: Thu, 30 Oct 2014 10:36:44 +0100 Message-Id: <1414661809-21383-5-git-send-email-borntraeger@de.ibm.com> In-Reply-To: <1414661809-21383-1-git-send-email-borntraeger@de.ibm.com> References: <1414661809-21383-1-git-send-email-borntraeger@de.ibm.com> Subject: [Qemu-devel] [PATCH 4/9] valgrind/i386: avoid false positives on KVM_SET_XCRS ioctl List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini , Peter Maydell Cc: Christian Borntraeger , qemu-devel struct kvm_xcrs contains padding bytes. Let's use a designated initializer to avoid false positives from valgrind/memcheck. Signed-off-by: Christian Borntraeger --- 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 ddedc73..e6fe37b 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -1074,7 +1074,7 @@ static int kvm_put_xsave(X86CPU *cpu) static int kvm_put_xcrs(X86CPU *cpu) { CPUX86State *env = &cpu->env; - struct kvm_xcrs xcrs; + struct kvm_xcrs xcrs = {}; if (!kvm_has_xcrs()) { return 0; -- 1.9.3