From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 21878C433EF for ; Fri, 17 Sep 2021 10:31:48 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id ADCB0610A7 for ; Fri, 17 Sep 2021 10:31:47 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org ADCB0610A7 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A9492406B4; Fri, 17 Sep 2021 12:31:46 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 1D5EB40689 for ; Fri, 17 Sep 2021 12:31:44 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10109"; a="210001121" X-IronPort-AV: E=Sophos;i="5.85,301,1624345200"; d="scan'208";a="210001121" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Sep 2021 03:31:44 -0700 X-IronPort-AV: E=Sophos;i="5.85,301,1624345200"; d="scan'208";a="546283261" Received: from unknown (HELO intel-npg-odc-srv03.cd.intel.com) ([10.240.178.145]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Sep 2021 03:31:40 -0700 From: Robin Zhang To: dev@dpdk.org Cc: haiyue.wang@intel.com, beilei.xing@intel.com, mdr@ashroe.eu, jingjing.wu@intel.com, anatoly.burakov@intel.com, qi.z.zhang@intel.com, junfeng.guo@intel.com, stevex.yang@intel.com, Robin Zhang Date: Fri, 17 Sep 2021 10:18:21 +0000 Message-Id: <20210917101824.527156-1-robinx.zhang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210830031215.557238-1-robinx.zhang@intel.com> References: <20210830031215.557238-1-robinx.zhang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v6 0/3] net/i40e: remove i40evf 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" In DPDK 21.05, iavf already became the default VF for i40e devices. So remove i40evf due to it's no need to maintain now. v6: - remove i40e_vf struct and related code, remove doc i40e_vf.ini. v5: - rebase code. v4: - resolve compile warning issue. v3: - remove VF related code in i40e_rxtx.c. v2: - update 21.11 release note, remove some missed documentation. Robin Zhang (3): net/i40e: remove i40evf net/iavf: remove i40evf devargs option doc: remove i40evf related documentation doc/guides/howto/lm_bond_virtio_sriov.rst | 4 +- doc/guides/nics/features/i40e_vf.ini | 40 - doc/guides/nics/intel_vf.rst | 8 +- doc/guides/rel_notes/deprecation.rst | 8 - doc/guides/rel_notes/release_21_11.rst | 2 + drivers/net/i40e/base/i40e_osdep.h | 1 - drivers/net/i40e/i40e_ethdev.h | 78 +- drivers/net/i40e/i40e_ethdev_vf.c | 3006 --------------------- drivers/net/i40e/i40e_rxtx.c | 50 +- drivers/net/i40e/meson.build | 1 - drivers/net/i40e/rte_pmd_i40e.c | 9 +- drivers/net/iavf/iavf_ethdev.c | 52 +- 12 files changed, 31 insertions(+), 3228 deletions(-) delete mode 100644 doc/guides/nics/features/i40e_vf.ini delete mode 100644 drivers/net/i40e/i40e_ethdev_vf.c -- 2.25.1