Lines Matching refs:group
43 struct fst_group *group = NULL; in fst_attach() local
53 group = g; in fst_attach()
58 if (!group) { in fst_attach()
59 group = fst_group_create(cfg->group_id); in fst_attach()
60 if (!group) { in fst_attach()
68 iface = fst_iface_create(group, ifname, own_addr, iface_obj, cfg); in fst_attach()
70 fst_printf_group(group, MSG_ERROR, "cannot create iface for %s", in fst_attach()
73 fst_group_delete(group); in fst_attach()
77 fst_group_attach_iface(group, iface); in fst_attach()
78 fst_group_update_ie(group); in fst_attach()
92 struct fst_group *group = fst_iface_get_group(iface); in fst_detach() local
95 fst_group_get_id(group)); in fst_detach()
98 fst_group_detach_iface(group, iface); in fst_detach()
100 fst_group_update_ie(group); in fst_detach()
101 fst_group_delete_if_empty(group); in fst_detach()
117 struct fst_group *group; in fst_global_deinit() local
124 while ((group = fst_first_group()) != NULL) in fst_global_deinit()
125 fst_group_delete(group); in fst_global_deinit()