Skip to content

Commit

Permalink
ndisc: Reset skb->trasport_headner inside ndisc_alloc_send_skb().
Browse files Browse the repository at this point in the history
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
YOSHIFUJI Hideaki / 吉藤英明 authored and David S. Miller committed Jan 21, 2013
1 parent 527a150 commit 5135e63
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions net/ipv6/ndisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,7 @@ static struct sk_buff *ndisc_alloc_skb(struct net_device *dev,
skb->dev = dev;

skb_reserve(skb, hlen + sizeof(struct ipv6hdr));
skb_reset_transport_header(skb);

return skb;
}
Expand Down Expand Up @@ -438,7 +439,6 @@ static struct sk_buff *ndisc_build_skb(struct net_device *dev,
if (!skb)
return NULL;

skb->transport_header = skb->tail;
skb_put(skb, len);

hdr = (struct icmp6hdr *)skb_transport_header(skb);
Expand Down Expand Up @@ -1479,7 +1479,6 @@ void ndisc_send_redirect(struct sk_buff *skb, const struct in6_addr *target)
if (!buff)
goto release;

skb_set_transport_header(buff, skb_tail_pointer(buff) - buff->data);
skb_put(buff, len);
msg = (struct rd_msg *)icmp6_hdr(buff);

Expand Down

0 comments on commit 5135e63

Please sign in to comment.