From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 4BEC91BE0 for ; Wed, 7 Nov 2018 16:11:48 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Nov 2018 07:11:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,475,1534834800"; d="scan'208";a="87395166" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga007.jf.intel.com with ESMTP; 07 Nov 2018 07:11:47 -0800 Received: from fmsmsx123.amr.corp.intel.com (10.18.125.38) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.408.0; Wed, 7 Nov 2018 07:11:47 -0800 Received: from fmsmsx117.amr.corp.intel.com ([169.254.3.70]) by fmsmsx123.amr.corp.intel.com ([169.254.7.141]) with mapi id 14.03.0415.000; Wed, 7 Nov 2018 07:11:47 -0800 From: "Wiles, Keith" To: "Varghese, Vipin" CC: dev , "Yigit, Ferruh" , "Patel, Amol" Thread-Topic: [PATCH v1] net/tap: invoke probe finish for multiq failure Thread-Index: AQHUdqJ7xYagU+bC00aCvkdY9RYZKqVE8TuA Date: Wed, 7 Nov 2018 15:11:46 +0000 Message-ID: <4BCFFA6A-1160-484E-955A-F8A9E683B308@intel.com> References: <20181107135817.15139-1-vipin.varghese@intel.com> In-Reply-To: <20181107135817.15139-1-vipin.varghese@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.237.220.99] Content-Type: text/plain; charset="us-ascii" Content-ID: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v1] net/tap: invoke probe finish for multiq failure 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: , X-List-Received-Date: Wed, 07 Nov 2018 15:11:49 -0000 > On Nov 7, 2018, at 1:58 PM, Varghese, Vipin wr= ote: >=20 > In scenarion for multiq or flowq setup failure rte_eth_dev_probing_finish > has to be invoked for successful device registration. >=20 Acked-by: Keith Wiles > Signed-off-by: Vipin Varghese > --- > --- > drivers/net/tap/rte_eth_tap.c | 1 + > 1 file changed, 1 insertion(+) >=20 > diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.= c > index e7817e896..40911923d 100644 > --- a/drivers/net/tap/rte_eth_tap.c > +++ b/drivers/net/tap/rte_eth_tap.c > @@ -1848,6 +1848,7 @@ eth_dev_tap_create(struct rte_vdev_device *vdev, ch= ar *tap_name, > TAP_LOG(ERR, "Remote feature requires flow support."); > goto error_exit; > } > + rte_eth_dev_probing_finish(dev); > return 0; >=20 > error_remote: > --=20 > 2.17.1 >=20 Regards, Keith