From: "Gavin Hu (Arm Technology China)" <Gavin.Hu@arm.com>
To: Di ChenxuX <chenxux.di@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: "qiming.yang@intel.com" <qiming.yang@intel.com>, nd <nd@arm.com>
Subject: Re: [dpdk-dev] [PATCH 1/4] net/fm10k: cleanup Tx buffers
Date: Thu, 26 Sep 2019 10:37:58 +0000 [thread overview]
Message-ID: <VI1PR08MB5376B70B4CAAA78C3E62A4C48F860@VI1PR08MB5376.eurprd08.prod.outlook.com> (raw)
In-Reply-To: <20190926092933.79683-2-chenxux.di@intel.com>
> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Di ChenxuX
> Sent: Thursday, September 26, 2019 5:30 PM
> To: dev@dpdk.org
> Cc: qiming.yang@intel.com; Di ChenxuX <chenxux.di@intel.com>
> Subject: [dpdk-dev] [PATCH 1/4] net/fm10k: cleanup Tx buffers
>
> Add support to the fm10k driver for the API rte_eth_tx_done_cleanup
> to force free consumed buffers on Tx ring.
>
> Signed-off-by: Di ChenxuX <chenxux.di@intel.com>
> ---
> drivers/net/fm10k/fm10k.h | 2 ++
> drivers/net/fm10k/fm10k_ethdev.c | 1 +
> drivers/net/fm10k/fm10k_rxtx.c | 45
> ++++++++++++++++++++++++++++++++
> 3 files changed, 48 insertions(+)
>
> diff --git a/drivers/net/fm10k/fm10k.h b/drivers/net/fm10k/fm10k.h
> index 916b856ac..ddb1d64ec 100644
> --- a/drivers/net/fm10k/fm10k.h
> +++ b/drivers/net/fm10k/fm10k.h
> @@ -342,6 +342,8 @@ uint16_t fm10k_xmit_pkts(void *tx_queue, struct
> rte_mbuf **tx_pkts,
> uint16_t fm10k_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
> uint16_t nb_pkts);
>
> +int fm10k_tx_done_cleanup(void *txq, uint32_t free_cnt);
> +
> int fm10k_rxq_vec_setup(struct fm10k_rx_queue *rxq);
> int fm10k_rx_vec_condition_check(struct rte_eth_dev *);
> void fm10k_rx_queue_release_mbufs_vec(struct fm10k_rx_queue *rxq);
> diff --git a/drivers/net/fm10k/fm10k_ethdev.c
> b/drivers/net/fm10k/fm10k_ethdev.c
> index db4d72129..328468185 100644
> --- a/drivers/net/fm10k/fm10k_ethdev.c
> +++ b/drivers/net/fm10k/fm10k_ethdev.c
> @@ -2838,6 +2838,7 @@ static const struct eth_dev_ops
> fm10k_eth_dev_ops = {
> .reta_query = fm10k_reta_query,
> .rss_hash_update = fm10k_rss_hash_update,
> .rss_hash_conf_get = fm10k_rss_hash_conf_get,
> + .tx_done_cleanup = fm10k_tx_done_cleanup,
> };
>
> static int ftag_check_handler(__rte_unused const char *key,
> diff --git a/drivers/net/fm10k/fm10k_rxtx.c
> b/drivers/net/fm10k/fm10k_rxtx.c
> index 5c3112183..f67c5bf00 100644
> --- a/drivers/net/fm10k/fm10k_rxtx.c
> +++ b/drivers/net/fm10k/fm10k_rxtx.c
> @@ -541,6 +541,51 @@ static inline void tx_free_bulk_mbuf(struct
> rte_mbuf **txep, int num)
> }
> }
>
> +int fm10k_tx_done_cleanup(void *txq, uint32_t free_cnt)
> +{
> + struct fm10k_tx_queue *q = (struct fm10k_tx_queue *)txq;
> + uint16_t next_rs, count = 0;
"count" should be declared as uint32_t to compare against free_cnt.
/Gavin
> +
> + if (q == NULL)
> + return -ENODEV;
> +
> + next_rs = fifo_peek(&q->rs_tracker);
> + if (!(q->hw_ring[next_rs].flags & FM10K_TXD_FLAG_DONE))
> + return count;
> +
> + /* the DONE flag is set on this descriptor so remove the ID
> + * from the RS bit tracker and free the buffers
> + */
> + fifo_remove(&q->rs_tracker);
> +
> + /* wrap around? if so, free buffers from last_free up to but NOT
> + * including nb_desc
> + */
> + if (q->last_free > next_rs) {
> + count = q->nb_desc - q->last_free;
> + tx_free_bulk_mbuf(&q->sw_ring[q->last_free], count);
> + q->last_free = 0;
> +
> + if (unlikely(count == (int)free_cnt))
> + return count;
> + }
> +
> + /* adjust free descriptor count before the next loop */
> + q->nb_free += count + (next_rs + 1 - q->last_free);
> +
> + /* free buffers from last_free, up to and including next_rs */
> + if (q->last_free <= next_rs) {
> + count = next_rs - q->last_free + 1;
> + tx_free_bulk_mbuf(&q->sw_ring[q->last_free], count);
> + q->last_free += count;
> + }
> +
> + if (q->last_free == q->nb_desc)
> + q->last_free = 0;
> +
> + return count;
> +}
> +
> static inline void tx_free_descriptors(struct fm10k_tx_queue *q)
> {
> uint16_t next_rs, count = 0;
> --
> 2.17.1
next prev parent reply other threads:[~2019-09-26 10:38 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-26 9:29 [dpdk-dev] [PATCH 0/4] drivers/net: " Di ChenxuX
2019-09-26 9:29 ` [dpdk-dev] [PATCH 1/4] net/fm10k: " Di ChenxuX
2019-09-26 10:37 ` Gavin Hu (Arm Technology China) [this message]
2019-09-26 9:29 ` [dpdk-dev] [PATCH 2/4] net/i40e: " Di ChenxuX
2019-09-26 10:36 ` Gavin Hu (Arm Technology China)
2019-09-26 9:29 ` [dpdk-dev] [PATCH 3/4] net/ice: " Di ChenxuX
2019-09-26 9:29 ` [dpdk-dev] [PATCH 4/4] net/ixgbe: " Di ChenxuX
2019-12-03 5:51 [dpdk-dev] [PATCH 0/4] drivers/net: " Chenxu Di
2019-12-03 5:51 ` [dpdk-dev] [PATCH 1/4] net/fm10k: " Chenxu Di
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=VI1PR08MB5376B70B4CAAA78C3E62A4C48F860@VI1PR08MB5376.eurprd08.prod.outlook.com \
--to=gavin.hu@arm.com \
--cc=chenxux.di@intel.com \
--cc=dev@dpdk.org \
--cc=nd@arm.com \
--cc=qiming.yang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).