1. 26 5月, 2015 1 次提交
  2. 17 3月, 2015 1 次提交
  3. 04 3月, 2015 1 次提交
  4. 03 2月, 2015 1 次提交
  5. 29 1月, 2015 3 次提交
  6. 07 1月, 2015 2 次提交
  7. 26 11月, 2014 1 次提交
  8. 18 11月, 2014 2 次提交
  9. 26 6月, 2014 1 次提交
  10. 23 5月, 2014 1 次提交
  11. 08 5月, 2014 1 次提交
  12. 01 3月, 2014 2 次提交
  13. 13 2月, 2014 2 次提交
  14. 15 10月, 2013 1 次提交
  15. 24 7月, 2013 1 次提交
  16. 20 6月, 2013 2 次提交
  17. 26 11月, 2012 1 次提交
    • J
      cfg80211: remove remain-on-channel channel type · 42d97a59
      Johannes Berg 提交于
      As mwifiex (and mac80211 in the software case) are the
      only drivers actually implementing remain-on-channel
      with channel type, userspace can't be relying on it.
      This is the case, as it's used only for P2P operations
      right now.
      
      Rather than adding a flag to tell userspace whether or
      not it can actually rely on it, simplify all the code
      by removing the ability to use different channel types.
      Leave only the validation of the attribute, so that if
      we extend it again later (with the needed capability
      flag), it can't break userspace sending invalid data.
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      42d97a59
  18. 15 11月, 2012 1 次提交
    • A
      mwifiex: add multi-queue support · 47411a06
      Avinash Patil 提交于
      This patch adds support for multiple TX queues inside mwifiex
      driver. Four different queues according to WMM access categories
      are defined for each virtual interface. When a packet is
      received from netdev for transmission, tx pending count for
      particular queue is incremented and if tx pending count has
      reached upper water-mark, this queue is stopped instead of
      stopping all queues. Similarly when a packet is successfully
      transmitted from device, tx pending count is decremented per
      queue and if pending count falls below lower water-mark, queue
      operations are again resumed. This ensures that not all
      tranmission is blocked if traffic with particular TOS value
      suddenly increases.
      
      Also wake all queues after association/IBSS_join/uAP_BSS_start
      to enable traffic on all queues.
      Signed-off-by: NAvinash Patil <patila@marvell.com>
      Signed-off-by: NBing Zhao <bzhao@marvell.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      47411a06
  19. 09 10月, 2012 1 次提交
  20. 29 9月, 2012 1 次提交
  21. 11 8月, 2012 2 次提交
  22. 07 8月, 2012 1 次提交
  23. 23 6月, 2012 1 次提交
  24. 07 6月, 2012 1 次提交
    • J
      wireless: Remove casts to same type · 2c208890
      Joe Perches 提交于
      Adding casts of objects to the same type is unnecessary
      and confusing for a human reader.
      
      For example, this cast:
      
              int y;
              int *p = (int *)&y;
      
      I used the coccinelle script below to find and remove these
      unnecessary casts.  I manually removed the conversions this
      script produces of casts with __force, __iomem and __user.
      
      @@
      type T;
      T *p;
      @@
      
      -       (T *)p
      +       p
      
      Neatened the mwifiex_deauthenticate_infra function which
      was doing odd things with array pointers and not using
      is_zero_ether_addr.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      2c208890
  25. 17 5月, 2012 1 次提交
  26. 10 4月, 2012 2 次提交
  27. 15 3月, 2012 1 次提交
  28. 06 3月, 2012 1 次提交
  29. 15 12月, 2011 1 次提交
  30. 14 12月, 2011 1 次提交
  31. 13 8月, 2011 1 次提交