From patchwork Thu Dec 28 10:26:09 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mingjin Ye X-Patchwork-Id: 523 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 133AA437B1; Thu, 28 Dec 2023 11:41:50 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 882CB402C4; Thu, 28 Dec 2023 11:41:49 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 3FC4B402BA for ; Thu, 28 Dec 2023 11:41:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1703760108; x=1735296108; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=o91YH4LSBoaIQE7dyS5wgrmn1y3Rcd+ZRJOXHNnZCM0=; b=T5+23b2DCNb4hqwLsYRREcaB97KfxUqXjApQ3BNvnhIFVzLkCZ5F2Isy grOJn/xzXEvxW1NNi2AnX2fDWox65nm68hV+11Isf+Wep5zkdoDz6cuX7 FgVmSKXj7SEP4aWpXwMy6vr0buy7pr6xJjUvXa6X4N8d0kHXUwV0hLH8T BBzRYYpQ25VdoG1LuHhLu1Pq65FVaLg3tbwKl/qVDda2hz+mnUuuHdr0j d8TXIjUdGBZiHWOta/qWlKrH/g172E6wxDgtJKAzk9BpJyYYy1TLSTvsZ XBzPfmmaOhkad5FoysawqhHka+KbdHmRqYs3maUA4/K2RR+TmWWSCcEzb A==; X-IronPort-AV: E=McAfee;i="6600,9927,10936"; a="427707161" X-IronPort-AV: E=Sophos;i="6.04,311,1695711600"; d="scan'208";a="427707161" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Dec 2023 02:41:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10936"; a="754707379" X-IronPort-AV: E=Sophos;i="6.04,311,1695711600"; d="scan'208";a="754707379" Received: from unknown (HELO localhost.localdomain) ([10.239.252.253]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Dec 2023 02:41:45 -0800 From: Mingjin Ye To: dev@dpdk.org Cc: qiming.yang@intel.com, Mingjin Ye Subject: [PATCH v5 0/2] net/iavf: add diagnostics and fix error Date: Thu, 28 Dec 2023 10:26:09 +0000 Message-Id: <20231228102611.921850-1-mingjinx.ye@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20231227101655.799560-1-mingjinx.ye@intel.com> References: <20231227101655.799560-1-mingjinx.ye@intel.com> MIME-Version: 1.0 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 1. Fix multi-process error in Tx path. 2. Add diagnostics to Tx path. Mingjin Ye (2): net/iavf: fix Tx path error in multi-process net/iavf: add diagnostic support in TX path doc/guides/nics/intel_vf.rst | 4 + drivers/net/iavf/iavf.h | 25 +++++- drivers/net/iavf/iavf_ethdev.c | 70 +++++++++++++++++ drivers/net/iavf/iavf_rxtx.c | 138 ++++++++++++++++++++++++++++++++- drivers/net/iavf/iavf_rxtx.h | 5 ++ 5 files changed, 238 insertions(+), 4 deletions(-)