aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/route.c
diff options
context:
space:
mode:
authorfan.du <fan.du@windriver.com>2013-07-22 14:20:12 +0800
committerDavid S. Miller <davem@davemloft.net>2013-07-24 14:24:56 -0700
commit86a37def2bba8d22f8b512e7c8a0f6f6e197728c (patch)
tree216b3aded2758d5b7af6ee0356d931081d60ef19 /net/ipv6/route.c
parentvti: switch to new ip tunnel code (diff)
downloadlinux-dev-86a37def2bba8d22f8b512e7c8a0f6f6e197728c.tar.xz
linux-dev-86a37def2bba8d22f8b512e7c8a0f6f6e197728c.zip
net ipv6: Remove rebundant rt6i_nsiblings initialization
Seting rt->rt6i_nsiblings to zero is rebundant, because above memset zeroed the rest of rt excluding the first dst memember. Signed-off-by: Fan Du <fan.du@windriver.com> Acked-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org> Cc: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> Cc: James Morris <jmorris@namei.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r--net/ipv6/route.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index a8c891aa2464..74ab1f74abcd 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -285,7 +285,6 @@ static inline struct rt6_info *ip6_dst_alloc(struct net *net,
rt6_init_peer(rt, table ? &table->tb6_peers : net->ipv6.peers);
rt->rt6i_genid = rt_genid(net);
INIT_LIST_HEAD(&rt->rt6i_siblings);
- rt->rt6i_nsiblings = 0;
}
return rt;
}