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 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.openib.org>.
32
33config INFINIBAND_USER_MEM
34 bool
35 depends on INFINIBAND_USER_ACCESS != n
36 default y
37
38config INFINIBAND_ADDR_TRANS
39 bool
40 depends on INET
41 depends on !(INFINIBAND = y && IPV6 = m)
42 default y
43
44source "drivers/infiniband/hw/mthca/Kconfig"
45source "drivers/infiniband/hw/ipath/Kconfig"
46source "drivers/infiniband/hw/qib/Kconfig"
47source "drivers/infiniband/hw/ehca/Kconfig"
48source "drivers/infiniband/hw/amso1100/Kconfig"
49source "drivers/infiniband/hw/cxgb3/Kconfig"
50source "drivers/infiniband/hw/cxgb4/Kconfig"
51source "drivers/infiniband/hw/mlx4/Kconfig"
52source "drivers/infiniband/hw/nes/Kconfig"
53
54source "drivers/infiniband/ulp/ipoib/Kconfig"
55
56source "drivers/infiniband/ulp/srp/Kconfig"
57
58source "drivers/infiniband/ulp/iser/Kconfig"
59
60endif # INFINIBAND