aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/ipv4/route.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index ad6eadd12b4a..f9654f2ae5b3 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -294,7 +294,8 @@ static struct rtable *rt_cache_get_first(struct rt_cache_iter_state *st)
294 return r; 294 return r;
295} 295}
296 296
297static struct rtable *rt_cache_get_next(struct rt_cache_iter_state *st, struct rtable *r) 297static struct rtable *__rt_cache_get_next(struct rt_cache_iter_state *st,
298 struct rtable *r)
298{ 299{
299 r = r->u.dst.rt_next; 300 r = r->u.dst.rt_next;
300 while (!r) { 301 while (!r) {
@@ -307,16 +308,23 @@ static struct rtable *rt_cache_get_next(struct rt_cache_iter_state *st, struct r
307 return rcu_dereference(r); 308 return rcu_dereference(r);
308} 309}
309 310
311static struct rtable *rt_cache_get_next(struct rt_cache_iter_state *st,
312 struct rtable *r)
313{
314 while ((r = __rt_cache_get_next(st, r)) != NULL) {
315 if (r->rt_genid == st->genid)
316 break;
317 }
318 return r;
319}
320
310static struct rtable *rt_cache_get_idx(struct rt_cache_iter_state *st, loff_t pos) 321static struct rtable *rt_cache_get_idx(struct rt_cache_iter_state *st, loff_t pos)
311{ 322{
312 struct rtable *r = rt_cache_get_first(st); 323 struct rtable *r = rt_cache_get_first(st);
313 324
314 if (r) 325 if (r)
315 while (pos && (r = rt_cache_get_next(st, r))) { 326 while (pos && (r = rt_cache_get_next(st, r)))
316 if (r->rt_genid != st->genid)
317 continue;
318 --pos; 327 --pos;
319 }
320 return pos ? NULL : r; 328 return pos ? NULL : r;
321} 329}
322 330