Lines Matching defs:alloc
355 struct sta_link_alloc *alloc = NULL;
372 alloc = container_of(link_sta, typeof(*alloc), info);
377 if (alloc) {
378 sta_info_free_link(&alloc->info);
379 kfree_rcu(alloc, rcu_head);
585 /* TODO link specific alloc and assignments for MLO Link STA */
2877 struct sta_link_alloc *alloc;
2890 alloc = kzalloc(sizeof(*alloc), GFP_KERNEL);
2891 if (!alloc)
2894 ret = sta_info_alloc_link(sdata->local, &alloc->info, GFP_KERNEL);
2896 kfree(alloc);
2900 sta_info_add_link(sta, link_id, &alloc->info, &alloc->sta);
2902 ieee80211_link_sta_debugfs_add(&alloc->info);