1. 02 6月, 2009 3 次提交
  2. 29 5月, 2009 2 次提交
  3. 25 5月, 2009 2 次提交
  4. 18 5月, 2009 1 次提交
  5. 12 5月, 2009 1 次提交
  6. 27 4月, 2009 2 次提交
  7. 22 4月, 2009 1 次提交
  8. 21 4月, 2009 6 次提交
  9. 07 4月, 2009 2 次提交
  10. 03 4月, 2009 1 次提交
  11. 01 4月, 2009 1 次提交
  12. 19 3月, 2009 1 次提交
  13. 12 3月, 2009 1 次提交
  14. 28 2月, 2009 1 次提交
  15. 28 1月, 2009 1 次提交
  16. 22 1月, 2009 1 次提交
  17. 16 1月, 2009 1 次提交
    • A
      mlx4_core: Fix min() warning · d3b924d9
      Andrew Morton 提交于
      Fix
      
          drivers/net/mlx4/profile.c: In function `mlx4_make_profile':
          drivers/net/mlx4/profile.c:110: warning: comparison of distinct pointer types lacks a cast
      
      This happened because num_possible_cpus() was secretly changed by
      commit ae7a47e7 ("cpumask: make cpumask.h eat its own dogfood.") from
      returning "int" to (now) returning "unsigned int".  I think that was a
      good change, so we should just swallow the fallout.
      
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Roland Dreier <rolandd@cisco.com>
      Cc: Yevgeny Petrilin <yevgenyp@mellanox.co.il>
      Cc: Jack Morgenstein <jackm@dev.mellanox.co.il>
      Cc: Vladimir Sokolovsky <vlad@mellanox.co.il>
      Cc: Michael S. Tsirkin <mst@dev.mellanox.co.il>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NRoland Dreier <rolandd@cisco.com>
      d3b924d9
  18. 11 1月, 2009 1 次提交
  19. 10 1月, 2009 1 次提交
    • R
      mlx4_core: Fix warning from min() · 70cb9253
      Roland Dreier 提交于
      Recent cpumask changes changed num_possible_cpus() from returning an int
      to returning an unsigned int.  This means that doing
      
          min(num_possible_cpus(), <int expression>)
      
      now produces a warning like
      
          drivers/net/mlx4/main.c: In function 'mlx4_enable_msi_x':
          drivers/net/mlx4/main.c:915: warning: comparison of distinct pointer types lacks a cast
      
      Fix this by using min_t(int, ...).
      Signed-off-by: NRoland Dreier <rolandd@cisco.com>
      70cb9253
  20. 09 1月, 2009 2 次提交
  21. 30 12月, 2008 3 次提交
  22. 26 12月, 2008 5 次提交