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 1E77EA0613 for ; Tue, 24 Sep 2019 20:29:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 06F422C16; Tue, 24 Sep 2019 20:29:08 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id EB2CA2C16 for ; Tue, 24 Sep 2019 20:29:06 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5E64688305; Tue, 24 Sep 2019 18:29:06 +0000 (UTC) Received: from [10.36.117.187] (ovpn-117-187.ams2.redhat.com [10.36.117.187]) by smtp.corp.redhat.com (Postfix) with ESMTP id 425D019C58; Tue, 24 Sep 2019 18:29:04 +0000 (UTC) To: luca.boccassi@gmail.com, stable@dpdk.org Cc: joyce.kong@arm.com References: <20190924182210.30348-1-luca.boccassi@gmail.com> From: Kevin Traynor Message-ID: <04494442-2b98-b21c-192c-4543c1dc765c@redhat.com> Date: Tue, 24 Sep 2019 19:29:04 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.0 MIME-Version: 1.0 In-Reply-To: <20190924182210.30348-1-luca.boccassi@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Tue, 24 Sep 2019 18:29:06 +0000 (UTC) Subject: Re: [dpdk-stable] [PATCH 17.11] test/rwlock: add missing inttypes include 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" On 24/09/2019 19:22, luca.boccassi@gmail.com wrote: > From: Luca Boccassi >=20 > The custom backport for 17.11 missed it, and the test build fails. >=20 > Fixes: 29e08d740ffc ("test/rwlock: benchmark on all available cores") >=20 > Signed-off-by: Luca Boccassi > --- > test/test/test_rwlock.c | 1 + > 1 file changed, 1 insertion(+) >=20 > diff --git a/test/test/test_rwlock.c b/test/test/test_rwlock.c > index 1f327fecfa..855ebf49e7 100644 > --- a/test/test/test_rwlock.c > +++ b/test/test/test_rwlock.c > @@ -33,6 +33,7 @@ > =20 > #include > #include > +#include > #include > #include > =20 >=20 Acked-by: Kevin Traynor