1. 30 4月, 2011 1 次提交
    • S
      iwlagn: fix tx power initialization · 75d80cad
      Stanislaw Gruszka 提交于
      Since
      
      commit f844a709
      Author: Stanislaw Gruszka <sgruszka@redhat.com>
      Date:   Fri Jan 28 16:47:44 2011 +0100
      
          iwlwifi: do not set tx power when channel is changing
      
      we set device tx power during initialization to priv->tx_power_next,
      which itself is initialized to minimum power. That changed
      default behaviour of driver. Previously we initialized device to
      transmit at maximum available power by default. Patch change again
      to previous behaviour and cleanup tx power initialization.
      
      Fortunately this is not critical fix, as mac80211 layer setup
      tx power lately to 14dB, hence device does not operate at minimal
      transmit power all the time.
      Signed-off-by: NStanislaw Gruszka <sgruszka@redhat.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      75d80cad
  2. 23 4月, 2011 8 次提交
  3. 19 4月, 2011 3 次提交
  4. 18 4月, 2011 1 次提交
  5. 08 4月, 2011 19 次提交
  6. 31 3月, 2011 1 次提交
  7. 25 3月, 2011 4 次提交
  8. 22 3月, 2011 1 次提交
  9. 12 3月, 2011 1 次提交
  10. 05 3月, 2011 1 次提交
    • S
      iwlwifi: avoid too frequent recover from statistics · 410f2bb3
      Stanislaw Gruszka 提交于
      Usually H/W generate statistics notify once per about 100ms, but
      sometimes we can receive notify in shorter time, even 2 ms.
      
      This can be problem for plcp health and ack health checking.
      
      I.e. with 2 plcp errors happens randomly in 2 ms duration, we
      exceed plcp delta threshold equal to 100 (2*100/2).
      
      Also checking ack's in short time, can results not necessary false
      positive and firmware reset, for example when channel is noised and
      we do not receive ACKs frames or when remote device does not send
      ACKs at the moment.
      
      Patch change code to do statistic check and possible recovery only
      if 99ms elapsed from last check. Forced delay should assure we have
      good statistic data to estimate hardware state.
      Signed-off-by: NStanislaw Gruszka <sgruszka@redhat.com>
      Acked-by: NWey-Yi Guy <wey-yi.w.guy@intel.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      410f2bb3