1. 20 11月, 2014 2 次提交
  2. 10 11月, 2014 1 次提交
  3. 31 10月, 2014 3 次提交
  4. 30 10月, 2014 3 次提交
  5. 27 10月, 2014 2 次提交
  6. 24 10月, 2014 2 次提交
  7. 09 10月, 2014 3 次提交
  8. 11 9月, 2014 1 次提交
  9. 24 7月, 2014 1 次提交
    • A
      mac80211_hwsim: fix compiler warning on MIPS · 5d26b508
      Andrew Bresticker 提交于
      The dividend in do_div() is expected to be an unsigned 64-bit integer,
      which leads to the following warning when building for 32-bit MIPS:
      
        drivers/net/wireless/mac80211_hwsim.c: In function 'mac80211_hwsim_set_tsf':
        drivers/net/wireless/mac80211_hwsim.c:664:98: warning: comparison of distinct pointer types lacks a cast [enabled by default]
          data->bcn_delta = do_div(delta, bcn_int);
      
      Since we care about the signedness of delta when adjusting tsf_offset
      and bcm_delta, use the absolute value for the division and compare
      the two timestamps to determine the sign.
      Signed-off-by: NAndrew Bresticker <abrestic@chromium.org>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      5d26b508
  10. 16 7月, 2014 1 次提交
    • T
      net: set name_assign_type in alloc_netdev() · c835a677
      Tom Gundersen 提交于
      Extend alloc_netdev{,_mq{,s}}() to take name_assign_type as argument, and convert
      all users to pass NET_NAME_UNKNOWN.
      
      Coccinelle patch:
      
      @@
      expression sizeof_priv, name, setup, txqs, rxqs, count;
      @@
      
      (
      -alloc_netdev_mqs(sizeof_priv, name, setup, txqs, rxqs)
      +alloc_netdev_mqs(sizeof_priv, name, NET_NAME_UNKNOWN, setup, txqs, rxqs)
      |
      -alloc_netdev_mq(sizeof_priv, name, setup, count)
      +alloc_netdev_mq(sizeof_priv, name, NET_NAME_UNKNOWN, setup, count)
      |
      -alloc_netdev(sizeof_priv, name, setup)
      +alloc_netdev(sizeof_priv, name, NET_NAME_UNKNOWN, setup)
      )
      
      v9: move comments here from the wrong commit
      Signed-off-by: NTom Gundersen <teg@jklm.no>
      Reviewed-by: NDavid Herrmann <dh.herrmann@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c835a677
  11. 25 6月, 2014 1 次提交
  12. 23 6月, 2014 1 次提交
  13. 29 4月, 2014 1 次提交
  14. 09 4月, 2014 1 次提交
  15. 11 2月, 2014 1 次提交
  16. 07 2月, 2014 1 次提交
  17. 06 2月, 2014 1 次提交
  18. 05 2月, 2014 3 次提交
  19. 11 1月, 2014 11 次提交