aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/fib_hash.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2007-12-08 03:22:13 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 17:57:00 -0500
commitc17860a039bbde134324ad6f9331500635f5799d (patch)
tree0edd5f21bd2494d2b7bfd79a67d68888afb3c9f4 /net/ipv4/fib_hash.c
parent7e5449c21562f1554d2c355db1ec9d3e4f434288 (diff)
[IPV4]: no need pass pointer to a default into fib_detect_death
ipv4: no need pass pointer to a default into fib_detect_death Signed-off-by: Denis V. Lunev <den@openvz.org> Acked-by: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_hash.c')
-rw-r--r--net/ipv4/fib_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/fib_hash.c b/net/ipv4/fib_hash.c
index 638185eb315f..143a5213a185 100644
--- a/net/ipv4/fib_hash.c
+++ b/net/ipv4/fib_hash.c
@@ -314,7 +314,7 @@ fn_hash_select_default(struct fib_table *tb, const struct flowi *flp, struct fib
314 if (next_fi != res->fi) 314 if (next_fi != res->fi)
315 break; 315 break;
316 } else if (!fib_detect_death(fi, order, &last_resort, 316 } else if (!fib_detect_death(fi, order, &last_resort,
317 &last_idx, &fn_hash_last_dflt)) { 317 &last_idx, fn_hash_last_dflt)) {
318 if (res->fi) 318 if (res->fi)
319 fib_info_put(res->fi); 319 fib_info_put(res->fi);
320 res->fi = fi; 320 res->fi = fi;
@@ -332,7 +332,7 @@ fn_hash_select_default(struct fib_table *tb, const struct flowi *flp, struct fib
332 goto out; 332 goto out;
333 } 333 }
334 334
335 if (!fib_detect_death(fi, order, &last_resort, &last_idx, &fn_hash_last_dflt)) { 335 if (!fib_detect_death(fi, order, &last_resort, &last_idx, fn_hash_last_dflt)) {
336 if (res->fi) 336 if (res->fi)
337 fib_info_put(res->fi); 337 fib_info_put(res->fi);
338 res->fi = fi; 338 res->fi = fi;