Lines Matching refs:rtm
163 struct rtmsg *rtm; in fill_route() local
166 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*rtm), 0); in fill_route()
170 rtm = nlmsg_data(nlh); in fill_route()
171 rtm->rtm_family = AF_PHONET; in fill_route()
172 rtm->rtm_dst_len = 6; in fill_route()
173 rtm->rtm_src_len = 0; in fill_route()
174 rtm->rtm_tos = 0; in fill_route()
175 rtm->rtm_table = RT_TABLE_MAIN; in fill_route()
176 rtm->rtm_protocol = RTPROT_STATIC; in fill_route()
177 rtm->rtm_scope = RT_SCOPE_UNIVERSE; in fill_route()
178 rtm->rtm_type = RTN_UNICAST; in fill_route()
179 rtm->rtm_flags = 0; in fill_route()
224 struct rtmsg *rtm; in route_doit() local
236 err = nlmsg_parse_deprecated(nlh, sizeof(*rtm), tb, RTA_MAX, in route_doit()
241 rtm = nlmsg_data(nlh); in route_doit()
242 if (rtm->rtm_table != RT_TABLE_MAIN || rtm->rtm_type != RTN_UNICAST) in route_doit()