1. 31 5月, 2015 3 次提交
  2. 13 5月, 2015 1 次提交
  3. 03 4月, 2015 7 次提交
  4. 19 2月, 2015 1 次提交
  5. 18 2月, 2015 2 次提交
  6. 06 2月, 2015 1 次提交
  7. 14 1月, 2015 1 次提交
    • A
      infiniband: mlx5: avoid a compile-time warning · 7835bfb5
      Arnd Bergmann 提交于
      The return type of find_first_bit() is architecture specific,
      on ARM it is 'unsigned int', while the asm-generic code used
      on x86 and a lot of other architectures returns 'unsigned long'.
      
      When building the mlx5 driver on ARM, we get a warning about
      this:
      
      infiniband/hw/mlx5/mem.c: In function 'mlx5_ib_cont_pages':
      infiniband/hw/mlx5/mem.c:84:143: warning: comparison of distinct pointer types lacks a cast
           m = min(m, find_first_bit(&tmp, sizeof(tmp)));
      
      This patch changes the driver to use min_t to make it behave
      the same way on all architectures.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Acked-by: NEli Cohen <eli@mellanox.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      7835bfb5
  8. 16 12月, 2014 10 次提交
  9. 09 12月, 2014 2 次提交
  10. 22 11月, 2014 1 次提交
  11. 09 10月, 2014 8 次提交
  12. 04 10月, 2014 1 次提交
  13. 13 8月, 2014 1 次提交
  14. 31 7月, 2014 1 次提交