diff options
author | Eric Dumazet <edumazet@google.com> | 2014-09-27 20:50:56 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-29 00:35:43 +0400 |
commit | a224772db8420ecb7ce91a9ba5d535ee3a50d982 (patch) | |
tree | e8e5a42ba9b6b7cac22c469bd8a1ab496dca6daf /net/ipv6/af_inet6.c | |
parent | 24a2d43d8886f5a29c3cf108927f630c545a9a38 (diff) | |
download | linux-a224772db8420ecb7ce91a9ba5d535ee3a50d982.tar.xz |
ipv6: add a struct inet6_skb_parm param to ipv6_opt_accepted()
ipv6_opt_accepted() assumes IP6CB(skb) holds the struct inet6_skb_parm
that it needs. Lets not assume this, as TCP stack might use a different
place.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/af_inet6.c')
-rw-r--r-- | net/ipv6/af_inet6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index e4865a3ebe1d..34f726f59814 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -672,10 +672,10 @@ int inet6_sk_rebuild_header(struct sock *sk) } EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header); -bool ipv6_opt_accepted(const struct sock *sk, const struct sk_buff *skb) +bool ipv6_opt_accepted(const struct sock *sk, const struct sk_buff *skb, + const struct inet6_skb_parm *opt) { const struct ipv6_pinfo *np = inet6_sk(sk); - const struct inet6_skb_parm *opt = IP6CB(skb); if (np->rxopt.all) { if ((opt->hop && (np->rxopt.bits.hopopts || |