Lines Matching refs:wmr
3004 wlan_mesh_add_route(struct wlan_iface *wif, struct wlan_mesh_route *wmr) in wlan_mesh_add_route() argument
3010 wmr->imroute.imr_dest, &argsize, 1) < 0) in wlan_mesh_add_route()
3013 wmr->mroute_status = RowStatus_active; in wlan_mesh_add_route()
3019 wlan_mesh_del_route(struct wlan_iface *wif, struct wlan_mesh_route *wmr) in wlan_mesh_del_route() argument
3025 wmr->imroute.imr_dest, &argsize, 1) < 0) in wlan_mesh_del_route()
3028 wmr->mroute_status = RowStatus_destroy; in wlan_mesh_del_route()
3040 struct wlan_mesh_route *wmr; in wlan_mesh_get_routelist() local
3050 if ((wmr = wlan_mesh_new_route(rt->imr_dest)) == NULL) in wlan_mesh_get_routelist()
3052 memcpy(&wmr->imroute, rt, sizeof(*rt)); in wlan_mesh_get_routelist()
3053 wmr->mroute_status = RowStatus_active; in wlan_mesh_get_routelist()
3054 if (wlan_mesh_add_rtentry(wif, wmr) < 0) in wlan_mesh_get_routelist()
3055 wlan_mesh_free_route(wmr); in wlan_mesh_get_routelist()