1. 27 9月, 2013 2 次提交
  2. 27 8月, 2013 1 次提交
  3. 17 8月, 2013 1 次提交
  4. 16 8月, 2013 3 次提交
  5. 10 8月, 2013 5 次提交
  6. 06 8月, 2013 3 次提交
  7. 02 8月, 2013 1 次提交
  8. 24 7月, 2013 1 次提交
  9. 25 6月, 2013 1 次提交
  10. 19 6月, 2013 2 次提交
  11. 15 6月, 2013 1 次提交
  12. 13 6月, 2013 3 次提交
  13. 23 5月, 2013 2 次提交
  14. 18 5月, 2013 1 次提交
  15. 24 4月, 2013 1 次提交
  16. 23 4月, 2013 1 次提交
  17. 11 4月, 2013 1 次提交
    • F
      ath9k: fix handling of broken descriptors · 723e7113
      Felix Fietkau 提交于
      As the comment in ath_get_next_rx_buf indicates, if a descriptor with
      the done bit set follows one with the done bit cleared, both descriptors
      should be discarded, however the driver is not doing that yet.
      
      To fix this, use the rs->rs_more flag as an indicator that the following
      frame should be discarded. This also helps with the split buffer case:
      if the first part of the frame is discarded, the following parts need to
      be discarded as well, since they contain no valid header or usable data.
      Signed-off-by: NFelix Fietkau <nbd@openwrt.org>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      723e7113
  18. 12 2月, 2013 1 次提交
  19. 02 2月, 2013 2 次提交
  20. 31 1月, 2013 2 次提交
  21. 23 1月, 2013 1 次提交
  22. 15 1月, 2013 1 次提交
  23. 12 1月, 2013 2 次提交
  24. 10 1月, 2013 1 次提交
    • S
      ath9k: add spectral scan feature · e93d083f
      Simon Wunderlich 提交于
      Adds the spectral scan feature for ath9k. AR92xx and AR93xx chips
      are supported for now. The spectral scan is triggered by configuring
      a mode through a debugfs control file. Samples can be gathered via
      another relay debugfs file.
      
      Essentially, to try it out:
      
      echo chanscan > /sys/kernel/debug/ieee80211/phy0/ath9k/spectral_scan_ctl
      iw dev wlan0 scan
      cat /sys/kernel/debug/ieee80211/phy0/ath9k/spectral_scan0 > samples
      echo disable > /sys/kernel/debug/ieee80211/phy0/ath9k/spectral_scan_ctl
      
      This feature is still experimental.
      
      The special "chanscan" mode is used to perform spectral scan while
      mac80211 is scanning for channels. To allow this,
      sw_scan_start/complete() ops have been added.
      
      The patch contains code snippets and information from Zefir Kurtisi and
      information provided by Adrian Chadd and Felix Fietkau.
      Signed-off-by: NSimon Wunderlich <siwu@hrz.tu-chemnitz.de>
      Signed-off-by: NMathias Kretschmer <mathias.kretschmer@fokus.fraunhofer.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      e93d083f