Lines Matching refs:nla
165 struct nlattr *nla = nlmsg_reserve_data(nw, nla_len, struct nlattr); in dump_rc_nhop_mtu() local
167 if (nla == NULL) in dump_rc_nhop_mtu()
169 nla->nla_type = NL_RTA_METRICS; in dump_rc_nhop_mtu()
170 nla->nla_len = nla_len; in dump_rc_nhop_mtu()
171 nla++; in dump_rc_nhop_mtu()
172 nla->nla_type = NL_RTAX_MTU; in dump_rc_nhop_mtu()
173 nla->nla_len = sizeof(struct nlattr) + sizeof(uint32_t); in dump_rc_nhop_mtu()
174 *((uint32_t *)(nla + 1)) = nh->nh_mtu; in dump_rc_nhop_mtu()
434 nlattr_get_multipath(struct nlattr *nla, struct nl_pstate *npt, in nlattr_get_multipath() argument
443 data_len = nla->nla_len - sizeof(struct nlattr); in nlattr_get_multipath()
449 for (rtnh = (struct rtnexthop *)(nla + 1); data_len > 0; ) { in nlattr_get_multipath()