summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Pedersen <thomas@cozybit.com>2013-01-27 01:00:02 (GMT)
committerJohannes Berg <johannes.berg@intel.com>2013-01-28 12:15:34 (GMT)
commit3b4797bce0050570e84bedd10e1b14e9320a3551 (patch)
tree2ef341cd663a3d781cd8200b76d13d2fc7213cac
parent77765eaf5cfb6b8dd98ec8b54b411d74ff6095f1 (diff)
downloadlinux-fsl-qoriq-3b4797bce0050570e84bedd10e1b14e9320a3551.tar.xz
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>
-rw-r--r--net/mac80211/mesh_plink.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/mesh_plink.c b/net/mac80211/mesh_plink.c
index 4e1d406..81e6126 100644
--- a/net/mac80211/mesh_plink.c
+++ b/net/mac80211/mesh_plink.c
@@ -408,6 +408,8 @@ mesh_sta_info_get(struct ieee80211_sub_if_data *sdata,
return NULL;
}
+ mesh_sta_info_init(sdata, sta, elems, true);
+
if (sta_info_insert_rcu(sta))
return NULL;
}