From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id EB0874552E; Mon, 1 Jul 2024 12:00:20 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AE51F42790; Mon, 1 Jul 2024 12:00:20 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.7]) by mails.dpdk.org (Postfix) with ESMTP id 09E094025D for ; Mon, 1 Jul 2024 12:00:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1719828019; x=1751364019; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=YBcxHk6TplEfzxtWIOUVsC521P1BNa7SGLFQJkXEn2o=; b=AgiB5fOUT6gYzUN0raGq1d/oPJL6V+Ba15Fcuwte1LHYwb85RAFVUyPH 2I12s8AKu/ph5X58oweVWFGs4hWDVXcK0nGGqx86bp0V8MNDmGZdwAHo7 rKOkgzqR4WBG82SoZIJs54pbghJlZGJAMjA7/Gw1uwNIPCHzGIQ++NgSN Rx0eGO5S7qjxIb9RbC6xKsIGJ5c11t4PbDXnKHgNlAC2w1DpMlwdw0KaC J05u+TD1C9qT7KHpEsOs1QmxRfprrBD/WJBU2kmePxYZW21LDml5K7yU9 y7llEvi9IUqYof15wdZXWIxtjsC2AnK4ApE7+poAqKCgkOvz+a30DBrvY Q==; X-CSE-ConnectionGUID: al5VV1WuTROjWUT4imy1nw== X-CSE-MsgGUID: upbrF662T0qldKqIxmNyRA== X-IronPort-AV: E=McAfee;i="6700,10204,11119"; a="42364148" X-IronPort-AV: E=Sophos;i="6.09,175,1716274800"; d="scan'208";a="42364148" Received: from fmviesa008.fm.intel.com ([10.60.135.148]) by fmvoesa101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jul 2024 03:00:18 -0700 X-CSE-ConnectionGUID: U4DzpZPBRjSAsYxIlPErAQ== X-CSE-MsgGUID: MoxY2OpeSpeaNgMB1uSBng== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,175,1716274800"; d="scan'208";a="45452822" Received: from unknown (HELO npf-hyd-clx-03..) ([10.145.170.182]) by fmviesa008.fm.intel.com with ESMTP; 01 Jul 2024 03:00:17 -0700 From: Soumyadeep Hore To: bruce.richardson@intel.com, anatoly.burakov@intel.com Cc: dev@dpdk.org Subject: [PATCH v6 0/7] Update MEV TS Base Driver Date: Mon, 1 Jul 2024 09:13:44 +0000 Message-ID: <20240701091351.2550283-1-soumyadeep.hore@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240624091644.2404658-16-soumyadeep.hore@intel.com> References: <20240624091644.2404658-16-soumyadeep.hore@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 These patches integrate the latest changes in MEV TS IDPF Base driver. --- v6: - Addressed comments --- v5: - Removed warning from patch 6 --- v4: - Removed 1st patch as we are not using NVME_CPF flag - Addressed comments --- v3: - Removed additional whitespace changes - Fixed warnings of CI - Updated documentation relating to MEV TS FW release --- v2: - Changed implementation based on review comments - Fixed compilation errors for Windows, Alpine and FreeBSD --- Soumyadeep Hore (7): common/idpf: add wmb before tail drivers: adding macros for dynamic data structures common/idpf: enable flow steer capability for vports common/idpf: add a new Tx context descriptor structure common/idpf: remove idpf common file drivers: adding config queue types for virtchnl2 message doc: updated the documentation for cpfl PMD doc/guides/nics/cpfl.rst | 2 + drivers/common/idpf/base/idpf_common.c | 382 --------------- drivers/common/idpf/base/idpf_controlq.c | 2 + drivers/common/idpf/base/idpf_lan_txrx.h | 20 +- drivers/common/idpf/base/meson.build | 1 - drivers/common/idpf/base/virtchnl2.h | 517 +++++---------------- drivers/common/idpf/idpf_common_virtchnl.c | 10 +- drivers/common/idpf/idpf_common_virtchnl.h | 2 +- drivers/net/cpfl/cpfl_ethdev.c | 40 +- drivers/net/cpfl/cpfl_rxtx.c | 12 +- drivers/net/idpf/idpf_rxtx.c | 12 +- 11 files changed, 184 insertions(+), 816 deletions(-) delete mode 100644 drivers/common/idpf/base/idpf_common.c -- 2.43.0