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