Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. config INFINIBAND_IPOIB
  2. tristate "IP-over-InfiniBand"
  3. depends on NETDEVICES && INET && (IPV6 || IPV6=n)
  4. select INET_LRO
  5. ---help---
  6. Support for the IP-over-InfiniBand protocol (IPoIB). This
  7. transports IP packets over InfiniBand so you can use your IB
  8. device as a fancy NIC.
  9. See Documentation/infiniband/ipoib.txt for more information
  10. config INFINIBAND_IPOIB_CM
  11. bool "IP-over-InfiniBand Connected Mode support"
  12. depends on INFINIBAND_IPOIB && EXPERIMENTAL
  13. default n
  14. ---help---
  15. This option enables experimental support for IPoIB connected mode.
  16. After enabling this option, you need to switch to connected mode through
  17. /sys/class/net/ibXXX/mode to actually create connections, and then increase
  18. the interface MTU with e.g. ifconfig ib0 mtu 65520.
  19. WARNING: Enabling connected mode will trigger some
  20. packet drops for multicast and UD mode traffic from this interface,
  21. unless you limit mtu for these destinations to 2044.
  22. config INFINIBAND_IPOIB_DEBUG
  23. bool "IP-over-InfiniBand debugging" if EMBEDDED
  24. depends on INFINIBAND_IPOIB
  25. default y
  26. ---help---
  27. This option causes debugging code to be compiled into the
  28. IPoIB driver. The output can be turned on via the
  29. debug_level and mcast_debug_level module parameters (which
  30. can also be set after the driver is loaded through sysfs).
  31. This option also creates an "ipoib_debugfs," which can be
  32. mounted to expose debugging information about IB multicast
  33. groups used by the IPoIB driver.
  34. config INFINIBAND_IPOIB_DEBUG_DATA
  35. bool "IP-over-InfiniBand data path debugging"
  36. depends on INFINIBAND_IPOIB_DEBUG
  37. ---help---
  38. This option compiles debugging code into the data path
  39. of the IPoIB driver. The output can be turned on via the
  40. data_debug_level module parameter; however, even with output
  41. turned off, this debugging code will have some performance
  42. impact.