Merge branch 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/linville...
authorDavid S. Miller <davem@davemloft.net>
Fri, 28 Jan 2011 00:00:37 +0000 (16:00 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 28 Jan 2011 00:00:37 +0000 (16:00 -0800)
1  2 
drivers/net/wireless/ath/ath5k/base.c
drivers/net/wireless/ath/ath9k/ar9002_calib.c
drivers/net/wireless/ath/ath9k/htc.h
drivers/net/wireless/ath/ath9k/hw.c
drivers/net/wireless/ath/ath9k/hw.h
drivers/net/wireless/ath/ath9k/main.c
drivers/net/wireless/ath/ath9k/xmit.c
drivers/net/wireless/iwlwifi/iwl-4965.c
net/mac80211/agg-rx.c
net/mac80211/main.c
net/mac80211/tx.c

Simple merge
Simple merge
Simple merge
Simple merge
@@@ -597,10 -615,18 +613,18 @@@ void ath9k_tasklet(unsigned long data
                return;
        }
  
 +      ath9k_ps_wakeup(sc);
        spin_lock(&sc->sc_pcu_lock);
  
-       if (!ath9k_hw_check_alive(ah))
+       /*
+        * Only run the baseband hang check if beacons stop working in AP or
+        * IBSS mode, because it has a high false positive rate. For station
+        * mode it should not be necessary, since the upper layers will detect
+        * this through a beacon miss automatically and the following channel
+        * change will trigger a hardware reset anyway
+        */
+       if (ath9k_hw_numtxpending(ah, sc->beacon.beaconq) != 0 &&
+           !ath9k_hw_check_alive(ah))
                ieee80211_queue_work(sc->hw, &sc->hw_check_work);
  
        if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Simple merge
@@@ -229,9 -231,17 +229,12 @@@ void ieee80211_process_addba_request(st
                goto end_no_lock;
        }
        /* determine default buffer size */
 -      if (buf_size == 0) {
 -              struct ieee80211_supported_band *sband;
 -
 -              sband = local->hw.wiphy->bands[conf->channel->band];
 -              buf_size = IEEE80211_MIN_AMPDU_BUF;
 -              buf_size = buf_size << sband->ht_cap.ampdu_factor;
 -      }
 +      if (buf_size == 0)
 +              buf_size = IEEE80211_MAX_AMPDU_BUF;
  
+       /* make sure the size doesn't exceed the maximum supported by the hw */
+       if (buf_size > local->hw.max_rx_aggregation_subframes)
+               buf_size = local->hw.max_rx_aggregation_subframes;
  
        /* examine state machine */
        mutex_lock(&sta->ampdu_mlme.mtx);
Simple merge
Simple merge