Searched refs:rtnh (Results 1 – 7 of 7) sorted by relevance
/openbmc/linux/include/net/ |
H A D | rtnh.h | 8 static inline int rtnh_ok(const struct rtnexthop *rtnh, int remaining) in rtnh_ok() argument 10 return remaining >= (int)sizeof(*rtnh) && in rtnh_ok() 11 rtnh->rtnh_len >= sizeof(*rtnh) && in rtnh_ok() 12 rtnh->rtnh_len <= remaining; in rtnh_ok() 15 static inline struct rtnexthop *rtnh_next(const struct rtnexthop *rtnh, in rtnh_next() argument 18 int totlen = NLA_ALIGN(rtnh->rtnh_len); in rtnh_next() 21 return (struct rtnexthop *) ((char *) rtnh + totlen); in rtnh_next() 24 static inline struct nlattr *rtnh_attrs(const struct rtnexthop *rtnh) in rtnh_attrs() argument 26 return (struct nlattr *) ((char *) rtnh + NLA_ALIGN(sizeof(*rtnh))); in rtnh_attrs() 29 static inline int rtnh_attrlen(const struct rtnexthop *rtnh) in rtnh_attrlen() argument [all …]
|
/openbmc/linux/net/ipv4/ |
H A D | fib_semantics.c | 664 rtnh = rtnh_next(rtnh, &remaining); in fib_count_nexthops() 768 rtnh = rtnh_next(rtnh, &remaining); in fib_get_nhs() 881 struct rtnexthop *rtnh; in fib_nh_match() local 934 rtnh = cfg->fc_mp; in fib_nh_match() 943 if (rtnh->rtnh_ifindex && rtnh->rtnh_ifindex != nh->fib_nh_oif) in fib_nh_match() 1004 rtnh = rtnh_next(rtnh, &remaining); in fib_nh_match() 1710 struct rtnexthop *rtnh; in fib_add_nexthop() local 1713 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh)); in fib_add_nexthop() 1714 if (!rtnh) in fib_add_nexthop() 1723 rtnh->rtnh_flags = flags; in fib_add_nexthop() [all …]
|
H A D | ipmr.c | 2642 struct rtnexthop *rtnh = nla_data(nla); in ipmr_nla_get_ttls() local 2645 while (rtnh_ok(rtnh, remaining)) { in ipmr_nla_get_ttls() 2646 mfcc->mfcc_ttls[vifi] = rtnh->rtnh_hops; in ipmr_nla_get_ttls() 2649 rtnh = rtnh_next(rtnh, &remaining); in ipmr_nla_get_ttls()
|
/openbmc/linux/net/core/ |
H A D | lwtunnel.c | 190 struct rtnexthop *rtnh = (struct rtnexthop *)attr; in lwtunnel_valid_encap_type_attr() local 196 while (rtnh_ok(rtnh, remaining)) { in lwtunnel_valid_encap_type_attr() 197 attrlen = rtnh_attrlen(rtnh); in lwtunnel_valid_encap_type_attr() 199 attrs = rtnh_attrs(rtnh); in lwtunnel_valid_encap_type_attr() 214 rtnh = rtnh_next(rtnh, &remaining); in lwtunnel_valid_encap_type_attr()
|
/openbmc/linux/include/uapi/linux/ |
H A D | rtnetlink.h | 433 #define RTNH_OK(rtnh,len) ((rtnh)->rtnh_len >= sizeof(struct rtnexthop) && \ argument 434 ((int)(rtnh)->rtnh_len) <= (len)) 435 #define RTNH_NEXT(rtnh) ((struct rtnexthop*)(((char*)(rtnh)) + RTNH_ALIGN((rtnh)->rtnh_len))) argument 438 #define RTNH_DATA(rtnh) ((struct rtattr*)(((char*)(rtnh)) + RTNH_LENGTH(0))) argument
|
/openbmc/linux/net/mpls/ |
H A D | af_mpls.c | 846 while (rtnh_ok(rtnh, remaining)) { in mpls_count_nexthops() 851 attrlen = rtnh_attrlen(rtnh); in mpls_count_nexthops() 878 rtnh = rtnh_next(rtnh, &remaining); in mpls_count_nexthops() 902 if (!rtnh_ok(rtnh, remaining)) in mpls_nh_build_multi() 908 if (rtnh->rtnh_hops || rtnh->rtnh_flags) in mpls_nh_build_multi() 911 attrlen = rtnh_attrlen(rtnh); in mpls_nh_build_multi() 928 rtnh = rtnh_next(rtnh, &remaining); in mpls_nh_build_multi() 2025 struct rtnexthop *rtnh; in mpls_dump_route() local 2039 rtnh = nla_reserve_nohdr(skb, sizeof(*rtnh)); in mpls_dump_route() 2040 if (!rtnh) in mpls_dump_route() [all …]
|
/openbmc/linux/net/ipv6/ |
H A D | route.c | 5244 struct rtnexthop *rtnh; in ip6_route_multipath_add() local 5262 rtnh = (struct rtnexthop *)cfg->fc_mp; in ip6_route_multipath_add() 5267 while (rtnh_ok(rtnh, remaining)) { in ip6_route_multipath_add() 5269 if (rtnh->rtnh_ifindex) in ip6_route_multipath_add() 5272 attrlen = rtnh_attrlen(rtnh); in ip6_route_multipath_add() 5319 rtnh = rtnh_next(rtnh, &remaining); in ip6_route_multipath_add() 5428 struct rtnexthop *rtnh; in ip6_route_multipath_del() local 5438 while (rtnh_ok(rtnh, remaining)) { in ip6_route_multipath_del() 5440 if (rtnh->rtnh_ifindex) in ip6_route_multipath_del() 5443 attrlen = rtnh_attrlen(rtnh); in ip6_route_multipath_del() [all …]
|