From: Aaron Conole <aconole@redhat.com>
To: Eric Dumazet <eric.dumazet@gmail.com>
Cc: "Bjørn Mork" <bjorn@mork.no>,
"Alexei Starovoitov" <alexei.starovoitov@gmail.com>,
"David Miller" <davem@davemloft.net>,
netdev <netdev@vger.kernel.org>
Subject: Re: [PATCH net-next] net: remove useless check in napi_gro_frags()
Date: Thu, 19 Nov 2015 16:06:40 -0500 [thread overview]
Message-ID: <f7tfv01pulb.fsf@aconole.bos.csb> (raw)
In-Reply-To: <1447965199.22599.252.camel@edumazet-glaptop2.roam.corp.google.com> (Eric Dumazet's message of "Thu, 19 Nov 2015 12:33:19 -0800")
Eric Dumazet <eric.dumazet@gmail.com> writes:
> On Thu, 2015-11-19 at 21:20 +0100, Bjørn Mork wrote:
>> Eric Dumazet <eric.dumazet@gmail.com> writes:
>>
>> > How many times should we crash before napi_frags_skb() returns NULL ?
>> ..
>> > return NULL;
>>
>> Huh? Now I'm lost here, too.
>
>
> Well, Ethernet drivers should not feed GRO with frames with less than 14 bytes.
>
> ( eth_type_trans() would crash the same )
>
> Lets fix buggy drivers instead of adding defensive code all over the stack.
>
> napi_gro_frags() is used by exactly 10 drivers, and I am pretty sure
> they are OK.
>
Would the following be an appropriate change in addition to the one
you've posted, then? If so I can repost as a formal patch, if you'd
like. At present, there's only one user of napi_frags_skb(), and your
patch removes the NULL check. If this can really only be the result of
buggy driver, then perhaps we should just call out the bug?
diff --git a/net/core/dev.c b/net/core/dev.c
index 41cef3e..b71c8b4 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -4440,10 +4440,7 @@ static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
eth = skb_gro_header_fast(skb, 0);
if (unlikely(skb_gro_header_hard(skb, hlen))) {
eth = skb_gro_header_slow(skb, hlen, 0);
- if (unlikely(!eth)) {
- napi_reuse_skb(napi, skb);
- return NULL;
- }
+ BUG_ON(!eth);
} else {
gro_pull_from_frag0(skb, hlen);
NAPI_GRO_CB(skb)->frag0 += hlen;
next prev parent reply other threads:[~2015-11-19 21:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-19 19:42 [PATCH net-next] net: remove useless check in napi_gro_frags() Eric Dumazet
2015-11-19 19:54 ` Alexei Starovoitov
2015-11-19 20:15 ` Eric Dumazet
2015-11-19 20:20 ` Bjørn Mork
2015-11-19 20:33 ` Eric Dumazet
2015-11-19 21:06 ` Aaron Conole [this message]
2015-11-19 21:43 ` Eric Dumazet
2015-11-20 19:59 ` 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=f7tfv01pulb.fsf@aconole.bos.csb \
--to=aconole@redhat.com \
--cc=alexei.starovoitov@gmail.com \
--cc=bjorn@mork.no \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=netdev@vger.kernel.org \
/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).