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 | fe32f100a8cd9fd6f65d74632a0cdc9fb57c2dd9 (patch) | |
tree | bf23be761a1a1f263cc95903ce34be26489fdc03 /package/mac80211/patches/200-mac80211_ibss_fix.patch | |
parent | c97341b7614c25b30f19856e300718114ab1435f (diff) | |
download | mtk-20170518-fe32f100a8cd9fd6f65d74632a0cdc9fb57c2dd9.zip mtk-20170518-fe32f100a8cd9fd6f65d74632a0cdc9fb57c2dd9.tar.gz mtk-20170518-fe32f100a8cd9fd6f65d74632a0cdc9fb57c2dd9.tar.bz2 |
mac80211: update to compat-wireless 2010-01-07 (unoffical snapshot, official ones are not working yet)
SVN-Revision: 19063
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 c2fb1d7..0000000 --- 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; - |