Home
last modified time | relevance | path

Searched refs:fnhe (Results 1 – 2 of 2) sorted by relevance

/net/ipv4/
Droute.c595 static void fnhe_flush_routes(struct fib_nh_exception *fnhe) in fnhe_flush_routes() argument
599 rt = rcu_dereference(fnhe->fnhe_rth_input); in fnhe_flush_routes()
601 RCU_INIT_POINTER(fnhe->fnhe_rth_input, NULL); in fnhe_flush_routes()
605 rt = rcu_dereference(fnhe->fnhe_rth_output); in fnhe_flush_routes()
607 RCU_INIT_POINTER(fnhe->fnhe_rth_output, NULL); in fnhe_flush_routes()
616 struct fib_nh_exception *fnhe, *oldest = NULL; in fnhe_remove_oldest() local
618 for (fnhe_p = &hash->chain; ; fnhe_p = &fnhe->fnhe_next) { in fnhe_remove_oldest()
619 fnhe = rcu_dereference_protected(*fnhe_p, in fnhe_remove_oldest()
621 if (!fnhe) in fnhe_remove_oldest()
624 time_before(fnhe->fnhe_stamp, oldest->fnhe_stamp)) { in fnhe_remove_oldest()
[all …]
Dfib_semantics.c173 struct fib_nh_exception *fnhe; in free_nh_exceptions() local
175 fnhe = rcu_dereference_protected(hash[i].chain, 1); in free_nh_exceptions()
176 while (fnhe) { in free_nh_exceptions()
179 next = rcu_dereference_protected(fnhe->fnhe_next, 1); in free_nh_exceptions()
181 rt_fibinfo_free(&fnhe->fnhe_rth_input); in free_nh_exceptions()
182 rt_fibinfo_free(&fnhe->fnhe_rth_output); in free_nh_exceptions()
184 kfree(fnhe); in free_nh_exceptions()
186 fnhe = next; in free_nh_exceptions()
1942 struct fib_nh_exception *fnhe; in fib_nhc_update_mtu() local
1944 for (fnhe = rcu_dereference_protected(bucket[i].chain, 1); in fib_nhc_update_mtu()
[all …]