Home
last modified time | relevance | path

Searched refs:f6i (Results 1 – 10 of 10) sorted by relevance

/linux/include/net/
H A Dip6_fib.h224 struct fib6_info *f6i; member
253 static inline void fib6_clean_expires(struct fib6_info *f6i) in fib6_clean_expires() argument
255 f6i->fib6_flags &= ~RTF_EXPIRES; in fib6_clean_expires()
256 f6i->expires = 0; in fib6_clean_expires()
262 static inline void fib6_set_expires(struct fib6_info *f6i, in fib6_set_expires() argument
265 f6i->expires = expires; in fib6_set_expires()
266 f6i->fib6_flags |= RTF_EXPIRES; in fib6_set_expires()
269 static inline bool fib6_check_expired(const struct fib6_info *f6i) in fib6_check_expired() argument
271 if (f6i->fib6_flags & RTF_EXPIRES) in fib6_check_expired()
272 return time_after(jiffies, f6i->expires); in fib6_check_expired()
[all …]
H A Dip6_route.h73 static inline bool rt6_qualify_for_ecmp(const struct fib6_info *f6i) in rt6_qualify_for_ecmp() argument
76 return !(f6i->fib6_flags & RTF_ADDRCONF) && !f6i->nh && in rt6_qualify_for_ecmp()
77 f6i->fib6_nh->fib_nh_gw_family; in rt6_qualify_for_ecmp()
128 int ip6_ins_rt(struct net *net, struct fib6_info *f6i);
129 int ip6_del_rt_reason(struct net *net, struct fib6_info *f6i,
132 int ip6_del_rt(struct net *net, struct fib6_info *f6i, bool skip_notify);
134 static inline int ip6_del_rt(struct net *net, struct fib6_info *f6i, in ip6_del_rt() argument
141 void rt6_flush_exceptions(struct fib6_info *f6i);
142 void rt6_age_exceptions(struct fib6_info *f6i, struct fib6_gc_args *gc_args,
145 static inline int ip6_route_get_saddr(struct net *net, struct fib6_info *f6i, in ip6_route_get_saddr() argument
[all …]
H A Dnexthop.h534 static inline struct net_device *fib6_info_nh_dev(struct fib6_info *f6i) in fib6_info_nh_dev() argument
538 fib6_nh = f6i->nh ? nexthop_fib6_nh(f6i->nh) : f6i->fib6_nh; in fib6_info_nh_dev()
544 struct nexthop *nh = res->f6i->nh; in nexthop_path_fib6_result()
/linux/net/ipv6/
H A Droute.c109 static size_t rt6_nlmsg_size(struct fib6_info *f6i);
442 struct fib6_info *first, *match = res->f6i; in fib6_select_path()
497 res->f6i = match; in fib6_select_path()
568 struct fib6_info *f6i = res->f6i; in rt6_device_match() local
573 if (unlikely(f6i->nh)) { in rt6_device_match()
574 nh = nexthop_fib6_nh(f6i->nh); in rt6_device_match()
575 if (nexthop_is_blackhole(f6i->nh)) in rt6_device_match()
578 nh = f6i->fib6_nh; in rt6_device_match()
584 for (spf6i = f6i; spf6i; spf6i = rcu_dereference(spf6i->fib6_next)) { in rt6_device_match()
598 res->f6i = spf6i; in rt6_device_match()
[all …]
H A Danycast.c277 static struct ifacaddr6 *aca_alloc(struct fib6_info *f6i, in aca_alloc() argument
287 fib6_info_hold(f6i); in aca_alloc()
288 aca->aca_rt = f6i; in aca_alloc()
335 struct fib6_info *f6i; in __ipv6_dev_ac_inc() local
355 f6i = addrconf_f6i_alloc(net, idev, addr, true, GFP_ATOMIC, NULL); in __ipv6_dev_ac_inc()
356 if (IS_ERR(f6i)) { in __ipv6_dev_ac_inc()
357 err = PTR_ERR(f6i); in __ipv6_dev_ac_inc()
360 aca = aca_alloc(f6i, addr); in __ipv6_dev_ac_inc()
362 fib6_info_release(f6i); in __ipv6_dev_ac_inc()
378 ip6_ins_rt(net, f6i); in __ipv6_dev_ac_inc()
H A Dip6_fib.c107 void fib6_update_sernum(struct net *net, struct fib6_info *f6i) in fib6_update_sernum() argument
111 fn = rcu_dereference_protected(f6i->fib6_node, in fib6_update_sernum()
112 lockdep_is_held(&f6i->fib6_table->tb6_lock)); in fib6_update_sernum()
149 struct fib6_info *f6i; in fib6_info_alloc() local
150 size_t sz = sizeof(*f6i); in fib6_info_alloc()
155 f6i = kzalloc(sz, gfp_flags); in fib6_info_alloc()
156 if (!f6i) in fib6_info_alloc()
160 INIT_LIST_HEAD(&f6i->fib6_siblings); in fib6_info_alloc()
161 refcount_set(&f6i->fib6_ref, 1); in fib6_info_alloc()
163 INIT_HLIST_NODE(&f6i->gc_link); in fib6_info_alloc()
[all …]
H A Daddrconf.c1081 struct fib6_info *f6i = NULL; in ipv6_add_addr() local
1132 f6i = addrconf_f6i_alloc(net, idev, cfg->pfx, false, gfp_flags, extack); in ipv6_add_addr()
1133 if (IS_ERR(f6i)) { in ipv6_add_addr()
1134 err = PTR_ERR(f6i); in ipv6_add_addr()
1135 f6i = NULL; in ipv6_add_addr()
1161 ifa->rt = f6i; in ipv6_add_addr()
1196 fib6_info_release(f6i); in ipv6_add_addr()
1277 struct fib6_info *f6i; in cleanup_prefix_route() local
1279 f6i = addrconf_get_prefix_route(del_peer ? &ifp->peer_addr : &ifp->addr, in cleanup_prefix_route()
1282 if (f6i) { in cleanup_prefix_route()
[all …]
H A Dfib6_rules.c88 if (err || res->f6i == net->ipv6.fib6_null_entry) in fib6_lookup()
194 if (!err && res->f6i != net->ipv6.fib6_null_entry) in fib6_rule_action_alt()
/linux/net/ipv4/
H A Dnexthop.c1606 struct fib6_info *f6i; in fib6_check_nh_list() local
1613 list_for_each_entry(f6i, &old->f6i_list, nh_list) { in fib6_check_nh_list()
1614 err = check_src_addr(&f6i->fib6_src.addr, extack); in fib6_check_nh_list()
2168 struct fib6_info *f6i; in __remove_nexthop_fib() local
2179 f6i = list_first_entry(&nh->f6i_list, typeof(*f6i), nh_list); in __remove_nexthop_fib()
2182 fib6_info_hold(f6i); in __remove_nexthop_fib()
2185 ip6_del_rt(net, f6i, in __remove_nexthop_fib()
2537 struct fib6_info *f6i; in __nexthop_replace_notify() local
2556 list_for_each_entry(f6i, &nh->f6i_list, nh_list) in __nexthop_replace_notify()
2557 fib6_rt_update(net, f6i, info); in __nexthop_replace_notify()
/linux/net/core/
H A Dfilter.c6589 if (unlikely(err || IS_ERR_OR_NULL(res.f6i) || in bpf_ipv6_fib_lookup()
6590 res.f6i == net->ipv6.fib6_null_entry)) in bpf_ipv6_fib_lookup()
6625 params->rt_metric = res.f6i->fib6_metric; in bpf_ipv6_fib_lookup()
6629 if (res.f6i->fib6_prefsrc.plen) { in bpf_ipv6_fib_lookup()
6630 *src = res.f6i->fib6_prefsrc.addr; in bpf_ipv6_fib_lookup()