Commit 6b7fdc3a authored by Guillaume Chazarain's avatar Guillaume Chazarain Committed by David S. Miller

[IPV6]: Clean skb cb on IPv6 input.

Clear the accumulated junk in IP6CB when starting to handle an IPV6
packet.
Signed-off-by: default avatarGuillaume Chazarain <guichaz@yahoo.fr>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d5af981e
...@@ -71,6 +71,8 @@ int ipv6_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt ...@@ -71,6 +71,8 @@ int ipv6_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt
goto out; goto out;
} }
memset(IP6CB(skb), 0, sizeof(struct inet6_skb_parm));
/* /*
* Store incoming device index. When the packet will * Store incoming device index. When the packet will
* be queued, we cannot refer to skb->dev anymore. * be queued, we cannot refer to skb->dev anymore.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment