skb: Add inline helper for getting the skb end offset from head
authorAlexander Duyck <alexander.h.duyck@intel.com>
Fri, 4 May 2012 14:26:56 +0000 (14:26 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Mon, 9 Jun 2014 12:29:00 +0000 (13:29 +0100)
commit93a1554e0ca3cbabfb90d8d6edeb1680597283a3
treef995a71923888408e726ca24873cea51d1b3b98e
parent7df12dedb762223a0594078b85849c4a35581e9a
skb: Add inline helper for getting the skb end offset from head

[ Upstream commit ec47ea82477404631d49b8e568c71826c9b663ac ]

With the recent changes for how we compute the skb truesize it occurs to me
we are probably going to have a lot of calls to skb_end_pointer -
skb->head.  Instead of running all over the place doing that it would make
more sense to just make it a separate inline skb_end_offset(skb) that way
we can return the correct value without having gcc having to do all the
optimization to cancel out skb->head - skb->head.

Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/atm/ambassador.c
drivers/atm/idt77252.c
drivers/net/wimax/i2400m/usb-rx.c
drivers/staging/octeon/ethernet-tx.c
include/linux/skbuff.h
net/core/skbuff.c