Eric Dumazet 93e16ea025 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>
2024-03-05 13:30:11 +01:00
..
2024-03-02 20:50:59 -08:00
2024-03-05 13:30:11 +01:00
2023-11-28 15:48:39 +01:00
2024-01-26 20:34:25 -08:00
2024-01-23 15:13:55 +01:00
2024-02-28 09:23:08 +00:00
2022-12-12 15:04:39 -08:00
2024-03-02 20:50:59 -08:00