Lines Matching refs:fnhe
175 struct fib_nh_exception *fnhe; in free_nh_exceptions() local
177 fnhe = rcu_dereference_protected(hash[i].chain, 1); in free_nh_exceptions()
178 while (fnhe) { in free_nh_exceptions()
181 next = rcu_dereference_protected(fnhe->fnhe_next, 1); in free_nh_exceptions()
183 rt_fibinfo_free(&fnhe->fnhe_rth_input); in free_nh_exceptions()
184 rt_fibinfo_free(&fnhe->fnhe_rth_output); in free_nh_exceptions()
186 kfree(fnhe); in free_nh_exceptions()
188 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()
1945 fnhe; in fib_nhc_update_mtu()
1946 fnhe = rcu_dereference_protected(fnhe->fnhe_next, 1)) { in fib_nhc_update_mtu()
1947 if (fnhe->fnhe_mtu_locked) { in fib_nhc_update_mtu()
1948 if (new <= fnhe->fnhe_pmtu) { in fib_nhc_update_mtu()
1949 fnhe->fnhe_pmtu = new; in fib_nhc_update_mtu()
1950 fnhe->fnhe_mtu_locked = false; in fib_nhc_update_mtu()
1952 } else if (new < fnhe->fnhe_pmtu || in fib_nhc_update_mtu()
1953 orig == fnhe->fnhe_pmtu) { in fib_nhc_update_mtu()
1954 fnhe->fnhe_pmtu = new; in fib_nhc_update_mtu()