From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id DFC44A04B5 for ; Wed, 4 Dec 2019 12:12:50 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B138B1BF70; Wed, 4 Dec 2019 12:12:50 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 124651BE83 for ; Wed, 4 Dec 2019 12:12:46 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1575457966; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=lRoWr8DTJNArt6c6jKFK/bedGmK4nY4wEFhseMw6sPg=; b=QPVA6P2+OyhApWav51Jxrl3OANWCuD6McxCrEAWvQiFJF9kFXbGk+0IUYgoSVLkIXhqczS 4TJVVgVKwc9NGNn75mDaJrPQTTeRled/PUE8oYHMFYdVzjJooTOY2n9Yqit78jgQNtcbk5 3sgkFd3ywZAf3R7u2daDCOF+t0CIJE0= Received: from mail-vk1-f199.google.com (mail-vk1-f199.google.com [209.85.221.199]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-2-wQiaQtpxNFekXxp8KMr68A-1; Wed, 04 Dec 2019 06:12:45 -0500 Received: by mail-vk1-f199.google.com with SMTP id d70so2818122vkf.3 for ; Wed, 04 Dec 2019 03:12:45 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=lRoWr8DTJNArt6c6jKFK/bedGmK4nY4wEFhseMw6sPg=; b=Z17ljbr/DKB2EH9slO2Yk6sYon0CDSemqQV1fdaek0fC3VdkwKSUUhzbtxBkp+G4fh PD/mQHr8jn0onROXtbs3R0Cx9vOHDchV7JDRVklHajj9BTURosvC7iqicPVR04tndG59 +FMzozCkhiFPK5teLfsGwEybvuSJPq+sjSjPNICVr0rwjLlkHgYHljUU3nMbveQ11KtY lnffit9ymch1Z6Ih9ALcCy16Gp7GeK4dWCya1IU+UJORm4HZOoU/BDx9jerUvqPe5BTI Ra5/Sxpb4bqyTdIIRQQBhOmFFFog7AOPqaWJaku45GOqyy/QDqX3nXCDWvFLVfww3IIt s4QQ== X-Gm-Message-State: APjAAAVRJli4NxCSiN7oMYj0QbyN58s5+rM4CWNvEFbmiLvBeflNprfj c9QjhZVPjbWRfciBkLInkjDDr8qp1EY+WS0ex0vAgT1Epkw4HzbirNwlh2gOzTvaui0oTcRFALu 3RKSMUO7ZFqPHuNTDMfeMBHI= X-Received: by 2002:ab0:3495:: with SMTP id c21mr2043963uar.86.1575457964294; Wed, 04 Dec 2019 03:12:44 -0800 (PST) X-Google-Smtp-Source: APXvYqxIQ/uGRUTlXyRgT9nsBELZHNKTVkIhV+74H0AcLSqyyeeXiqUTpyPUbF7N9xqOmf2/zqD+zbP3GvG6oo0fh3o= X-Received: by 2002:ab0:3495:: with SMTP id c21mr2043934uar.86.1575457963729; Wed, 04 Dec 2019 03:12:43 -0800 (PST) MIME-Version: 1.0 References: <20191127223232.26404-1-stephen@networkplumber.org> In-Reply-To: <20191127223232.26404-1-stephen@networkplumber.org> From: David Marchand Date: Wed, 4 Dec 2019 12:12:32 +0100 Message-ID: To: Stephen Hemminger Cc: dev , dpdk stable X-MC-Unique: wQiaQtpxNFekXxp8KMr68A-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-stable] [PATCH] eal: fix unitialized data warning X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Fixed title s/unitialized/uninitialized/ On Wed, Nov 27, 2019 at 11:32 PM Stephen Hemminger wrote: > > Valgrind reports that eal interrupt thread is calling epoll_ctl > with uninitialized data. Trivial to fix by initializing it. Added a note on it being a Valgrind false positive. > Fixes: af75078fece3 ("first public release") > Cc: stable@dpdk.org > Signed-off-by: Stephen Hemminger Acked-by: David Marchand Applied, thanks. -- David Marchand