diff options
author | Eric Dumazet <edumazet@google.com> | 2015-09-25 07:39:12 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-25 13:00:37 -0700 |
commit | 3aef934f4d4b97532c333d9c1f5f73fb80aeb459 (patch) | |
tree | 2b818a5dfde0738ff8d034891c0be22bbaa642a6 /include/net/ipv6.h | |
parent | e5895bc600ccba1fde4ea0741813f9c33b5b4021 (diff) | |
download | linux-3aef934f4d4b97532c333d9c1f5f73fb80aeb459.tar.gz linux-3aef934f4d4b97532c333d9c1f5f73fb80aeb459.tar.bz2 linux-3aef934f4d4b97532c333d9c1f5f73fb80aeb459.zip |
ipv6: constify ip6_dst_lookup_{flow|tail}() sock arguments
ip6_dst_lookup_flow() and ip6_dst_lookup_tail() do not touch
socket, lets add a const qualifier.
This will permit the same change in inet6_csk_route_req()
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ipv6.h')
-rw-r--r-- | include/net/ipv6.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 384a93cf07d6..9877b68ad207 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h @@ -849,7 +849,7 @@ static inline struct sk_buff *ip6_finish_skb(struct sock *sk) int ip6_dst_lookup(struct net *net, struct sock *sk, struct dst_entry **dst, struct flowi6 *fl6); -struct dst_entry *ip6_dst_lookup_flow(struct sock *sk, struct flowi6 *fl6, +struct dst_entry *ip6_dst_lookup_flow(const struct sock *sk, struct flowi6 *fl6, const struct in6_addr *final_dst); struct dst_entry *ip6_sk_dst_lookup_flow(struct sock *sk, struct flowi6 *fl6, const struct in6_addr *final_dst); |