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 53DA1A2EFC for ; Wed, 18 Sep 2019 23:59:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C68491D454; Wed, 18 Sep 2019 23:59:06 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id B4C131D453 for ; Wed, 18 Sep 2019 23:59:04 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Sep 2019 14:59:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,522,1559545200"; d="scan'208";a="187900488" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.5]) by fmsmga007.fm.intel.com with ESMTP; 18 Sep 2019 14:59:02 -0700 Date: Thu, 19 Sep 2019 05:56:24 +0800 From: Ye Xiaolong To: Leyi Rong Cc: haiyue.wang@intel.com, wenzhuo.lu@intel.com, qi.z.zhang@intel.com, dev@dpdk.org Message-ID: <20190918215624.GD64806@intel.com> References: <20190829023421.112551-1-leyi.rong@intel.com> <20190917085317.57598-1-leyi.rong@intel.com> <20190917085317.57598-2-leyi.rong@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190917085317.57598-2-leyi.rong@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v3 1/5] net/ice: add Rx flex descriptor definition 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 09/17, Leyi Rong wrote: >From: Haiyue Wang > >The Rx flex descriptor has 16B and 32B size, with different >field definitions compared to legacy type. > >Signed-off-by: Haiyue Wang >--- > drivers/net/ice/ice_rxtx.h | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/drivers/net/ice/ice_rxtx.h b/drivers/net/ice/ice_rxtx.h >index e9214110c..64e891875 100644 >--- a/drivers/net/ice/ice_rxtx.h >+++ b/drivers/net/ice/ice_rxtx.h >@@ -21,8 +21,10 @@ > > #ifdef RTE_LIBRTE_ICE_16BYTE_RX_DESC > #define ice_rx_desc ice_16byte_rx_desc >+#define ice_rx_flex_desc ice_16b_rx_flex_desc > #else > #define ice_rx_desc ice_32byte_rx_desc >+#define ice_rx_flex_desc ice_32b_rx_flex_desc > #endif > > #define ICE_SUPPORT_CHAIN_NUM 5 >-- >2.17.1 > Reviewed-by: Xiaolong Ye