diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-01-07 19:15:05 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-01-07 19:15:05 +0000 |
commit | a2c0f039a9d32bbb9c8b4a472fafbf3cb7f8ca0f (patch) | |
tree | 1c14141ec4e838be42de26b9cf0074758f2439c9 /package/mac80211/patches/200-mac80211_ibss_fix.patch | |
parent | dee16bb67ae841d8340492b7ce99155886d2dca1 (diff) | |
download | upstream-a2c0f039a9d32bbb9c8b4a472fafbf3cb7f8ca0f.tar.gz upstream-a2c0f039a9d32bbb9c8b4a472fafbf3cb7f8ca0f.tar.bz2 upstream-a2c0f039a9d32bbb9c8b4a472fafbf3cb7f8ca0f.zip |
mac80211: update to compat-wireless 2010-01-07 (unoffical snapshot, official ones are not working yet)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19063 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/200-mac80211_ibss_fix.patch')
-rw-r--r-- | package/mac80211/patches/200-mac80211_ibss_fix.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/package/mac80211/patches/200-mac80211_ibss_fix.patch b/package/mac80211/patches/200-mac80211_ibss_fix.patch deleted file mode 100644 index c2fb1d7a25..0000000000 --- a/package/mac80211/patches/200-mac80211_ibss_fix.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/net/mac80211/ibss.c -+++ b/net/mac80211/ibss.c -@@ -382,6 +382,7 @@ static void ieee80211_rx_bss_info(struct - struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata, - u8 *bssid,u8 *addr, u32 supp_rates) - { -+ struct ieee80211_if_ibss *ifibss = &sdata->u.ibss; - struct ieee80211_local *local = sdata->local; - struct sta_info *sta; - int band = local->hw.conf.channel->band; -@@ -397,6 +398,9 @@ struct sta_info *ieee80211_ibss_add_sta( - return NULL; - } - -+ if (ifibss->state == IEEE80211_IBSS_MLME_SEARCH) -+ return NULL; -+ - if (compare_ether_addr(bssid, sdata->u.ibss.bssid)) - return NULL; - |