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 6B889A0C4D; Wed, 1 Sep 2021 13:13:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5517D4113C; Wed, 1 Sep 2021 13:13:26 +0200 (CEST) Received: from mail-108-mta1.mxroute.com (mail-108-mta1.mxroute.com [136.175.108.1]) by mails.dpdk.org (Postfix) with ESMTP id 3491041123 for ; Wed, 1 Sep 2021 13:13:25 +0200 (CEST) Received: from filter004.mxroute.com ([149.28.56.236] filter004.mxroute.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta1.mxroute.com (ZoneMTA) with ESMTPSA id 17ba11043d500074ba.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Wed, 01 Sep 2021 11:13:22 +0000 X-Zone-Loop: bf4d966786ba12a9e42d1a8006e4606ae15d032cf69c X-Originating-IP: [149.28.56.236] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date: Message-ID:From:References:Cc:To:Subject:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=UpA90LHGLhysTmZ21H/faqxk4UxXQD7h3T4bhNxxk14=; b=XHFtNcUu3Gvgp6sZ4v1e3R7hhS VtM7Y7vyXy9mEs6DOafLNS978xqa5y1KBag3nd10s7K5dSw+yW+hCaLkEUmRkQDxnOOVEgfMf5ra8 Bw9Cojhody1bMDfBmquJ9ol11cDc3CHUjo0DBHCQDzxKrcrCq2IPWZ5kklkP9GsU+rfE7k+VWmu2a nZyYwd3bzl4ZKdc8ER27tX3D/e7b//f1yy6guCkn/758vu4ChfBoscxkKK3uAkqDU3FEs9JGXsAK1 CYoW/VPMN2rYDBeSKMveVWVZbNIShYrCyBzAV8b3mhKCbzgMWNzUqbxmc8EL8erD5+EF2BVxYCSUA 7D8C8jPw==; To: Robin Zhang , dev@dpdk.org Cc: beilei.xing@intel.com, anatoly.burakov@intel.com, jingjing.wu@intel.com, qi.z.zhang@intel.com, junfeng.guo@intel.com, stevex.yang@intel.com, david.marchand@redhat.com, ktraynor@redhat.com References: <20210830031215.557238-1-robinx.zhang@intel.com> <20210901033059.767679-1-robinx.zhang@intel.com> <20210901033059.767679-3-robinx.zhang@intel.com> From: "Kinsella, Ray" Message-ID: <476f7d63-d439-cdb0-142c-6d7c96a64abd@ashroe.eu> Date: Wed, 1 Sep 2021 12:13:18 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 MIME-Version: 1.0 In-Reply-To: <20210901033059.767679-3-robinx.zhang@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-AuthUser: mdr@ashroe.eu Subject: Re: [dpdk-dev] [PATCH v2 2/3] net/iavf: remove i40evf devargs option 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" On 01/09/2021 04:30, Robin Zhang wrote: > Due to i40evf will be removed, so there's no need to keep the devargs > option "driver=i40evf" in iavf. > > Signed-off-by: Robin Zhang > --- [SNIP] > @@ -2556,7 +2508,7 @@ static struct rte_pci_driver rte_iavf_pmd = { > RTE_PMD_REGISTER_PCI(net_iavf, rte_iavf_pmd); > RTE_PMD_REGISTER_PCI_TABLE(net_iavf, pci_id_iavf_map); > RTE_PMD_REGISTER_KMOD_DEP(net_iavf, "* igb_uio | vfio-pci"); > -RTE_PMD_REGISTER_PARAM_STRING(net_iavf, "cap=dcf driver=i40evf"); > +RTE_PMD_REGISTER_PARAM_STRING(net_iavf, "cap=dcf"); Is "cap=dcf driver=iavf" required? > RTE_LOG_REGISTER_SUFFIX(iavf_logtype_init, init, NOTICE); > RTE_LOG_REGISTER_SUFFIX(iavf_logtype_driver, driver, NOTICE); > #ifdef RTE_ETHDEV_DEBUG_RX >