Lines Matching refs:fnhe
164 struct fib_nh_exception *fnhe; in free_nh_exceptions() local
166 fnhe = rcu_dereference_protected(hash[i].chain, 1); in free_nh_exceptions()
167 while (fnhe) { in free_nh_exceptions()
170 next = rcu_dereference_protected(fnhe->fnhe_next, 1); in free_nh_exceptions()
172 rt_fibinfo_free(&fnhe->fnhe_rth_input); in free_nh_exceptions()
173 rt_fibinfo_free(&fnhe->fnhe_rth_output); in free_nh_exceptions()
175 kfree(fnhe); in free_nh_exceptions()
177 fnhe = next; in free_nh_exceptions()
1899 struct fib_nh_exception *fnhe; in fib_nhc_update_mtu() local
1901 for (fnhe = rcu_dereference_protected(bucket[i].chain, 1); in fib_nhc_update_mtu()
1902 fnhe; in fib_nhc_update_mtu()
1903 fnhe = rcu_dereference_protected(fnhe->fnhe_next, 1)) { in fib_nhc_update_mtu()
1904 if (fnhe->fnhe_mtu_locked) { in fib_nhc_update_mtu()
1905 if (new <= fnhe->fnhe_pmtu) { in fib_nhc_update_mtu()
1906 fnhe->fnhe_pmtu = new; in fib_nhc_update_mtu()
1907 fnhe->fnhe_mtu_locked = false; in fib_nhc_update_mtu()
1909 } else if (new < fnhe->fnhe_pmtu || in fib_nhc_update_mtu()
1910 orig == fnhe->fnhe_pmtu) { in fib_nhc_update_mtu()
1911 fnhe->fnhe_pmtu = new; in fib_nhc_update_mtu()