From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33469) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xjm9t-0003OU-Jz for qemu-devel@nongnu.org; Thu, 30 Oct 2014 05:36:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xjm9k-0007Dy-9G for qemu-devel@nongnu.org; Thu, 30 Oct 2014 05:36:45 -0400 Received: from e06smtp15.uk.ibm.com ([195.75.94.111]:51634) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xjm9k-0007DV-0C for qemu-devel@nongnu.org; Thu, 30 Oct 2014 05:36:36 -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:35 -0000 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id E44BA1B08049 for ; Thu, 30 Oct 2014 09:36:35 +0000 (GMT) Received: from d06av04.portsmouth.uk.ibm.com (d06av04.portsmouth.uk.ibm.com [9.149.37.216]) by b06cxnps4074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id s9U9aWr764028874 for ; Thu, 30 Oct 2014 09:36:32 GMT Received: from d06av04.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av04.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s9U9aUDY023538 for ; Thu, 30 Oct 2014 03:36:31 -0600 From: Christian Borntraeger Date: Thu, 30 Oct 2014 10:36:49 +0100 Message-Id: <1414661809-21383-10-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 9/9] valgrind/s390x: avoid false positives on KVM_SET_FPU 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_fpu contains an alignment padding on s390x. Let's use a designated initializer to avoid false positives from valgrind/memcheck. Signed-off-by: Christian Borntraeger --- target-s390x/kvm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index 5b10a25..ec79ad4 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -208,7 +208,7 @@ int kvm_arch_put_registers(CPUState *cs, int level) CPUS390XState *env = &cpu->env; struct kvm_sregs sregs; struct kvm_regs regs; - struct kvm_fpu fpu; + struct kvm_fpu fpu = {}; int r; int i; -- 1.9.3