Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. menuconfig INFINIBAND
  2. tristate "InfiniBand support"
  3. depends on PCI || BROKEN
  4. depends on HAS_IOMEM
  5. depends on NET
  6. depends on INET
  7. depends on m || IPV6 != m
  8. ---help---
  9. Core support for InfiniBand (IB). Make sure to also select
  10. any protocols you wish to use as well as drivers for your
  11. InfiniBand hardware.
  12. if INFINIBAND
  13. config INFINIBAND_USER_MAD
  14. tristate "InfiniBand userspace MAD support"
  15. depends on INFINIBAND
  16. ---help---
  17. Userspace InfiniBand Management Datagram (MAD) support. This
  18. is the kernel side of the userspace MAD support, which allows
  19. userspace processes to send and receive MADs. You will also
  20. need libibumad from <http://www.openfabrics.org/downloads/management/>.
  21. config INFINIBAND_USER_ACCESS
  22. tristate "InfiniBand userspace access (verbs and CM)"
  23. select ANON_INODES
  24. ---help---
  25. Userspace InfiniBand access support. This enables the
  26. kernel side of userspace verbs and the userspace
  27. communication manager (CM). This allows userspace processes
  28. to set up connections and directly access InfiniBand
  29. hardware for fast-path operations. You will also need
  30. libibverbs, libibcm and a hardware driver library from
  31. <http://www.openfabrics.org/git/>.
  32. config INFINIBAND_USER_ACCESS_UCM
  33. bool "Userspace CM (UCM, DEPRECATED)"
  34. depends on BROKEN
  35. depends on INFINIBAND_USER_ACCESS
  36. help
  37. The UCM module has known security flaws, which no one is
  38. interested to fix. The user-space part of this code was
  39. dropped from the upstream a long time ago.
  40. This option is DEPRECATED and planned to be removed.
  41. config INFINIBAND_USER_MEM
  42. bool
  43. depends on INFINIBAND_USER_ACCESS != n
  44. default y
  45. config INFINIBAND_ON_DEMAND_PAGING
  46. bool "InfiniBand on-demand paging support"
  47. depends on INFINIBAND_USER_MEM
  48. select MMU_NOTIFIER
  49. default y
  50. ---help---
  51. On demand paging support for the InfiniBand subsystem.
  52. Together with driver support this allows registration of
  53. memory regions without pinning their pages, fetching the
  54. pages on demand instead.
  55. config INFINIBAND_ADDR_TRANS
  56. bool
  57. depends on INFINIBAND
  58. default y
  59. source "drivers/infiniband/hw/mthca/Kconfig"
  60. source "drivers/infiniband/hw/qib/Kconfig"
  61. source "drivers/infiniband/hw/cxgb3/Kconfig"
  62. source "drivers/infiniband/hw/cxgb4/Kconfig"
  63. source "drivers/infiniband/hw/mlx4/Kconfig"
  64. source "drivers/infiniband/hw/mlx5/Kconfig"
  65. source "drivers/infiniband/hw/nes/Kconfig"
  66. source "drivers/infiniband/hw/ocrdma/Kconfig"
  67. source "drivers/infiniband/hw/usnic/Kconfig"
  68. source "drivers/infiniband/ulp/ipoib/Kconfig"
  69. source "drivers/infiniband/ulp/srp/Kconfig"
  70. source "drivers/infiniband/ulp/srpt/Kconfig"
  71. source "drivers/infiniband/ulp/iser/Kconfig"
  72. source "drivers/infiniband/ulp/isert/Kconfig"
  73. endif # INFINIBAND