From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id E80C3A0471 for ; Tue, 18 Jun 2019 09:34:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 96DD61C0BD; Tue, 18 Jun 2019 09:34:00 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id AFFA91BFF2; Tue, 18 Jun 2019 09:33:58 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A398E30872DE; Tue, 18 Jun 2019 07:33:57 +0000 (UTC) Received: from [10.36.112.44] (ovpn-112-44.ams2.redhat.com [10.36.112.44]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 888DF82741; Tue, 18 Jun 2019 07:33:56 +0000 (UTC) To: Noa Ezra , Matan Azrad , "dev@dpdk.org" Cc: "stable@dpdk.org" References: <1558861560-114683-1-git-send-email-noae@mellanox.com> From: Maxime Coquelin Message-ID: Date: Tue, 18 Jun 2019 09:33:54 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.47]); Tue, 18 Jun 2019 07:33:57 +0000 (UTC) Subject: Re: [dpdk-dev] [PATCH v1 1/5] vhost: fix add a missing include X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 6/18/19 8:24 AM, Noa Ezra wrote: > Hi, > Does anyone else want to review this patch? I do, but it seems that the other 4 patches of the series aren't on dev@dpdk.org, is that expected? > Thanks, > Noa. > > -----Original Message----- > From: Matan Azrad > Sent: Sunday, May 26, 2019 1:23 PM > To: Noa Ezra ; dev@dpdk.org; maxime.coquelin@redhat.com > Cc: Noa Ezra ; stable@dpdk.org > Subject: RE: [PATCH v1 1/5] vhost: fix add a missing include > > > > From: Noa Ezra >> Add a missing include with the defines for vhost-user driver features. >> >> Fixes: 5fbb3941da9f ("vhost: introduce driver features related APIs") >> Cc: stable@dpdk.org >> >> Signed-off-by: Noa Ezra > > Reviewed-by: Matan Azrad For all the series. For this patch only: Reviewed-by: Maxime Coquelin Thanks, Maxime > >> --- >> lib/librte_vhost/rte_vhost.h | 1 + >> 1 file changed, 1 insertion(+) >> mode change 100644 => 100755 lib/librte_vhost/rte_vhost.h >> >> diff --git a/lib/librte_vhost/rte_vhost.h >> b/lib/librte_vhost/rte_vhost.h old mode 100644 new mode 100755 index >> 0226b3e..338e47c >> --- a/lib/librte_vhost/rte_vhost.h >> +++ b/lib/librte_vhost/rte_vhost.h >> @@ -23,6 +23,7 @@ >> /* These are not C++-aware. */ >> #include >> #include >> +#include >> >> #define RTE_VHOST_USER_CLIENT (1ULL << 0) >> #define RTE_VHOST_USER_NO_RECONNECT (1ULL << 1) >> -- >> 1.8.3.1 >