From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (xvm-189-124.dc0.ghst.net [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 86AE6A09FF; Wed, 6 Jan 2021 17:40:27 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 38254140E1D; Wed, 6 Jan 2021 17:40:16 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by mails.dpdk.org (Postfix) with ESMTP id A8F1A140DF4 for ; Wed, 6 Jan 2021 17:40:11 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from xuemingl@nvidia.com) with SMTP; 6 Jan 2021 18:40:09 +0200 Received: from nvidia.com (pegasus05.mtr.labs.mlnx [10.210.16.100]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 106Ge96b017829; Wed, 6 Jan 2021 18:40:09 +0200 From: Xueming Li To: Viacheslav Ovsiienko , Shahaf Shuler , Matan Azrad Cc: dev@dpdk.org, xuemingl@nvidia.com, Asaf Penso Date: Wed, 6 Jan 2021 16:39:55 +0000 Message-Id: <1609951199-24794-1-git-send-email-xuemingl@nvidia.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1608303356-13089-2-git-send-email-xuemingl@nvidia.com> References: <1608303356-13089-2-git-send-email-xuemingl@nvidia.com> Subject: [dpdk-dev] [PATCH v2 0/4] net/mlx5: support SubFunction representor X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" SubFunction [1] is a portion of the PCI device, a SF netdev has its own dedicated queues(txq, rxq). A SF netdev supports eswitch representation offload similar to existing PF and VF representors. A SF shares PCI level resources with other SFs and/or with its parent PCI function. This patch set introduces SubFunction representor support for mlx5 PMD driver. Depends-on: series-14559 ("support SubFunction representor") Version history: RFC: initial version [2] V2: - support bonding representor probe with new pf#vf# devargs - adapt EAL api V2 [3] changes - update document [1] SubFunction in kernel: https://lore.kernel.org/netdev/20201112192424.2742-1-parav@nvidia.com/ [2] RFC: http://patchwork.dpdk.org/project/dpdk/list/?series=14376 [3] EAL part to support SF representor: http://patchwork.dpdk.org/project/dpdk/list/?series=14559 Xueming Li (4): common/mlx5: update representor name parsing net/mlx5: support representor of sub function net/mlx5: revert setting representor to first PF net/mlx5: improve bonding representor probe doc/guides/nics/mlx5.rst | 62 +++++- drivers/common/mlx5/linux/mlx5_common_os.c | 32 ++- drivers/common/mlx5/linux/mlx5_nl.c | 2 + drivers/common/mlx5/mlx5_common.h | 2 + drivers/net/mlx5/linux/mlx5_ethdev_os.c | 5 + drivers/net/mlx5/linux/mlx5_os.c | 215 ++++++++++++++------- drivers/net/mlx5/mlx5.c | 23 ++- drivers/net/mlx5/mlx5.h | 4 +- drivers/net/mlx5/mlx5_defs.h | 4 - drivers/net/mlx5/mlx5_ethdev.c | 29 +-- drivers/net/mlx5/mlx5_mac.c | 8 +- 11 files changed, 261 insertions(+), 125 deletions(-) -- 2.25.1