From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 30022108A for ; Mon, 6 Mar 2017 03:13:43 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Mar 2017 18:13:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,251,1484035200"; d="scan'208";a="56360932" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga002.jf.intel.com with ESMTP; 05 Mar 2017 18:13:41 -0800 Received: from bgsmsx105.gar.corp.intel.com (10.223.43.197) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.248.2; Sun, 5 Mar 2017 18:13:41 -0800 Received: from bgsmsx101.gar.corp.intel.com ([169.254.1.43]) by BGSMSX105.gar.corp.intel.com ([169.254.3.40]) with mapi id 14.03.0248.002; Mon, 6 Mar 2017 07:43:38 +0530 From: "Yang, Zhiyong" To: "Ananyev, Konstantin" , "dev@dpdk.org" CC: "Richardson, Bruce" Thread-Topic: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour Thread-Index: AQHSlBBH3FNOtpxqqkW2l1rpNVq1xqGF3SoAgAE5EOA= Date: Mon, 6 Mar 2017 02:13:37 +0000 Message-ID: References: <1487926101-4637-2-git-send-email-zhiyong.yang@intel.com> <1488539851-71009-1-git-send-email-zhiyong.yang@intel.com> <2601191342CEEE43887BDE71AB9772583FAC9B50@IRSMSX109.ger.corp.intel.com> In-Reply-To: <2601191342CEEE43887BDE71AB9772583FAC9B50@IRSMSX109.ger.corp.intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYTUxOTU4M2QtYmMyNi00MmZmLTg2M2QtOWJhYzM4OWMzNTU3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Im8zT0MybUlRM3JtQ2lcLys3ckNzT0hJYytmMG5ESnRRc3V2bWRTM25LbHVBPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [10.223.10.10] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour 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: , X-List-Received-Date: Mon, 06 Mar 2017 02:13:43 -0000 Thanks, Konstantin. --Zhiyong > -----Original Message----- > From: Ananyev, Konstantin > Sent: Sunday, March 5, 2017 9:03 PM > To: Yang, Zhiyong ; dev@dpdk.org > Cc: Richardson, Bruce > Subject: RE: [dpdk-dev] [PATCH v2 0/5] consistent PMD batching behaviour >=20 >=20 > > The rte_eth_tx_burst() function in the file Rte_ethdev.h is invoked to > > transmit output packets on the output queue for DPDK applications as > > follows. > > > > static inline uint16_t > > rte_eth_tx_burst(uint8_t port_id, uint16_t queue_id, > > struct rte_mbuf **tx_pkts, uint16_t nb_pkts); > > > > Note: The fourth parameter nb_pkts: The number of packets to transmit. > > > > The rte_eth_tx_burst() function returns the number of packets it > > actually sent. Most of PMD drivers can support the policy "send as > > many packets to transmit as possible" at the PMD level. but the few of > > PMDs have some sort of artificial limits for the pkts sent > > successfully. For example, VHOST tx burst size is limited to 32 > > packets. Some rx_burst functions have the similar problem. The main > > benefit is consistent batching behavior for user to simplify their > > logic and avoid misusage at the application level, there is unified > > rte_eth_tx/rx_burst interface already, there is no reason for inconsist= ent > behaviors. > > This patchset fixes it via adding wrapper function at the PMD level. > > > > Changes in V2: > > 1. rename ixgbe, i40e and fm10k vec function XXX_xmit_pkts_vec to new > > name XXX_xmit_fixed_burst_vec, new wrapper functions use original > name > > XXX_xmit_pkts_vec according to Bruce's suggestion. > > > > 2. simplify the code to avoid the if or if/else. > > > > Zhiyong Yang (5): > > net/fm10k: remove limit of fm10k_xmit_pkts_vec burst size > > net/i40e: remove limit of i40e_xmit_pkts_vec burst size > > net/ixgbe: remove limit of ixgbe_xmit_pkts_vec burst size > > net/vhost: remove limit of vhost TX burst size > > net/vhost: remove limit of vhost RX burst size > > > > drivers/net/fm10k/fm10k.h | 4 ++-- > > drivers/net/fm10k/fm10k_ethdev.c | 28 > ++++++++++++++++++++++++--- > > drivers/net/fm10k/fm10k_rxtx_vec.c | 4 ++-- > > drivers/net/i40e/i40e_rxtx.c | 28 ++++++++++++++++++++++++-= -- > > drivers/net/i40e/i40e_rxtx.h | 4 ++-- > > drivers/net/i40e/i40e_rxtx_vec_neon.c | 4 ++-- > > drivers/net/i40e/i40e_rxtx_vec_sse.c | 4 ++-- > > drivers/net/ixgbe/ixgbe_rxtx.c | 29 > ++++++++++++++++++++++++++++ > > drivers/net/ixgbe/ixgbe_rxtx.h | 4 ++-- > > drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c | 4 ++-- > > drivers/net/ixgbe/ixgbe_rxtx_vec_sse.c | 4 ++-- > > drivers/net/vhost/rte_eth_vhost.c | 34 > +++++++++++++++++++++++++++++---- > > 12 files changed, 125 insertions(+), 26 deletions(-) > > >=20 > Acked-by: Konstantin Ananyev >=20 > > -- > > 2.7.4