From: "Nambiar, Amritha" <amritha.nambiar@intel.com>
To: Eric Dumazet <edumazet@google.com>
Cc: netdev <netdev@vger.kernel.org>,
David Miller <davem@davemloft.net>,
Alexander Duyck <alexander.h.duyck@intel.com>,
Eliezer Tamir <eliezer.tamir@linux.intel.com>,
"Samudrala, Sridhar" <sridhar.samudrala@intel.com>
Subject: Re: [net-next PATCH] net: Avoid overwriting valid skb->napi_id
Date: Thu, 18 Jun 2020 16:44:44 -0700 [thread overview]
Message-ID: <b943b5d1-aa71-4eb2-ee77-d3c56cdf494a@intel.com> (raw)
In-Reply-To: <CANn89i+3CZE1V5AQt0MA_ptsjfHEqUL+LV2VwiD41_3dyXq2pQ@mail.gmail.com>
On 6/18/2020 3:29 PM, Eric Dumazet wrote:
> On Thu, Jun 18, 2020 at 2:21 PM Amritha Nambiar
> <amritha.nambiar@intel.com> wrote:
>>
>> This will be useful to allow busy poll for tunneled traffic. In case of
>> busy poll for sessions over tunnels, the underlying physical device's
>> queues need to be polled.
>>
>> Tunnels schedule NAPI either via netif_rx() for backlog queue or
>> schedule the gro_cell_poll(). netif_rx() propagates the valid skb->napi_id
>> to the socket. OTOH, gro_cell_poll() stamps the skb->napi_id again by
>> calling skb_mark_napi_id() with the tunnel NAPI which is not a busy poll
>> candidate.
>
>
> Yes the tunnel NAPI id should be 0 really (look for NAPI_STATE_NO_BUSY_POLL)
>
>> This was preventing tunneled traffic to use busy poll. A valid
>> NAPI ID in the skb indicates it was already marked for busy poll by a
>> NAPI driver and hence needs to be copied into the socket.
>>
>> Signed-off-by: Amritha Nambiar <amritha.nambiar@intel.com>
>> ---
>> include/net/busy_poll.h | 6 +++++-
>> 1 file changed, 5 insertions(+), 1 deletion(-)
>>
>> diff --git a/include/net/busy_poll.h b/include/net/busy_poll.h
>> index 86e028388bad..b001fa91c14e 100644
>> --- a/include/net/busy_poll.h
>> +++ b/include/net/busy_poll.h
>> @@ -114,7 +114,11 @@ static inline void skb_mark_napi_id(struct sk_buff *skb,
>> struct napi_struct *napi)
>> {
>> #ifdef CONFIG_NET_RX_BUSY_POLL
>> - skb->napi_id = napi->napi_id;
>> + /* If the skb was already marked with a valid NAPI ID, avoid overwriting
>> + * it.
>> + */
>> + if (skb->napi_id < MIN_NAPI_ID)
>> + skb->napi_id = napi->napi_id;
>
>
> It should be faster to not depend on MIN_NAPI_ID (aka NR_CPUS + 1)
>
> if (napi->napi_id)
> skb->napi_id = napi->napi_id;
>
> Probably not a big deal.
>
> Reviewed-by: Eric Dumazet <edumazet@google.com>
>
Thanks for the review. Should I send a v2 with this change?
>
>
>
>
>
>>
>> #endif
>> }
>>
>>
next prev parent reply other threads:[~2020-06-18 23:44 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-18 21:22 [net-next PATCH] net: Avoid overwriting valid skb->napi_id Amritha Nambiar
2020-06-18 22:29 ` Eric Dumazet
2020-06-18 23:44 ` Nambiar, Amritha [this message]
2020-06-18 23:53 ` Eric Dumazet
2020-06-21 0:31 ` David Miller
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=b943b5d1-aa71-4eb2-ee77-d3c56cdf494a@intel.com \
--to=amritha.nambiar@intel.com \
--cc=alexander.h.duyck@intel.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=eliezer.tamir@linux.intel.com \
--cc=netdev@vger.kernel.org \
--cc=sridhar.samudrala@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