1. 05 2月, 2014 1 次提交
  2. 27 9月, 2013 1 次提交
  3. 17 8月, 2013 2 次提交
  4. 16 7月, 2013 1 次提交
  5. 23 5月, 2013 1 次提交
    • F
      ath9k: prevent aggregation session deadlocks · 08c96abd
      Felix Fietkau 提交于
      Waiting for all subframes of an existing aggregation session to drain
      before allowing mac80211 to start a new one is fragile and deadlocks
      caused by this behavior have been observed.
      
      Since mac80211 has proper synchronization for aggregation session
      start/stop handling, a better approach to session handling is to simply
      allow mac80211 to start a new session at any time. This requires
      changing the code to discard any packets outside of the BlockAck window
      in the A-MPDU software retry code.
      
      This patch implements the above and also simplifies the code.
      Signed-off-by: NFelix Fietkau <nbd@openwrt.org>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      08c96abd
  6. 26 3月, 2013 1 次提交
  7. 15 2月, 2013 1 次提交
    • J
      mac80211: stop toggling IEEE80211_HT_CAP_SUP_WIDTH_20_40 · e1a0c6b3
      Johannes Berg 提交于
      For VHT, many more bandwidth changes are possible. As a first
      step, stop toggling the IEEE80211_HT_CAP_SUP_WIDTH_20_40 flag
      in the HT capabilities and instead introduce a bandwidth field
      indicating the currently usable bandwidth to transmit to the
      station. Of course, make all drivers use it.
      
      To achieve this, make ieee80211_ht_cap_ie_to_sta_ht_cap() get
      the station as an argument, rather than the new capabilities,
      so it can set up the new bandwidth field.
      
      If the station is a VHT station and VHT bandwidth is in use,
      also set the bandwidth accordingly.
      
      Doing this allows us to get rid of the supports_40mhz flag as
      the HT capabilities now reflect the true capability instead of
      the current setting.
      
      While at it, also fix ieee80211_ht_cap_ie_to_sta_ht_cap() to not
      ignore HT cap overrides when MCS TX isn't supported (not that it
      really happens...)
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      e1a0c6b3
  8. 09 2月, 2013 1 次提交
  9. 22 11月, 2012 2 次提交
  10. 25 9月, 2012 1 次提交
  11. 11 8月, 2012 15 次提交
  12. 14 6月, 2012 1 次提交
  13. 11 4月, 2012 2 次提交
  14. 06 4月, 2012 1 次提交
    • S
      simple_open: automatically convert to simple_open() · 234e3405
      Stephen Boyd 提交于
      Many users of debugfs copy the implementation of default_open() when
      they want to support a custom read/write function op.  This leads to a
      proliferation of the default_open() implementation across the entire
      tree.
      
      Now that the common implementation has been consolidated into libfs we
      can replace all the users of this function with simple_open().
      
      This replacement was done with the following semantic patch:
      
      <smpl>
      @ open @
      identifier open_f != simple_open;
      identifier i, f;
      @@
      -int open_f(struct inode *i, struct file *f)
      -{
      (
      -if (i->i_private)
      -f->private_data = i->i_private;
      |
      -f->private_data = i->i_private;
      )
      -return 0;
      -}
      
      @ has_open depends on open @
      identifier fops;
      identifier open.open_f;
      @@
      struct file_operations fops = {
      ...
      -.open = open_f,
      +.open = simple_open,
      ...
      };
      </smpl>
      
      [akpm@linux-foundation.org: checkpatch fixes]
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Al Viro <viro@zeniv.linux.org.uk>
      Cc: Julia Lawall <Julia.Lawall@lip6.fr>
      Acked-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      234e3405
  15. 16 3月, 2012 2 次提交
  16. 06 3月, 2012 1 次提交
  17. 28 2月, 2012 1 次提交
  18. 16 2月, 2012 1 次提交
  19. 04 2月, 2012 1 次提交
  20. 30 1月, 2012 1 次提交
  21. 20 12月, 2011 1 次提交
  22. 13 12月, 2011 1 次提交