diff options
author | 2024-03-01 19:37:37 +0000 | |
---|---|---|
committer | 2024-03-05 13:30:11 +0100 | |
commit | 93e16ea025d234d0ed01d9dc9c819257a2159bb6 (patch) | |
tree | 9e8191fedfa92d780b9b9dc90008576ebaf1483a /net/core/dev.c | |
parent | Merge branch 'mt7530-dsa-subdriver-improvements-act-iii' (diff) | |
download | linux-rng-93e16ea025d234d0ed01d9dc9c819257a2159bb6.tar.xz linux-rng-93e16ea025d234d0ed01d9dc9c819257a2159bb6.zip |
net: gro: rename skb_gro_header_hard()
skb_gro_header_hard() is renamed to skb_gro_may_pull() to match
the convention used by common helpers like pskb_may_pull().
This means the condition is inverted:
if (skb_gro_header_hard(skb, hlen))
slow_path();
becomes:
if (!skb_gro_may_pull(skb, hlen))
slow_path();
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'net/core/dev.c')
0 files changed, 0 insertions, 0 deletions