Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. config INFINIBAND_IPOIB
  2. tristate "IP-over-InfiniBand"
  3. depends on INFINIBAND && NETDEVICES && INET
  4. ---help---
  5. Support for the IP-over-InfiniBand protocol (IPoIB). This
  6. transports IP packets over InfiniBand so you can use your IB
  7. device as a fancy NIC.
  8. The IPoIB protocol is defined by the IETF ipoib working
  9. group: <http://www.ietf.org/html.charters/ipoib-charter.html>.
  10. config INFINIBAND_IPOIB_DEBUG
  11. bool "IP-over-InfiniBand debugging" if EMBEDDED
  12. depends on INFINIBAND_IPOIB
  13. default y
  14. ---help---
  15. This option causes debugging code to be compiled into the
  16. IPoIB driver. The output can be turned on via the
  17. debug_level and mcast_debug_level module parameters (which
  18. can also be set after the driver is loaded through sysfs).
  19. This option also creates an "ipoib_debugfs," which can be
  20. mounted to expose debugging information about IB multicast
  21. groups used by the IPoIB driver.
  22. config INFINIBAND_IPOIB_DEBUG_DATA
  23. bool "IP-over-InfiniBand data path debugging"
  24. depends on INFINIBAND_IPOIB_DEBUG
  25. ---help---
  26. This option compiles debugging code into the the data path
  27. of the IPoIB driver. The output can be turned on via the
  28. data_debug_level module parameter; however, even with output
  29. turned off, this debugging code will have some performance
  30. impact.