linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/11] ath9k / mac80211: power save fixes
@ 2010-09-14 23:40 Luis R. Rodriguez
  2010-09-14 23:40 ` [PATCH v3 01/11] ath9k: fix power save race conditions Luis R. Rodriguez
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Luis R. Rodriguez @ 2010-09-14 23:40 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, Luis R. Rodriguez

I reordered the patches, enhanced the commit log entries and
and added a new patch to address ANI / the TX monitor, figured I'd just
send a new series just to be clear.

My next peet peeve is this:

Sep 14 16:36:02 tux kernel: [ 1369.000106] ath: Set channel: 5220 MHz
Sep 14 16:36:02 tux kernel: [ 1369.000116] ath: tx chmask: 3, rx chmask: 3
Sep 14 16:36:02 tux kernel: [ 1369.000240] ath: (2412 MHz) -> (5220 MHz), conf_is_ht40: 0
Sep 14 16:36:02 tux kernel: [ 1369.063449] ath: Set channel: 2412 MHz
Sep 14 16:36:03 tux kernel: [ 1369.063459] ath: tx chmask: 3, rx chmask: 3
Sep 14 16:36:03 tux kernel: [ 1369.063584] ath: (5220 MHz) -> (2412 MHz), conf_is_ht40: 0
Sep 14 16:36:03 tux kernel: [ 1369.360111] ath: Set channel: 5240 MHz
Sep 14 16:36:03 tux kernel: [ 1369.360120] ath: tx chmask: 3, rx chmask: 3
Sep 14 16:36:03 tux kernel: [ 1369.360245] ath: (2412 MHz) -> (5240 MHz), conf_is_ht40: 0
Sep 14 16:36:03 tux kernel: [ 1369.422736] ath: Set channel: 2412 MHz
Sep 14 16:36:03 tux kernel: [ 1369.422745] ath: tx chmask: 3, rx chmask: 3
Sep 14 16:36:03 tux kernel: [ 1369.422867] ath: (5240 MHz) -> (2412 MHz), conf_is_ht40: 0
Sep 14 16:36:03 tux kernel: [ 1369.564685] __ratelimit: 81 callbacks suppressed
Sep 14 16:36:03 tux kernel: [ 1369.564692] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564698] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564703] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564708] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564713] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564718] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564723] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564728] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564733] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.564738] phy0: release an RX reorder frame due to timeout on earlier frames
Sep 14 16:36:03 tux kernel: [ 1369.720129] ath: Set channel: 5260 MHz
Sep 14 16:36:03 tux kernel: [ 1369.720139] ath: tx chmask: 3, rx chmask: 3
Sep 14 16:36:03 tux kernel: [ 1369.720263] ath: (2412 MHz) -> (5260 MHz), conf_is_ht40: 0

My guess is we are not suspending / stopping the aggregations sessions /
or simply extending the timer when going off channel. 

Luis R. Rodriguez (10):
  ath9k: fix power save race conditions
  ath9k: fix regression on beacon loss after bgscan
  ath9k: fix enabling ANI / tx monitor after bg scan
  mac80211: add helper for reseting the connection monitor
  mac80211: reset probe send counter upon connection timer reset
  mac80211: reset connection idle when going offchannel
  mac80211: make the beacon monitor available externally
  mac80211: disable beacon monitor while going offchannel
  mac80211: send last 3/5 probe requests as unicast
  ath9k: fix regression which disabled ps on ath9k

Senthil Balasubramanian (1):
  ath9k: fix regression which prevents chip sleep after CAB data

 drivers/net/wireless/ath/ath9k/ath9k.h |    1 -
 drivers/net/wireless/ath/ath9k/init.c  |    3 +-
 drivers/net/wireless/ath/ath9k/main.c  |   15 ++++++-----
 drivers/net/wireless/ath/ath9k/recv.c  |    9 ++++--
 net/mac80211/ieee80211_i.h             |    2 +
 net/mac80211/mlme.c                    |   40 +++++++++++++++++++++++--------
 net/mac80211/offchannel.c              |    7 +++++
 7 files changed, 54 insertions(+), 23 deletions(-)


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2010-09-15 18:31 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-14 23:40 [PATCH v3 00/11] ath9k / mac80211: power save fixes Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 01/11] ath9k: fix power save race conditions Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 02/11] ath9k: fix regression on beacon loss after bgscan Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 03/11] ath9k: fix enabling ANI / tx monitor after bg scan Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 04/11] mac80211: add helper for reseting the connection monitor Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 05/11] mac80211: reset probe send counter upon connection timer reset Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 06/11] mac80211: reset connection idle when going offchannel Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 07/11] mac80211: make the beacon monitor available externally Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 08/11] mac80211: disable beacon monitor while going offchannel Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 09/11] mac80211: send last 3/5 probe requests as unicast Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 10/11] ath9k: fix regression which prevents chip sleep after CAB data Luis R. Rodriguez
2010-09-14 23:40 ` [PATCH v3 11/11] ath9k: fix regression which disabled ps on ath9k Luis R. Rodriguez
2010-09-15  7:23 ` [PATCH v3 00/11] ath9k / mac80211: power save fixes Luis R. Rodriguez
     [not found] ` <AANLkTinNA9Xb-bq17V_PcyLujaJM-mOWimvQzWMRKpk6@mail.gmail.com>
     [not found]   ` <10161E8E-4F96-4B3B-B5D3-27DF9236BF83@Atheros.com>
2010-09-15 18:31     ` Luis R. Rodriguez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).