Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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. See Documentation/infiniband/ipoib.txt for more information
  9. config INFINIBAND_IPOIB_DEBUG
  10. bool "IP-over-InfiniBand debugging" if EMBEDDED
  11. depends on INFINIBAND_IPOIB
  12. default y
  13. ---help---
  14. This option causes debugging code to be compiled into the
  15. IPoIB driver. The output can be turned on via the
  16. debug_level and mcast_debug_level module parameters (which
  17. can also be set after the driver is loaded through sysfs).
  18. This option also creates an "ipoib_debugfs," which can be
  19. mounted to expose debugging information about IB multicast
  20. groups used by the IPoIB driver.
  21. config INFINIBAND_IPOIB_DEBUG_DATA
  22. bool "IP-over-InfiniBand data path debugging"
  23. depends on INFINIBAND_IPOIB_DEBUG
  24. ---help---
  25. This option compiles debugging code into the data path
  26. of the IPoIB driver. The output can be turned on via the
  27. data_debug_level module parameter; however, even with output
  28. turned off, this debugging code will have some performance
  29. impact.