[SK_BUFF]: Introduce skb_network_header_len
For the common sequence "skb->h.raw - skb->nh.raw", similar to skb->mac_len, that is precalculated tho, don't think we need to bloat skb with one more member, so just use this new helper, reducing the number of non-skbuff.h references to the layer headers even more. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
bff9b61ce3
commit
cfe1fc7759
14 changed files with 27 additions and 21 deletions
|
@ -182,7 +182,7 @@ resubmit:
|
|||
nf_reset(skb);
|
||||
|
||||
skb_postpull_rcsum(skb, skb_network_header(skb),
|
||||
skb->h.raw - skb->nh.raw);
|
||||
skb_network_header_len(skb));
|
||||
hdr = ipv6_hdr(skb);
|
||||
if (ipv6_addr_is_multicast(&hdr->daddr) &&
|
||||
!ipv6_chk_mcast_addr(skb->dev, &hdr->daddr,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue