]> git.baikalelectronics.ru Git - kernel.git/commit
gro: Enter slow-path if there is no tailroom
authorHerbert Xu <herbert@gondor.apana.org.au>
Tue, 10 Jan 2017 20:24:01 +0000 (12:24 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Jan 2017 02:26:12 +0000 (21:26 -0500)
commit04a5b02843126c11e7e9d6368b94009281e52df9
tree77213de2de22ae61ead334aaaaab20fc37c2b93c
parent52acad786fdc856292fc3b0c0567c408e4bf1c2a
gro: Enter slow-path if there is no tailroom

The GRO path has a fast-path where we avoid calling pskb_may_pull
and pskb_expand by directly accessing frag0.  However, this should
only be done if we have enough tailroom in the skb as otherwise
we'll have to expand it later anyway.

This patch adds the check by capping frag0_len with the skb tailroom.

Fixes: 52c7de41c439 ("gro: Open-code final pskb_may_pull")
Reported-by: Slava Shwartsman <slavash@mellanox.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c