1. 26 8月, 2010 1 次提交
  2. 19 8月, 2010 1 次提交
  3. 17 8月, 2010 1 次提交
  4. 28 7月, 2010 1 次提交
  5. 29 4月, 2010 1 次提交
  6. 01 4月, 2010 1 次提交
  7. 20 2月, 2010 1 次提交
  8. 09 2月, 2010 1 次提交
  9. 29 8月, 2009 1 次提交
    • C
      p54: fix broadcast buffering in AP mode · 90d6f928
      Christian Lamparter 提交于
      The patch "mac80211: fix PS-poll response race" somehow broke
      broadcast buffering in a funny way.
      
      During normal operation - stations are awake - the firmware refused
      to transmit broadcast frames and reported P54_TX_PSM_CANCELLED.
      But everything worked as soon as one station entered PSM.
      
      The reason:
      The stack sets IEEE80211_TX_CTL_SEND_AFTER_DTIM for outgoing
      broadcast frames as soon as a station is marked as sleeping.
      This flag triggers a path which will reroute these frames
      into p54's "content after beacon" queue, which is designed
      to cope with the demands for psm.
      
      This patch restores the old behavior.
      
      IEEE80211_TX_CTL_CLEAR_PS_FILT will once again be used to signalize
      the firmware to ignore the ps canceling for certain frames.
      Signed-off-by: NChristian Lamparter <chunkeey@web.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      90d6f928
  10. 14 8月, 2009 1 次提交
  11. 05 8月, 2009 1 次提交
    • 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
  12. 28 7月, 2009 1 次提交
  13. 25 7月, 2009 3 次提交
  14. 11 7月, 2009 2 次提交