Home
last modified time | relevance | path

Searched refs:dst_opts (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/drivers/net/team/
H A Dteam.c254 struct team_option **dst_opts; in __team_options_register() local
257 dst_opts = kcalloc(option_count, sizeof(struct team_option *), in __team_options_register()
259 if (!dst_opts) in __team_options_register()
266 dst_opts[i] = kmemdup(option, sizeof(*option), GFP_KERNEL); in __team_options_register()
267 if (!dst_opts[i]) { in __team_options_register()
274 err = __team_option_inst_add_option(team, dst_opts[i]); in __team_options_register()
277 list_add_tail(&dst_opts[i]->list, &team->option_list); in __team_options_register()
280 kfree(dst_opts); in __team_options_register()
285 __team_option_inst_del_option(team, dst_opts[i]); in __team_options_register()
286 list_del(&dst_opts[i]->list); in __team_options_register()
[all …]