mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
811158b147
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (28 commits) trivial: Update my email address trivial: NULL noise: drivers/mtd/tests/mtd_*test.c trivial: NULL noise: drivers/media/dvb/frontends/drx397xD_fw.h trivial: Fix misspelling of "Celsius". trivial: remove unused variable 'path' in alloc_file() trivial: fix a pdlfush -> pdflush typo in comment trivial: jbd header comment typo fix for JBD_PARANOID_IOFAIL trivial: wusb: Storage class should be before const qualifier trivial: drivers/char/bsr.c: Storage class should be before const qualifier trivial: h8300: Storage class should be before const qualifier trivial: fix where cgroup documentation is not correctly referred to trivial: Give the right path in Documentation example trivial: MTD: remove EOL from MODULE_DESCRIPTION trivial: Fix typo in bio_split()'s documentation trivial: PWM: fix of #endif comment trivial: fix typos/grammar errors in Kconfig texts trivial: Fix misspelling of firmware trivial: cgroups: documentation typo and spelling corrections trivial: Update contact info for Jochen Hein trivial: fix typo "resgister" -> "register" ...
57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
config SUNRPC
|
|
tristate
|
|
|
|
config SUNRPC_GSS
|
|
tristate
|
|
|
|
config SUNRPC_XPRT_RDMA
|
|
tristate
|
|
depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS && EXPERIMENTAL
|
|
default SUNRPC && INFINIBAND
|
|
help
|
|
This option allows the NFS client and server to support
|
|
an RDMA-enabled transport.
|
|
|
|
To compile RPC client RDMA transport support as a module,
|
|
choose M here: the module will be called xprtrdma.
|
|
|
|
If unsure, say N.
|
|
|
|
config RPCSEC_GSS_KRB5
|
|
tristate "Secure RPC: Kerberos V mechanism (EXPERIMENTAL)"
|
|
depends on SUNRPC && EXPERIMENTAL
|
|
select SUNRPC_GSS
|
|
select CRYPTO
|
|
select CRYPTO_MD5
|
|
select CRYPTO_DES
|
|
select CRYPTO_CBC
|
|
help
|
|
Choose Y here to enable Secure RPC using the Kerberos version 5
|
|
GSS-API mechanism (RFC 1964).
|
|
|
|
Secure RPC calls with Kerberos require an auxiliary user-space
|
|
daemon which may be found in the Linux nfs-utils package
|
|
available from http://linux-nfs.org/. In addition, user-space
|
|
Kerberos support should be installed.
|
|
|
|
If unsure, say N.
|
|
|
|
config RPCSEC_GSS_SPKM3
|
|
tristate "Secure RPC: SPKM3 mechanism (EXPERIMENTAL)"
|
|
depends on SUNRPC && EXPERIMENTAL
|
|
select SUNRPC_GSS
|
|
select CRYPTO
|
|
select CRYPTO_MD5
|
|
select CRYPTO_DES
|
|
select CRYPTO_CAST5
|
|
select CRYPTO_CBC
|
|
help
|
|
Choose Y here to enable Secure RPC using the SPKM3 public key
|
|
GSS-API mechanism (RFC 2025).
|
|
|
|
Secure RPC calls with SPKM3 require an auxiliary userspace
|
|
daemon which may be found in the Linux nfs-utils package
|
|
available from http://linux-nfs.org/.
|
|
|
|
If unsure, say N.
|