Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1menuconfig INFINIBAND
2 tristate "InfiniBand support"
3 depends on PCI || BROKEN
4 depends on HAS_IOMEM
5 ---help---
6 Core support for InfiniBand (IB). Make sure to also select
7 any protocols you wish to use as well as drivers for your
8 InfiniBand hardware.
9
10if INFINIBAND
11
12config INFINIBAND_USER_MAD
13 tristate "InfiniBand userspace MAD support"
14 depends on INFINIBAND
15 ---help---
16 Userspace InfiniBand Management Datagram (MAD) support. This
17 is the kernel side of the userspace MAD support, which allows
18 userspace processes to send and receive MADs. You will also
19 need libibumad from <http://www.openib.org>.
20
21config INFINIBAND_USER_ACCESS
22 tristate "InfiniBand userspace access (verbs and CM)"
23 ---help---
24 Userspace InfiniBand access support. This enables the
25 kernel side of userspace verbs and the userspace
26 communication manager (CM). This allows userspace processes
27 to set up connections and directly access InfiniBand
28 hardware for fast-path operations. You will also need
29 libibverbs, libibcm and a hardware driver library from
30 <http://www.openib.org>.
31
32config INFINIBAND_USER_MEM
33 bool
34 depends on INFINIBAND_USER_ACCESS != n
35 default y
36
37config INFINIBAND_ADDR_TRANS
38 bool
39 depends on INET
40 default y
41
42source "drivers/infiniband/hw/mthca/Kconfig"
43source "drivers/infiniband/hw/ipath/Kconfig"
44source "drivers/infiniband/hw/ehca/Kconfig"
45source "drivers/infiniband/hw/amso1100/Kconfig"
46source "drivers/infiniband/hw/cxgb3/Kconfig"
47
48source "drivers/infiniband/hw/mlx4/Kconfig"
49
50source "drivers/infiniband/ulp/ipoib/Kconfig"
51
52source "drivers/infiniband/ulp/srp/Kconfig"
53
54source "drivers/infiniband/ulp/iser/Kconfig"
55
56endif # INFINIBAND