From patchwork Sun Sep 27 07:26:18 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robin Zhang X-Patchwork-Id: 78903 Return-Path: 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 50AC5A04BC; Sun, 27 Sep 2020 09:42:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8DCF21D6F7; Sun, 27 Sep 2020 09:42:46 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id CE3C11D6EC for ; Sun, 27 Sep 2020 09:42:44 +0200 (CEST) IronPort-SDR: lVnLGi+iDauybim0iSfn9Ue42vgButOwhlOgKXm6fpnh1o2twTWp0b4CpDLociwsYseit8jtX4 IqKHQLoOXQvg== X-IronPort-AV: E=McAfee;i="6000,8403,9756"; a="159199145" X-IronPort-AV: E=Sophos;i="5.77,309,1596524400"; d="scan'208";a="159199145" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Sep 2020 00:42:41 -0700 IronPort-SDR: pacyzcX5ibcJVDTyesfAHX3KEFYugAvwrIe6P6wQS0GeFq4MJ433/0TJMF+0rW936VqHymDY5B BHkc6+FVD+Yw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,309,1596524400"; d="scan'208";a="323938589" Received: from intel-npg-odc-srv03.cd.intel.com ([10.240.178.138]) by orsmga002.jf.intel.com with ESMTP; 27 Sep 2020 00:42:38 -0700 From: Robin Zhang To: dev@dpdk.org Cc: beilei.xing@intel.com, jingjing.wu@intel.com, qiming.yang@intel.com, stevex.yang@intel.com, Robin Zhang Date: Sun, 27 Sep 2020 07:26:18 +0000 Message-Id: <20200927072626.28374-1-robinx.zhang@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH 0/8] feature porting from i40evf to iavf X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" This patch set port some features of i40evf to iavf. Robin Zhang (8): net/iavf: use link status helper functions net/iavf: set min and max MTU for VF net/iavf: re-program promiscuous mode on VF interface net/iavf: optimize promiscuous ops net/iavf: add workaround promiscuous disable net/iavf: cleanup Tx buffers net/iavf: add extended stats net/iavf: support check DD bit of a RX descriptor drivers/net/iavf/iavf_ethdev.c | 162 +++++++++++++++++++++------------ drivers/net/iavf/iavf_rxtx.c | 94 ++++++++++++++++++- drivers/net/iavf/iavf_rxtx.h | 2 + drivers/net/iavf/iavf_vchnl.c | 13 ++- 4 files changed, 209 insertions(+), 62 deletions(-) Acked-by: Qi Zhang