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 AEDBAA0613 for ; Fri, 27 Sep 2019 10:16:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 747862BE9; Fri, 27 Sep 2019 10:16:48 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 8FF9B9E4 for ; Fri, 27 Sep 2019 10:16:47 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Sep 2019 01:16:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,554,1559545200"; d="scan'208";a="180434077" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga007.jf.intel.com with ESMTP; 27 Sep 2019 01:16:44 -0700 Date: Fri, 27 Sep 2019 16:14:27 +0800 From: Ye Xiaolong To: Haiyue Wang Cc: dev@dpdk.org, ferruh.yigit@intel.com, ray.kinsella@intel.com, bernard.iremonger@intel.com, chenmin.sun@intel.com Message-ID: <20190927081427.GA103914@intel.com> References: <20190926145444.114485-1-haiyue.wang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190926145444.114485-1-haiyue.wang@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v2 0/4] get Rx/Tx packet burst mode information 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/26, Haiyue Wang wrote: >v1 -> v2: > 1). Change the return type of dev_ops callback from 'void' to > 'int'. > 2). Update the ice/i40 PMD patches with clear git commit log. > >RFCv3 -> v1: > https://patchwork.dpdk.org/patch/59103/ > https://patchwork.dpdk.org/patch/59104/ > https://patchwork.dpdk.org/patch/59105/ > https://patchwork.dpdk.org/patch/59106/ > 1). Use the function 'rte_bsf64' to iterate the options for > getting the name. > >Haiyue Wang (4): > ethdev: add the API for getting burst mode information > net/i40e: add Rx/Tx burst mode get callbacks > net/ice: add Rx/Tx burst mode get callbacks > app/testpmd: show the Rx/Tx burst mode description > > app/test-pmd/config.c | 29 +++++++++ > doc/guides/rel_notes/release_19_11.rst | 9 +++ > drivers/net/i40e/i40e_ethdev.c | 2 + > drivers/net/i40e/i40e_ethdev.h | 4 ++ > drivers/net/i40e/i40e_rxtx.c | 76 ++++++++++++++++++++++ > drivers/net/ice/ice_ethdev.c | 2 + > drivers/net/ice/ice_rxtx.c | 58 +++++++++++++++++ > drivers/net/ice/ice_rxtx.h | 4 ++ > lib/librte_ethdev/rte_ethdev.c | 71 ++++++++++++++++++++ > lib/librte_ethdev/rte_ethdev.h | 82 ++++++++++++++++++++++++ > lib/librte_ethdev/rte_ethdev_core.h | 5 ++ > lib/librte_ethdev/rte_ethdev_version.map | 5 ++ > 12 files changed, 347 insertions(+) > >-- >2.17.1 > For series: Reviewed-by: Xiaolong Ye