Searched refs:dst_opts (Results 1 – 1 of 1) sorted by relevance
258 struct team_option **dst_opts; in __team_options_register() local261 dst_opts = kcalloc(option_count, sizeof(struct team_option *), in __team_options_register()263 if (!dst_opts) in __team_options_register()270 dst_opts[i] = kmemdup(option, sizeof(*option), GFP_KERNEL); in __team_options_register()271 if (!dst_opts[i]) { in __team_options_register()278 err = __team_option_inst_add_option(team, dst_opts[i]); in __team_options_register()281 list_add_tail(&dst_opts[i]->list, &team->option_list); in __team_options_register()284 kfree(dst_opts); in __team_options_register()289 __team_option_inst_del_option(team, dst_opts[i]); in __team_options_register()294 kfree(dst_opts[i]); in __team_options_register()[all …]