Message ID | cover.1573494112.git.dekelp@mellanox.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id B5912A04AB; Mon, 11 Nov 2019 18:48:01 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4B0C329D2; Mon, 11 Nov 2019 18:47:56 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id CEE222142 for <dev@dpdk.org>; Mon, 11 Nov 2019 18:47:51 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 11 Nov 2019 19:47:48 +0200 Received: from mtl-vdi-280.wap.labs.mlnx. (mtl-vdi-280.wap.labs.mlnx [10.128.130.87]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id xABHlm0V024859; Mon, 11 Nov 2019 19:47:48 +0200 From: Dekel Peled <dekelp@mellanox.com> To: john.mcnamara@intel.com, marko.kovacevic@intel.com, nhorman@tuxdriver.com, ajit.khaparde@broadcom.com, somnath.kotur@broadcom.com, anatoly.burakov@intel.com, xuanziyang2@huawei.com, cloud.wangxiaoyun@huawei.com, zhouguoyang@huawei.com, wenzhuo.lu@intel.com, konstantin.ananyev@intel.com, matan@mellanox.com, shahafs@mellanox.com, viacheslavo@mellanox.com, rmody@marvell.com, shshaikh@marvell.com, maxime.coquelin@redhat.com, tiwei.bie@intel.com, zhihong.wang@intel.com, yongwang@vmware.com, thomas@monjalon.net, ferruh.yigit@intel.com, arybchenko@solarflare.com, jingjing.wu@intel.com, bernard.iremonger@intel.com Cc: dev@dpdk.org Date: Mon, 11 Nov 2019 19:47:32 +0200 Message-Id: <cover.1573494112.git.dekelp@mellanox.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <20191108230753.32221-1-thomas@monjalon.net> References: <20191108230753.32221-1-thomas@monjalon.net> Subject: [dpdk-dev] [PATCH v7 0/3] support API to set max LRO packet size X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Series |
support API to set max LRO packet size
|
|
Message
Dekel Peled
Nov. 11, 2019, 5:47 p.m. UTC
This series implements support and use of API for configuration and validation of max size for LRO aggregated packet. v2: Updated ethdev patch per review comments. v3: Updated ethdev and testpmd patches per review comments. v4: Updated ethdev patch for QEDE PMD per review comments. v5: Updated ethdev patch for IXGBE PMD, and testpmd patch, per review comments. v6: This is half of v5 1/3. Only the agreed part is here. v7: Remove other PMDs update, allow max_lro_pkt_len 0 in application conf, and in device info. Dekel Peled (3): ethdev: support API to set max LRO packet size net/mlx5: use API to set max LRO packet size app/testpmd: use API to set max LRO packet size app/test-pmd/cmdline.c | 76 +++++++++++++++++++++++++++++ app/test-pmd/config.c | 2 + app/test-pmd/parameters.c | 7 +++ doc/guides/nics/features.rst | 2 + doc/guides/nics/mlx5.rst | 2 + doc/guides/rel_notes/deprecation.rst | 4 -- doc/guides/rel_notes/release_19_11.rst | 8 +++ doc/guides/testpmd_app_ug/run_app.rst | 4 ++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 9 ++++ drivers/net/mlx5/mlx5.h | 3 ++ drivers/net/mlx5/mlx5_ethdev.c | 1 + drivers/net/mlx5/mlx5_rxq.c | 5 +- lib/librte_ethdev/rte_ethdev.c | 59 ++++++++++++++++++++++ lib/librte_ethdev/rte_ethdev.h | 4 ++ 14 files changed, 180 insertions(+), 6 deletions(-)
Comments
On 11/11/2019 5:47 PM, Dekel Peled wrote: > This series implements support and use of API for configuration and > validation of max size for LRO aggregated packet. > > v2: Updated ethdev patch per review comments. > v3: Updated ethdev and testpmd patches per review comments. > v4: Updated ethdev patch for QEDE PMD per review comments. > v5: Updated ethdev patch for IXGBE PMD, and testpmd patch, > per review comments. > v6: This is half of v5 1/3. Only the agreed part is here. > v7: Remove other PMDs update, allow max_lro_pkt_len 0 in > application conf, and in device info. > > Dekel Peled (3): > ethdev: support API to set max LRO packet size > net/mlx5: use API to set max LRO packet size > app/testpmd: use API to set max LRO packet size Series applied to dpdk-next-net/master, thanks.