net: introduce skb_transport_header_was_set()
authorEric Dumazet <edumazet@google.com>
Mon, 7 Jan 2013 09:28:21 +0000 (09:28 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 9 Jan 2013 01:51:54 +0000 (17:51 -0800)
commitfda55eca5a33f33ffcd4192c6b2d75179714a52c
tree54b8e755273ab37fa54cfdd0867b2e7631eb4b10
parent0edb7ede7d524377afbaf48a35654baa52368f4b
net: introduce skb_transport_header_was_set()

We have skb_mac_header_was_set() helper to tell if mac_header
was set on a skb. We would like the same for transport_header.

__netif_receive_skb() doesn't reset the transport header if already
set by GRO layer.

Note that network stacks usually reset the transport header anyway,
after pulling the network header, so this change only allows
a followup patch to have more precise qdisc pkt_len computation
for GSO packets at ingress side.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h
net/core/dev.c
net/core/skbuff.c