Lines Matching refs:fnhe
171 struct fib_nh_exception *fnhe; in free_nh_exceptions() local
173 fnhe = rcu_dereference_protected(hash[i].chain, 1); in free_nh_exceptions()
174 while (fnhe) { in free_nh_exceptions()
177 next = rcu_dereference_protected(fnhe->fnhe_next, 1); in free_nh_exceptions()
179 rt_fibinfo_free(&fnhe->fnhe_rth_input); in free_nh_exceptions()
180 rt_fibinfo_free(&fnhe->fnhe_rth_output); in free_nh_exceptions()
182 kfree(fnhe); in free_nh_exceptions()
184 fnhe = next; in free_nh_exceptions()
1884 struct fib_nh_exception *fnhe; in fib_nhc_update_mtu() local
1886 for (fnhe = rcu_dereference_protected(bucket[i].chain, 1); in fib_nhc_update_mtu()
1887 fnhe; in fib_nhc_update_mtu()
1888 fnhe = rcu_dereference_protected(fnhe->fnhe_next, 1)) { in fib_nhc_update_mtu()
1889 if (fnhe->fnhe_mtu_locked) { in fib_nhc_update_mtu()
1890 if (new <= fnhe->fnhe_pmtu) { in fib_nhc_update_mtu()
1891 fnhe->fnhe_pmtu = new; in fib_nhc_update_mtu()
1892 fnhe->fnhe_mtu_locked = false; in fib_nhc_update_mtu()
1894 } else if (new < fnhe->fnhe_pmtu || in fib_nhc_update_mtu()
1895 orig == fnhe->fnhe_pmtu) { in fib_nhc_update_mtu()
1896 fnhe->fnhe_pmtu = new; in fib_nhc_update_mtu()