diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-04-25 20:55:53 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:25:16 -0400 |
commit | ea2ae17d6443abddc79480dc9f7af8feacabddc4 (patch) | |
tree | 2d6f48a5e4a40f761b5b510af9aac1fca55004cb /net/core | |
parent | badff6d01a8589a1c828b0bf118903ca38627f4e (diff) |
[SK_BUFF]: Introduce skb_transport_offset()
For the quite common 'skb->h.raw - skb->data' sequence.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dev.c | 2 | ||||
-rw-r--r-- | net/core/skbuff.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 99f15728d9cb..f7f7e5687e46 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -1156,7 +1156,7 @@ EXPORT_SYMBOL(netif_device_attach); | |||
1156 | int skb_checksum_help(struct sk_buff *skb) | 1156 | int skb_checksum_help(struct sk_buff *skb) |
1157 | { | 1157 | { |
1158 | __wsum csum; | 1158 | __wsum csum; |
1159 | int ret = 0, offset = skb->h.raw - skb->data; | 1159 | int ret = 0, offset = skb_transport_offset(skb); |
1160 | 1160 | ||
1161 | if (skb->ip_summed == CHECKSUM_COMPLETE) | 1161 | if (skb->ip_summed == CHECKSUM_COMPLETE) |
1162 | goto out_set_summed; | 1162 | goto out_set_summed; |
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 1493c95f633e..b242020c02f7 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c | |||
@@ -1348,7 +1348,7 @@ void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to) | |||
1348 | long csstart; | 1348 | long csstart; |
1349 | 1349 | ||
1350 | if (skb->ip_summed == CHECKSUM_PARTIAL) | 1350 | if (skb->ip_summed == CHECKSUM_PARTIAL) |
1351 | csstart = skb->h.raw - skb->data; | 1351 | csstart = skb_transport_offset(skb); |
1352 | else | 1352 | else |
1353 | csstart = skb_headlen(skb); | 1353 | csstart = skb_headlen(skb); |
1354 | 1354 | ||