diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-03-11 21:39:41 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:25:01 -0400 |
commit | c14d2450cb7fe1786e2ec325172baf66922bf597 (patch) | |
tree | 1186bfb1ed197e81a1ff816a513ad69503d5d786 /net/ipv4/ip_output.c | |
parent | 878c814500b123dd61a5e211879a32e5fd932713 (diff) |
[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 'net/ipv4/ip_output.c')
-rw-r--r-- | net/ipv4/ip_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index eae228469627..15de9d43950e 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c | |||
@@ -928,9 +928,9 @@ alloc_new_skb: | |||
928 | * Find where to start putting bytes. | 928 | * Find where to start putting bytes. |
929 | */ | 929 | */ |
930 | data = skb_put(skb, fraglen); | 930 | data = skb_put(skb, fraglen); |
931 | skb->nh.raw = data + exthdrlen; | 931 | skb_set_network_header(skb, exthdrlen); |
932 | skb->h.raw = skb->nh.raw + fragheaderlen; | ||
932 | data += fragheaderlen; | 933 | data += fragheaderlen; |
933 | skb->h.raw = data + exthdrlen; | ||
934 | 934 | ||
935 | if (fraggap) { | 935 | if (fraggap) { |
936 | skb->csum = skb_copy_and_csum_bits( | 936 | skb->csum = skb_copy_and_csum_bits( |