aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorHagen Paul Pfeifer <hagen@jauu.net>2011-02-25 00:45:19 -0500
committerDavid S. Miller <davem@davemloft.net>2011-02-25 17:00:22 -0500
commite9476e95d8707d1567d1af60df2c1f19630219a3 (patch)
tree54f6de320be67fe161f65e2c472664ed6d1be0d9 /net/ipv6
parent96d796a38e9ec9a7c04a6cda3fc15d79efebb008 (diff)
ipv6: variable next is never used in this function
Signed-off-by: Hagen Paul Pfeifer <hagen@jauu.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/route.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index f786aed02a6e..7e9443f835f9 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -1075,11 +1075,9 @@ out:
1075 1075
1076int icmp6_dst_gc(void) 1076int icmp6_dst_gc(void)
1077{ 1077{
1078 struct dst_entry *dst, *next, **pprev; 1078 struct dst_entry *dst, **pprev;
1079 int more = 0; 1079 int more = 0;
1080 1080
1081 next = NULL;
1082
1083 spin_lock_bh(&icmp6_dst_lock); 1081 spin_lock_bh(&icmp6_dst_lock);
1084 pprev = &icmp6_dst_gc_list; 1082 pprev = &icmp6_dst_gc_list;
1085 1083