From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 639E95F32 for ; Sun, 25 Mar 2018 21:47:20 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Mar 2018 12:47:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,361,1517904000"; d="scan'208";a="27452036" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by fmsmga008.fm.intel.com with ESMTP; 25 Mar 2018 12:47:18 -0700 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.216]) by IRSMSX101.ger.corp.intel.com ([169.254.1.176]) with mapi id 14.03.0319.002; Sun, 25 Mar 2018 20:47:17 +0100 From: "Ananyev, Konstantin" To: "Zhang, Qi Z" , "thomas@monjalon.net" CC: "dev@dpdk.org" , "Xing, Beilei" , "Wu, Jingjing" , "Lu, Wenzhuo" Thread-Topic: [PATCH v3 1/3] ether: support runtime queue setup Thread-Index: AQHTwOYr9NwKwiMPf0uQGiJfvyXNF6PhYjYQ Date: Sun, 25 Mar 2018 19:47:16 +0000 Message-ID: <2601191342CEEE43887BDE71AB977258A0AB4016@irsmsx105.ger.corp.intel.com> References: <20180212045314.171616-1-qi.z.zhang@intel.com> <20180321072807.268266-1-qi.z.zhang@intel.com> <20180321072807.268266-2-qi.z.zhang@intel.com> In-Reply-To: <20180321072807.268266-2-qi.z.zhang@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYzY2ZjYzMzItNzJiYy00YTEyLWFlYjgtZmJlYTk0MmU0MzE3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6Ik4wOURNSXlPdzJwNjlyZTBGblIwaVczd2pqeFJ1c3pXSHBBUnF0TkdNOG89In0= x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 1/3] ether: support runtime queue setup 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: Sun, 25 Mar 2018 19:47:20 -0000 > -----Original Message----- > From: Zhang, Qi Z > Sent: Wednesday, March 21, 2018 7:28 AM > To: thomas@monjalon.net; Ananyev, Konstantin > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing ; Lu, Wenzhuo ; > Zhang, Qi Z > Subject: [PATCH v3 1/3] ether: support runtime queue setup >=20 > The patch let etherdev driver expose the capability flag through > rte_eth_dev_info_get when it support runtime queue configuraiton, > then base on the flag rte_eth_[rx|tx]_queue_setup could decide > continue to setup the queue or just return fail when device already > started. >=20 > Signed-off-by: Qi Zhang > --- > v3: > - not overload deferred start > - rename deferred setup to runtime setup >=20 > v2: > - enhance comment >=20 > doc/guides/nics/features.rst | 8 ++++++++ > lib/librte_ether/rte_ethdev.c | 30 ++++++++++++++++++------------ > lib/librte_ether/rte_ethdev.h | 7 +++++++ > 3 files changed, 33 insertions(+), 12 deletions(-) >=20 > diff --git a/doc/guides/nics/features.rst b/doc/guides/nics/features.rst > index 1b4fb979f..6983faa4e 100644 > --- a/doc/guides/nics/features.rst > +++ b/doc/guides/nics/features.rst > @@ -892,7 +892,15 @@ Documentation describes performance values. >=20 > See ``dpdk.org/doc/perf/*``. >=20 > +.. _nic_features_queue_runtime_setup_capabilities: >=20 > +Queue runtime setup capabilities > +--------------------------------- > + > +Supports queue setup / release after device started. > + > +* **[provides] rte_eth_dev_info**: > ``runtime_queue_config_capa:DEV_RUNTIME_RX_QUEUE_SETUP,DEV_RUNTIME_TX_QUE= UE_SETUP``. > +* **[related] API**: ``rte_eth_dev_info_get()``. >=20 > .. _nic_features_other: >=20 > diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.= c > index 0590f0c10..343b1a6c0 100644 > --- a/lib/librte_ether/rte_ethdev.c > +++ b/lib/librte_ether/rte_ethdev.c > @@ -1425,12 +1425,6 @@ rte_eth_rx_queue_setup(uint16_t port_id, uint16_t = rx_queue_id, > return -EINVAL; > } >=20 > - if (dev->data->dev_started) { > - RTE_PMD_DEBUG_TRACE( > - "port %d must be stopped to allow configuration\n", port_id); > - return -EBUSY; > - } > - > RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP); > RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_setup, -ENOTSUP); >=20 > @@ -1474,6 +1468,15 @@ rte_eth_rx_queue_setup(uint16_t port_id, uint16_t = rx_queue_id, > return -EINVAL; > } >=20 > + if (dev->data->dev_started && > + !(dev_info.runtime_queue_setup_capa & > + DEV_RUNTIME_RX_QUEUE_SETUP)) > + return -EBUSY; > + > + if (dev->data->rx_queue_state[rx_queue_id] !=3D > + RTE_ETH_QUEUE_STATE_STOPPED) > + return -EBUSY; > + > rxq =3D dev->data->rx_queues; > if (rxq[rx_queue_id]) { > RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release, > @@ -1573,12 +1576,6 @@ rte_eth_tx_queue_setup(uint16_t port_id, uint16_t = tx_queue_id, > return -EINVAL; > } >=20 > - if (dev->data->dev_started) { > - RTE_PMD_DEBUG_TRACE( > - "port %d must be stopped to allow configuration\n", port_id); > - return -EBUSY; > - } > - > RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP); > RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_setup, -ENOTSUP); >=20 > @@ -1596,6 +1593,15 @@ rte_eth_tx_queue_setup(uint16_t port_id, uint16_t = tx_queue_id, > return -EINVAL; > } >=20 > + if (dev->data->dev_started && > + !(dev_info.runtime_queue_setup_capa & > + DEV_RUNTIME_TX_QUEUE_SETUP)) > + return -EBUSY; > + > + if (dev->data->rx_queue_state[tx_queue_id] !=3D > + RTE_ETH_QUEUE_STATE_STOPPED) > + return -EBUSY; > + > txq =3D dev->data->tx_queues; > if (txq[tx_queue_id]) { > RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release, > diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.= h > index 036153306..4e2088458 100644 > --- a/lib/librte_ether/rte_ethdev.h > +++ b/lib/librte_ether/rte_ethdev.h > @@ -981,6 +981,11 @@ struct rte_eth_conf { > */ > #define DEV_TX_OFFLOAD_SECURITY 0x00020000 >=20 > +#define DEV_RUNTIME_RX_QUEUE_SETUP 0x00000001 > +/**< Deferred setup rx queue */ > +#define DEV_RUNTIME_TX_QUEUE_SETUP 0x00000002 > +/**< Deferred setup tx queue */ > + > /* > * If new Tx offload capabilities are defined, they also must be > * mentioned in rte_tx_offload_names in rte_ethdev.c file. > @@ -1029,6 +1034,8 @@ struct rte_eth_dev_info { > /** Configured number of rx/tx queues */ > uint16_t nb_rx_queues; /**< Number of RX queues. */ > uint16_t nb_tx_queues; /**< Number of TX queues. */ > + uint64_t runtime_queue_setup_capa; > + /**< queues can be setup after dev_start (DEV_DEFERRED_). */ > }; >=20 > /** > -- Acked-by: Konstantin Ananyev > 2.13.6