1. 04 4月, 2018 2 次提交
  2. 30 3月, 2018 1 次提交
  3. 20 3月, 2018 1 次提交
  4. 16 3月, 2018 1 次提交
  5. 07 3月, 2018 4 次提交
  6. 25 1月, 2018 2 次提交
  7. 16 1月, 2018 1 次提交
  8. 03 1月, 2018 4 次提交
  9. 19 10月, 2017 1 次提交
  10. 15 10月, 2017 4 次提交
  11. 05 10月, 2017 2 次提交
  12. 29 9月, 2017 1 次提交
  13. 27 9月, 2017 1 次提交
  14. 22 9月, 2017 1 次提交
    • A
      RDMA/qedr: fix build error without ipv6 · bd491d2a
      Arnd Bergmann 提交于
      When CONFIG_IPV6 disabled, we run into a link error:
      
      drivers/infiniband/hw/qedr/qedr_iw_cm.o: In function `qedr_addr6_resolve.isra.3':
      qedr_iw_cm.c:(.text+0x4e0): undefined reference to `ip6_route_output_flags'
      
      The ipv6 handling code is obviously not needed here, so this
      adds a compile-time check for the Kconfig symbol in all three
      places in the code that decide between ipv4 and ipv6.
      
      We don't have to worry about a link error wtih QEDR=y/IPV6=m, as
      that configuration is already prohibited by CONFIG_INFINIBAND
      depending on "m || IPV6 != m".
      
      Fixes: e411e058 ("RDMA/qedr: Add iWARP connection management functions")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Acked-by: NMichal Kalderon <michal.kalderon@cavium.com>
      Signed-off-by: NDoug Ledford <dledford@redhat.com>
      bd491d2a
  15. 29 8月, 2017 1 次提交
  16. 25 8月, 2017 1 次提交
  17. 19 8月, 2017 7 次提交
  18. 10 8月, 2017 1 次提交
    • L
      RDMA: Simplify get firmware interface · 9abb0d1b
      Leon Romanovsky 提交于
      There is a need to forward FW version to user space
      application through RDMA netlink. In order to make it safe, there
      is need to declare nla_policy and limit the size of FW string.
      
      The new define IB_FW_VERSION_NAME_MAX will limit the size of
      FW version string. That define was chosen to be equal to
      ETHTOOL_FWVERS_LEN, because many drivers anyway are limited
      by that value indirectly.
      
      The introduction of this define allows us to remove the string size
      from get_fw_str function signature.
      Signed-off-by: NLeon Romanovsky <leonro@mellanox.com>
      9abb0d1b
  19. 27 7月, 2017 2 次提交
  20. 24 7月, 2017 1 次提交
  21. 20 7月, 2017 1 次提交