summaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo2007-03-12 02:39:41 +0100
committerDavid S. Miller2007-04-26 07:25:01 +0200
commitc14d2450cb7fe1786e2ec325172baf66922bf597 (patch)
tree1186bfb1ed197e81a1ff816a513ad69503d5d786 /include/linux/skbuff.h
parent[SK_BUFF] ipmr: Another skb_push related conversion to skb_reset_network_header (diff)
downloadkernel-qcow2-linux-c14d2450cb7fe1786e2ec325172baf66922bf597.tar.gz
kernel-qcow2-linux-c14d2450cb7fe1786e2ec325172baf66922bf597.tar.xz
kernel-qcow2-linux-c14d2450cb7fe1786e2ec325172baf66922bf597.zip
[SK_BUFF]: Introduce skb_set_network_header
For the cases where the network header is being set to a offset from skb->data. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 76d30f34b986..870438fba93f 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -970,6 +970,11 @@ static inline void skb_reset_network_header(struct sk_buff *skb)
skb->nh.raw = skb->data;
}
+static inline void skb_set_network_header(struct sk_buff *skb, const int offset)
+{
+ skb->nh.raw = skb->data + offset;
+}
+
static inline int skb_network_offset(const struct sk_buff *skb)
{
return skb->nh.raw - skb->data;