From mboxrd@z Thu Jan 1 00:00:00 1970 From: Shahaf Shuler Subject: [PATCH v2 0/7] convert mlx PMDs to new ethdev offloads API Date: Wed, 3 Jan 2018 09:16:10 +0200 Message-ID: References: <20171123120252.143695-1-shahafs@mellanox.com> Mime-Version: 1.0 Content-Type: text/plain Cc: dev@dpdk.org To: nelio.laranjeiro@6wind.com, yskoh@mellanox.com, adrien.mazarguil@6wind.com Return-path: Received: from EUR01-VE1-obe.outbound.protection.outlook.com (mail-ve1eur01on0051.outbound.protection.outlook.com [104.47.1.51]) by dpdk.org (Postfix) with ESMTP id 963E61B014 for ; Wed, 3 Jan 2018 08:17:05 +0100 (CET) In-Reply-To: <20171123120252.143695-1-shahafs@mellanox.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This series is to convert mlx4 and mlx5 PMDs to the new offloads API [1]. On v2: - New design to hold PMD specific args and combine them with offloads requested. - Fix missing IPV4 checksum flag on vector function selection. - Verify Txq flags ignore bit before checking for valid offloads configuration. - Removed strict offloads check from mlx4. [1] http://dpdk.org/ml/archives/dev/2017-October/077329.html Nelio Laranjeiro (1): net/mlx5: rename counter set in configuration Shahaf Shuler (6): net/mlx5: change pkt burst select function prototype net/mlx5: add device configuration structure net/mlx5: convert to new Tx offloads API net/mlx5: convert to new Rx offloads API net/mlx4: convert to new Tx offloads API net/mlx4: convert to new Rx offloads API doc/guides/nics/mlx5.rst | 15 +- drivers/net/mlx4/mlx4_ethdev.c | 17 +-- drivers/net/mlx4/mlx4_flow.c | 5 +- drivers/net/mlx4/mlx4_rxq.c | 78 ++++++++++- drivers/net/mlx4/mlx4_rxtx.h | 3 + drivers/net/mlx4/mlx4_txq.c | 71 +++++++++- drivers/net/mlx5/mlx5.c | 190 +++++++++---------------- drivers/net/mlx5/mlx5.h | 57 +++++--- drivers/net/mlx5/mlx5_ethdev.c | 113 ++++++++------- drivers/net/mlx5/mlx5_flow.c | 2 +- drivers/net/mlx5/mlx5_rxq.c | 121 +++++++++++++--- drivers/net/mlx5/mlx5_rxtx.c | 6 +- drivers/net/mlx5/mlx5_rxtx.h | 10 +- drivers/net/mlx5/mlx5_rxtx_vec.c | 40 +++--- drivers/net/mlx5/mlx5_rxtx_vec.h | 12 ++ drivers/net/mlx5/mlx5_trigger.c | 4 +- drivers/net/mlx5/mlx5_txq.c | 254 +++++++++++++++++++++++++--------- drivers/net/mlx5/mlx5_vlan.c | 7 +- 18 files changed, 662 insertions(+), 343 deletions(-) -- 2.12.0