DPDK patches and discussions
 help / color / mirror / Atom feed
From: Andrew Rybchenko <arybchenko@solarflare.com>
To: Ferruh Yigit <ferruh.yigit@intel.com>, <dev@dpdk.org>
Cc: Ivan Malov <ivan.malov@oktetlabs.ru>
Subject: Re: [dpdk-dev] [PATCH 2/2] net/sfc: free mbufs in bulks on simple EF10 Tx datapath reap
Date: Wed, 13 Sep 2017 12:32:08 +0300	[thread overview]
Message-ID: <3393c629-1309-ae63-8f36-5dbd2e7e9f44@solarflare.com> (raw)
In-Reply-To: <888cc02a-07f9-204a-c59a-8bd35431e49b@intel.com>

On 09/12/2017 09:28 PM, Ferruh Yigit wrote:
> On 9/8/2017 3:15 PM, Andrew Rybchenko wrote:
>> From: Ivan Malov <ivan.malov@oktetlabs.ru>
>>
>> Signed-off-by: Ivan Malov <ivan.malov@oktetlabs.ru>
>> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
>> ---
>>   doc/guides/nics/sfc_efx.rst   |  4 +++-
>>   drivers/net/sfc/sfc_dp_tx.h   |  2 ++
>>   drivers/net/sfc/sfc_ef10_tx.c | 15 ++++++++++++++-
>>   drivers/net/sfc/sfc_ethdev.c  |  6 ++++++
>>   drivers/net/sfc/sfc_tx.c      | 17 +++++++++++++++++
>>   5 files changed, 42 insertions(+), 2 deletions(-)
>>
>> diff --git a/doc/guides/nics/sfc_efx.rst b/doc/guides/nics/sfc_efx.rst
>> index 973a4a0..028b980 100644
>> --- a/doc/guides/nics/sfc_efx.rst
>> +++ b/doc/guides/nics/sfc_efx.rst
>> @@ -245,12 +245,14 @@ boolean parameters value.
>>     features available and required by the datapath implementation.
>>     **efx** chooses libefx-based datapath which supports VLAN insertion
>>     (full-feature firmware variant only), TSO and multi-segment mbufs.
>> +  Mbuf segments may come from different mempools, and mbuf reference
>> +  counters are treated responsibly.
> This is also the case for ef10 native, right? Does it make sense to
> document it in below too?

Thanks, will add.

>>     **ef10** chooses EF10 (SFN7xxx, SFN8xxx) native datapath which is
>>     more efficient than libefx-based but has no VLAN insertion and TSO
>>     support yet.
>>     **ef10_simple** chooses EF10 (SFN7xxx, SFN8xxx) native datapath which
>>     is even more faster then **ef10** but does not support multi-segment
>> -  mbufs.
>> +  mbufs, disallows multiple mempools and neglects mbuf reference counters.
>>   
>>   - ``perf_profile`` [auto|throughput|low-latency] (default **throughput**)
>>   
> <...>
>
>> --- a/drivers/net/sfc/sfc_ef10_tx.c
>> +++ b/drivers/net/sfc/sfc_ef10_tx.c
>> @@ -401,14 +401,25 @@ struct sfc_ef10_txq {
>>   	pending += sfc_ef10_tx_process_events(txq);
>>   
>>   	if (pending != completed) {
>> +		struct rte_mbuf *bulk[SFC_TX_REAP_BULK_SIZE];
>> +		unsigned int nb = 0;
>> +
>>   		do {
>>   			struct sfc_ef10_tx_sw_desc *txd;
>>   
>>   			txd = &txq->sw_ring[completed & ptr_mask];
>>   
>> -			rte_pktmbuf_free_seg(txd->mbuf);
>> +			if (nb == RTE_DIM(bulk)) {
>> +				rte_mempool_put_bulk(bulk[0]->pool,
>> +						     (void *)bulk, nb);
> same warning here, again false positive I think:
> error #3656: variable "bulk" may be used before its value is set

I think this one is false positive as well.

> The patch to ignore the warning will take care of this one too.
>
>> +				nb = 0;
>> +			}
>> +
>> +			bulk[nb++] = txd->mbuf;
>>   		} while (++completed != pending);
>>   
>> +		rte_mempool_put_bulk(bulk[0]->pool, (void *)bulk, nb);
>> +
>>   		txq->completed = completed;
>>   	}
> <...>
>

  reply	other threads:[~2017-09-13  9:32 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-08 14:15 [dpdk-dev] [PATCH 1/2] net/sfc: free mbufs in bulks on EF10 native " Andrew Rybchenko
2017-09-08 14:15 ` [dpdk-dev] [PATCH 2/2] net/sfc: free mbufs in bulks on simple EF10 " Andrew Rybchenko
2017-09-12 18:28   ` Ferruh Yigit
2017-09-13  9:32     ` Andrew Rybchenko [this message]
2017-09-12 18:26 ` [dpdk-dev] [PATCH 1/2] net/sfc: free mbufs in bulks on EF10 native " Ferruh Yigit
2017-09-13  9:31   ` Andrew Rybchenko
2017-09-12 21:51 ` Stephen Hemminger
2017-09-13  6:27   ` Andrew Rybchenko
2017-09-13  9:33 ` [dpdk-dev] [PATCH v2 " Andrew Rybchenko
2017-09-13  9:33   ` [dpdk-dev] [PATCH v2 2/2] net/sfc: free mbufs in bulks on simple EF10 " Andrew Rybchenko
2017-09-15 11:12   ` [dpdk-dev] [PATCH v2 1/2] net/sfc: free mbufs in bulks on EF10 native " Ferruh Yigit

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=3393c629-1309-ae63-8f36-5dbd2e7e9f44@solarflare.com \
    --to=arybchenko@solarflare.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=ivan.malov@oktetlabs.ru \
    /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).