aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/inet6_connection_sock.c
diff options
context:
space:
mode:
authorKrishna Kumar <krkumar2@in.ibm.com>2009-10-19 23:46:32 +0000
committerDavid S. Miller <davem@davemloft.net>2009-10-20 18:55:45 -0700
commitf04c8276248d3dd3e15a9a72f9711ba5e4069049 (patch)
tree42a6fe8fc345a787ebcda6dbb4dc4bdff4dd1f09 /net/ipv6/inet6_connection_sock.c
parente022f0b4a03f4fff9323b509df023b8af635716e (diff)
downloadkernel_samsung_smdk4412-f04c8276248d3dd3e15a9a72f9711ba5e4069049.zip
kernel_samsung_smdk4412-f04c8276248d3dd3e15a9a72f9711ba5e4069049.tar.gz
kernel_samsung_smdk4412-f04c8276248d3dd3e15a9a72f9711ba5e4069049.tar.bz2
net: IPv6 changes
IPv6: Reset sk_tx_queue_mapping when dst_cache is reset. Use existing macro to do the work. Signed-off-by: Krishna Kumar <krkumar2@in.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/inet6_connection_sock.c')
-rw-r--r--net/ipv6/inet6_connection_sock.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv6/inet6_connection_sock.c b/net/ipv6/inet6_connection_sock.c
index 19dceef..3516e6f 100644
--- a/net/ipv6/inet6_connection_sock.c
+++ b/net/ipv6/inet6_connection_sock.c
@@ -168,8 +168,7 @@ struct dst_entry *__inet6_csk_dst_check(struct sock *sk, u32 cookie)
if (dst) {
struct rt6_info *rt = (struct rt6_info *)dst;
if (rt->rt6i_flow_cache_genid != atomic_read(&flow_cache_genid)) {
- sk->sk_dst_cache = NULL;
- dst_release(dst);
+ __sk_dst_reset(sk);
dst = NULL;
}
}