diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-07-16 17:41:51 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-07-16 17:41:51 +0000 |
commit | 873713bcf141df2115a2fa4131800be730d02377 (patch) | |
tree | 5d8340c8b2db8ff8aea42270e96073ea41c46e11 /package/madwifi/patches | |
parent | e7d72108f9be5eb4e620cf2c5fd4031c1bc942fa (diff) | |
download | upstream-873713bcf141df2115a2fa4131800be730d02377.tar.gz upstream-873713bcf141df2115a2fa4131800be730d02377.tar.bz2 upstream-873713bcf141df2115a2fa4131800be730d02377.zip |
madwifi: fix a race condition in the ibss merge
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16870 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/patches')
-rw-r--r-- | package/madwifi/patches/441-fix_ibss_node_handling.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/madwifi/patches/441-fix_ibss_node_handling.patch b/package/madwifi/patches/441-fix_ibss_node_handling.patch index 13f15fb727..d64ebf0592 100644 --- a/package/madwifi/patches/441-fix_ibss_node_handling.patch +++ b/package/madwifi/patches/441-fix_ibss_node_handling.patch @@ -78,3 +78,13 @@ if (ni == NULL) return; allocbs = 1; +--- a/net80211/ieee80211_node.c ++++ b/net80211/ieee80211_node.c +@@ -601,6 +601,7 @@ ieee80211_ibss_merge(struct ieee80211_no + ic->ic_flags & IEEE80211_F_SHPREAMBLE ? "short" : "long", + ic->ic_flags & IEEE80211_F_SHSLOT ? "short" : "long", + ic->ic_flags & IEEE80211_F_USEPROT ? ", protection" : ""); ++ ieee80211_node_table_reset(&vap->iv_ic->ic_sta, vap); + return ieee80211_sta_join1(ieee80211_ref_node(ni)); + } + EXPORT_SYMBOL(ieee80211_ibss_merge); |