浏览代码

mac80211: fix mesh_sta_info_get() reshuffle damage

Before "mac80211: clean up mesh sta allocation warning"
was applied, mesh_sta_info_get() was reshuffled to please
sparse. As a result we neglect to initialize newly created
STAs. Fix this.

Signed-off-by: Thomas Pedersen <thomas@cozybit.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Thomas Pedersen 12 年之前
父节点
当前提交
3b4797bce0
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      net/mac80211/mesh_plink.c

+ 2 - 0
net/mac80211/mesh_plink.c

@@ -408,6 +408,8 @@ mesh_sta_info_get(struct ieee80211_sub_if_data *sdata,
 			return NULL;
 			return NULL;
 		}
 		}
 
 
+		mesh_sta_info_init(sdata, sta, elems, true);
+
 		if (sta_info_insert_rcu(sta))
 		if (sta_info_insert_rcu(sta))
 			return NULL;
 			return NULL;
 	}
 	}