diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-01 09:57:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-01 09:57:56 +0000 |
commit | bf508f06db4bc41d2e2c62992c65ec31ddab2d13 (patch) | |
tree | 3c803a17b616b8ced97fc54fb86a7cd3b4fd7f89 | |
parent | 90d1112ed3af51596fd1f7646db88d9544e01815 (diff) | |
download | upstream-bf508f06db4bc41d2e2c62992c65ec31ddab2d13.tar.gz upstream-bf508f06db4bc41d2e2c62992c65ec31ddab2d13.tar.bz2 upstream-bf508f06db4bc41d2e2c62992c65ec31ddab2d13.zip |
mac80211: fix ad-hoc mode performance regression
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30758 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/mac80211/patches/300-pending_work.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/mac80211/patches/300-pending_work.patch b/package/mac80211/patches/300-pending_work.patch index 25ebbb68c8..87a30efa0d 100644 --- a/package/mac80211/patches/300-pending_work.patch +++ b/package/mac80211/patches/300-pending_work.patch @@ -452,3 +452,14 @@ #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG printk(KERN_DEBUG "STA %pM aid %d: PS buffer for AC %d\n", sta->sta.addr, sta->sta.aid, ac); +--- a/net/mac80211/ieee80211_i.h ++++ b/net/mac80211/ieee80211_i.h +@@ -480,7 +480,7 @@ struct ieee80211_if_ibss { + + bool control_port; + +- u8 bssid[ETH_ALEN]; ++ u8 bssid[ETH_ALEN] __aligned(2); + u8 ssid[IEEE80211_MAX_SSID_LEN]; + u8 ssid_len, ie_len; + u8 *ie; |