summaryrefslogtreecommitdiffstats
path: root/net/ipv6/route.c
diff options
context:
space:
mode:
authorVille Nuorvala2006-10-17 07:11:11 +0200
committerDavid S. Miller2006-10-19 04:55:28 +0200
commite0eda7bbaae48ea56f1f1943ea90df72d459b9b0 (patch)
treefc2f0c3c98a201d337a3ef9c67ff44f573b28a65 /net/ipv6/route.c
parent[IPV6]: Make sure error handling is done when calling ip6_route_output(). (diff)
downloadkernel-qcow2-linux-e0eda7bbaae48ea56f1f1943ea90df72d459b9b0.tar.gz
kernel-qcow2-linux-e0eda7bbaae48ea56f1f1943ea90df72d459b9b0.tar.xz
kernel-qcow2-linux-e0eda7bbaae48ea56f1f1943ea90df72d459b9b0.zip
[IPV6]: Clean up BACKTRACK().
The fn check is unnecessary as fn can never be NULL in BACKTRACK(). Signed-off-by: Ville Nuorvala <vnuorval@tcs.hut.fi> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r--net/ipv6/route.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index a1b0f075462e..263c057d17c6 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -484,7 +484,7 @@ int rt6_route_rcv(struct net_device *dev, u8 *opt, int len,
do { \
if (rt == &ip6_null_entry) { \
struct fib6_node *pn; \
- while (fn) { \
+ while (1) { \
if (fn->fn_flags & RTN_TL_ROOT) \
goto out; \
pn = fn->parent; \