Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config LNET
  2. tristate "Lustre networking subsystem"
  3. depends on LUSTRE_FS
  4. config LNET_MAX_PAYLOAD
  5. int "Lustre lnet max transfer payload (default 2MB)"
  6. depends on LUSTRE_FS
  7. default "1048576"
  8. help
  9. This option defines the maximum size of payload in bytes that lnet
  10. can put into its transport.
  11. If unsure, use default.
  12. config LNET_SELFTEST
  13. tristate "Lustre networking self testing"
  14. depends on LNET
  15. help
  16. Choose Y here if you want to do lnet self testing. To compile this
  17. as a module, choose M here: the module will be called lnet_selftest.
  18. To compile this as a kernel modules, choose M here and it will be
  19. called lnet_selftest.
  20. If unsure, say N.
  21. See also http://wiki.lustre.org/
  22. config LNET_XPRT_IB
  23. tristate "LNET infiniband support"
  24. depends on LNET && INFINIBAND && INFINIBAND_ADDR_TRANS
  25. default LNET && INFINIBAND
  26. help
  27. This option allows the LNET users to use infiniband as an
  28. RDMA-enabled transport.
  29. To compile this as a kernel module, choose M here and it will be
  30. called ko2iblnd.
  31. If unsure, say N.