1. 05 1月, 2011 2 次提交
  2. 14 12月, 2010 4 次提交
  3. 16 11月, 2010 3 次提交
  4. 06 10月, 2010 1 次提交
  5. 15 9月, 2010 1 次提交
  6. 27 7月, 2010 1 次提交
  7. 13 7月, 2010 2 次提交
  8. 01 7月, 2010 2 次提交
  9. 09 2月, 2010 1 次提交
  10. 29 12月, 2009 1 次提交
  11. 29 11月, 2009 1 次提交
  12. 20 11月, 2009 1 次提交
    • J
      mac80211: request TX status where needed · 7351c6bd
      Johannes Berg 提交于
      Right now all frames mac80211 hands to the driver
      have the IEEE80211_TX_CTL_REQ_TX_STATUS flag set to
      request TX status. This isn't really necessary, only
      the injected frames need TX status (the latter for
      hostapd) so move setting this flag.
      
      The rate control algorithms also need TX status, but
      they don't require it.
      
      Also, rt2x00 uses that bit for its own purposes and
      seems to require it being set for all frames, but
      that can be fixed in rt2x00.
      
      This doesn't really change anything for any drivers
      but in the future drivers using hw-rate control may
      opt to not report TX status for frames that don't
      have the IEEE80211_TX_CTL_REQ_TX_STATUS flag set.
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Acked-by: Ivo van Doorn <IvDoorn@gmail.com> [rt2x00 bits]
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      7351c6bd
  13. 12 11月, 2009 1 次提交
  14. 29 8月, 2009 1 次提交
  15. 20 8月, 2009 4 次提交
  16. 14 8月, 2009 3 次提交
  17. 05 8月, 2009 2 次提交
    • L
      mac80211: redefine usage of the mac80211 workqueue · 42935eca
      Luis R. Rodriguez 提交于
      The mac80211 workqueue exists to enable mac80211 and drivers
      to queue their own work on a single threaded workqueue. mac80211
      takes care to flush the workqueue during suspend but we never
      really had requirements on drivers for how they should use
      the workqueue in consideration for suspend.
      
      We extend mac80211 to document how the mac80211 workqueue should
      be used, how it should not be used and finally move raw access to
      the workqueue to mac80211 only. Drivers and mac80211 use helpers
      to queue work onto the mac80211 workqueue:
      
        * ieee80211_queue_work()
        * ieee80211_queue_delayed_work()
      
      These helpers will now warn if mac80211 already completed its
      suspend cycle and someone is trying to queue work. mac80211
      flushes the mac80211 workqueue prior to suspend a few times,
      but we haven't taken the care to ensure drivers won't add more
      work after suspend. To help with this we add a warning when
      someone tries to add work and mac80211 already completed the
      suspend cycle.
      
      Drivers should ensure they cancel any work or delayed work
      in the mac80211 stop() callback.
      Signed-off-by: NLuis R. Rodriguez <lrodriguez@atheros.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      42935eca
    • I
      rt2x00: Fix build error when crypto support is disabled · ad2f34b4
      Ivo van Doorn 提交于
      When only rt2400pci or rt2500pci is compiled without any of the other
      rt2x00 modules, then CONFIG_RT2X00_LIB_CRYPTO will not be enabled.
      
      However rt2x00mac_set_tim() implemented within #ifdef CONFIG_RT2X00_LIB_CRYPTO
      statements while the declaration is placed outside the definition. This results in linking
      errors as reporte by Ken.
      
      rt2x00_set_tim() has nothing to do with crypto, and thus should be moved outside
      of the #ifdef statements.
      Signed-off-by: NIvo van Doorn <IvDoorn@gmail.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      ad2f34b4
  18. 28 7月, 2009 1 次提交
  19. 25 7月, 2009 2 次提交
  20. 11 7月, 2009 2 次提交
  21. 07 5月, 2009 1 次提交
  22. 10 2月, 2009 1 次提交
  23. 30 1月, 2009 2 次提交