From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from nbfkord-smmo01.seg.att.com (nbfkord-smmo01.seg.att.com [209.65.160.76]) by dpdk.org (Postfix) with ESMTP id 02786374F for ; Wed, 1 Mar 2017 19:22:20 +0100 (CET) Received: from unknown [193.34.186.16] (EHLO webmail.solarflare.com) by nbfkord-smmo01.seg.att.com(mxl_mta-7.2.4-7) with ESMTP id d5117b85.2b9547ca5940.751324.00-2474.2185875.nbfkord-smmo01.seg.att.com (envelope-from ); Wed, 01 Mar 2017 18:22:21 +0000 (UTC) X-MXL-Hash: 58b7115d57ac7959-d3a6b3741b5f043f99d46d176d71f888bfe95ba8 Received: from unknown [193.34.186.16] (EHLO webmail.solarflare.com) by nbfkord-smmo01.seg.att.com(mxl_mta-7.2.4-7) over TLS secured channel with ESMTP id 95117b85.0.751320.00-2327.2185859.nbfkord-smmo01.seg.att.com (envelope-from ); Wed, 01 Mar 2017 18:22:19 +0000 (UTC) X-MXL-Hash: 58b7115b045406f0-24ea48f21b9288260bd296fbf1e8b51368783609 Received: from [192.168.239.128] (188.242.181.57) by ukex01.SolarFlarecom.com (10.17.10.4) with Microsoft SMTP Server (TLS) id 15.0.1044.25; Wed, 1 Mar 2017 18:22:10 +0000 To: Olivier Matz , , , , , , , , References: <1479981261-19512-1-git-send-email-olivier.matz@6wind.com> <1488388752-1819-1-git-send-email-olivier.matz@6wind.com> <1488388752-1819-2-git-send-email-olivier.matz@6wind.com> CC: , From: Andrew Rybchenko Message-ID: <8966736f-3bcb-5096-5c2b-643c65751d5f@solarflare.com> Date: Wed, 1 Mar 2017 21:22:14 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <1488388752-1819-2-git-send-email-olivier.matz@6wind.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [188.242.181.57] X-ClientProxiedBy: ocex03.SolarFlarecom.com (10.20.40.36) To ukex01.SolarFlarecom.com (10.17.10.4) X-TM-AS-Product-Ver: SMEX-11.0.0.1191-8.100.1062-22914.003 X-TM-AS-Result: No--12.699200-0.000000-31 X-TM-AS-User-Approved-Sender: Yes X-TM-AS-User-Blocked-Sender: No X-AnalysisOut: [v=2.1 cv=LaQ6n2ri c=1 sm=1 tr=0 a=8P+NB+fYZDP74ap4g4d9Kw==] X-AnalysisOut: [:17 a=OHMDMId0i3QA:10 a=N659UExz7-8A:10 a=6Iz7jQTuP9IA:10 ] X-AnalysisOut: [a=4YC7WVefAAAA:8 a=woUKFV_0u_hQJxMJXOEA:9 a=pILNOxqGKmIA:1] X-AnalysisOut: [0 a=tPzOKt3quolVTVSLigK1:22] X-Spam: [F=0.2264498814; CM=0.500; S=0.226(2015072901)] X-MAIL-FROM: X-SOURCE-IP: [193.34.186.16] Subject: Re: [dpdk-dev] [PATCH 1/6] ethdev: add descriptor status API 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, 01 Mar 2017 18:22:21 -0000 On 03/01/2017 08:19 PM, Olivier Matz wrote: > Introduce a new API to get the status of a descriptor. > > For Rx, it is almost similar to rx_descriptor_done API, except it > differentiates "used" descriptors (which are hold by the driver and not > returned to the hardware). > > For Tx, it is a new API. > > The descriptor_done() API, and probably the rx_queue_count() API could > be replaced by this new API as soon as it is implemented on all PMDs. > > Signed-off-by: Olivier Matz > --- > lib/librte_ether/rte_ethdev.h | 86 +++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 86 insertions(+) > > diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h > index 97f3e2d..9ac9c61 100644 > --- a/lib/librte_ether/rte_ethdev.h > +++ b/lib/librte_ether/rte_ethdev.h > @@ -1179,6 +1179,14 @@ typedef uint32_t (*eth_rx_queue_count_t)(struct rte_eth_dev *dev, > typedef int (*eth_rx_descriptor_done_t)(void *rxq, uint16_t offset); > /**< @internal Check DD bit of specific RX descriptor */ > > +typedef int (*eth_rx_descriptor_status_t)(struct rte_eth_dev *dev, > + uint16_t rx_queue_id, uint16_t offset); > +/**< @internal Check the status of a Rx descriptor */ > + > +typedef int (*eth_tx_descriptor_status_t)(struct rte_eth_dev *dev, > + uint16_t tx_queue_id, uint16_t offset); > +/**< @internal Check the status of a Tx descriptor */ > + > typedef int (*eth_fw_version_get_t)(struct rte_eth_dev *dev, > char *fw_version, size_t fw_size); > /**< @internal Get firmware information of an Ethernet device. */ > @@ -1483,6 +1491,10 @@ struct eth_dev_ops { > eth_queue_release_t rx_queue_release; /**< Release RX queue. */ > eth_rx_queue_count_t rx_queue_count;/**< Get Rx queue count. */ > eth_rx_descriptor_done_t rx_descriptor_done; /**< Check rxd DD bit. */ > + eth_rx_descriptor_status_t rx_descriptor_status; > + /**< Check the status of a Rx descriptor. */ > + eth_tx_descriptor_status_t tx_descriptor_status; > + /**< Check the status of a Tx descriptor. */ > eth_rx_enable_intr_t rx_queue_intr_enable; /**< Enable Rx queue interrupt. */ > eth_rx_disable_intr_t rx_queue_intr_disable; /**< Disable Rx queue interrupt. */ > eth_tx_queue_setup_t tx_queue_setup;/**< Set up device TX queue. */ > @@ -2768,6 +2780,80 @@ rte_eth_rx_descriptor_done(uint8_t port_id, uint16_t queue_id, uint16_t offset) > dev->data->rx_queues[queue_id], offset); > } > > +#define RTE_ETH_RX_DESC_AVAIL 0 /**< Desc available for hw. */ > +#define RTE_ETH_RX_DESC_DONE 1 /**< Desc done, filled by hw. */ > +#define RTE_ETH_RX_DESC_USED 2 /**< Desc used by driver. */ > + > +/** > + * Check the status of a Rx descriptor in the queue I think it would be useful to highlight caller context. Should it be the same CPU which receives packets from the queue? > + * > + * @param port_id > + * The port identifier of the Ethernet device. > + * @param queue_id > + * The Rx queue identifier on this port. > + * @param offset > + * The offset of the descriptor starting from tail (0 is the next > + * packet to be received by the driver). > + * @return > + * - (RTE_ETH_DESC_AVAIL): Descriptor is available for the hardware to > + * receive a packet. > + * - (RTE_ETH_DESC_DONE): Descriptor is done, it is filled by hw, but > + * not yet processed by the driver (i.e. in the receive queue). > + * - (RTE_ETH_DESC_USED): Descriptor is unavailable (hold by driver, > + * not yet returned to hw). It looks like it is the most suitable for descriptors which are reserved and never used. > + * - (-ENODEV) if *port_id* invalid. > + * - (-EINVAL) bad descriptor offset. > + * - (-ENOTSUP) if the device does not support this function. What should be returned if queue_id is invalid? What should be returned if the queue is stopped? > + */ > +static inline int > +rte_eth_rx_descriptor_status(uint8_t port_id, uint16_t queue_id, > + uint16_t offset) > +{ > + struct rte_eth_dev *dev; > + > + RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); > + dev = &rte_eth_devices[port_id]; > + RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_descriptor_status, -ENOTSUP); > + May be it makes sense to range check queue_id here to avoid such code in each PMD? > + return (*dev->dev_ops->rx_descriptor_status)(dev, queue_id, offset); > +} > + > +#define RTE_ETH_TX_DESC_FULL 0 /**< Desc filled by pmd for hw, waiting xmit. */ > +#define RTE_ETH_TX_DESC_DONE 1 /**< Desc done, packet is transmitted. */ I see no value suitable for descriptor which is never used. > +/** > + * Check the status of a Tx descriptor in the queue. > + * > + * @param port_id > + * The port identifier of the Ethernet device. > + * @param queue_id > + * The Tx queue identifier on this port. > + * @param offset > + * The offset of the descriptor starting from tail (0 is the place where > + * the next packet will be send). > + * > + * @return > + * - (RTE_ETH_DESC_FULL) Descriptor is being processed by the hw, i.e. > + * in the transmit queue. > + * - (RTE_ETH_DESC_DONE) Hardware is done with this descriptor, it can be > + * reused by the driver. > + * - (-ENODEV) if *port_id* invalid. > + * - (-EINVAL) bad descriptor offset. > + * - (-ENOTSUP) if the device does not support this function. > + */ > +static inline int rte_eth_tx_descriptor_status(uint8_t port_id, > + uint16_t queue_id, uint16_t offset) > +{ > + struct rte_eth_dev *dev; > + > + RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); > + dev = &rte_eth_devices[port_id]; > + RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_descriptor_status, -ENOTSUP); > + > + return (*dev->dev_ops->tx_descriptor_status)(dev, queue_id, offset); > +} > + > /** > * Send a burst of output packets on a transmit queue of an Ethernet device. > *