1. 19 7月, 2014 1 次提交
  2. 16 7月, 2014 1 次提交
  3. 26 6月, 2014 1 次提交
  4. 01 3月, 2014 2 次提交
  5. 13 2月, 2014 2 次提交
  6. 15 10月, 2013 1 次提交
  7. 11 10月, 2013 1 次提交
  8. 01 8月, 2013 1 次提交
  9. 24 7月, 2013 1 次提交
  10. 20 6月, 2013 1 次提交
  11. 30 5月, 2013 1 次提交
  12. 02 4月, 2013 1 次提交
  13. 09 3月, 2013 1 次提交
  14. 19 2月, 2013 1 次提交
  15. 02 2月, 2013 1 次提交
  16. 31 1月, 2013 1 次提交
  17. 23 1月, 2013 1 次提交
  18. 08 1月, 2013 1 次提交
  19. 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
  20. 09 10月, 2012 1 次提交
  21. 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
  22. 17 5月, 2012 1 次提交
  23. 16 5月, 2012 1 次提交
  24. 18 4月, 2012 1 次提交
    • A
      mwifiex: corrections in timestamp related code · b5abcf02
      Amitkumar Karwar 提交于
      We get two timing related fields for each bss from firmware in scan
      results.
      1) timestamp - Actual timestamp information in probe response/beacon
      2) network_tsf - firmware's TSF value at the time the beacon or probe
      response was received.
      Both are needed while associating by firmware.
      
      The patch takes care of following things.
      1) We should pass "timestamp" to cfg80211_inform_bss(), but currently
      "network_tsf" is being provided. This error is corrected here.
      2) Rename "network_tsf" to "fw_tsf"
      3) Make use of u64 variable instead of an array of u8/u32 to save
      parsed "timestamp" information.
      4) Use timestamp provided to stack in scan results using
      cfg80211_inform_bss() while associating. (bss->tsf)
      5) Allocate space to save fw_tsf in "priv" of cfg80211_bss
      and retrieve it while associating.
      Signed-off-by: NAmitkumar Karwar <akarwar@marvell.com>
      Signed-off-by: NBing Zhao <bzhao@marvell.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      b5abcf02
  25. 13 4月, 2012 1 次提交
  26. 10 4月, 2012 1 次提交
  27. 15 3月, 2012 1 次提交
  28. 14 3月, 2012 1 次提交
  29. 06 3月, 2012 2 次提交
  30. 01 3月, 2012 1 次提交
  31. 22 12月, 2011 1 次提交
  32. 12 11月, 2011 3 次提交
  33. 14 9月, 2011 1 次提交
  34. 13 8月, 2011 1 次提交
  35. 23 6月, 2011 1 次提交