]> 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)
commit6d726091835eb0651b1033a1dac1d36825766541
tree77213de2de22ae61ead334aaaaab20fc37c2b93c
parent5224eb870b01a00e7225ed576cc51a75b624c1e6
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