Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

config CONFIG_SUNRPC
	tristate
	depends on CONFIG_MULTIUSER

config CONFIG_SUNRPC_GSS
	tristate
	select CONFIG_OID_REGISTRY
	depends on CONFIG_MULTIUSER

config CONFIG_SUNRPC_BACKCHANNEL
	bool
	depends on CONFIG_SUNRPC

config CONFIG_SUNRPC_SWAP
	bool
	depends on CONFIG_SUNRPC

config CONFIG_RPCSEC_GSS_KRB5
	tristate "Secure RPC: Kerberos V mechanism"
	depends on CONFIG_SUNRPC && CONFIG_CRYPTO
	depends on CONFIG_CRYPTO_MD5 && CONFIG_CRYPTO_DES && CONFIG_CRYPTO_CBC && CONFIG_CRYPTO_CTS
	depends on CONFIG_CRYPTO_ECB && CONFIG_CRYPTO_HMAC && CONFIG_CRYPTO_SHA1 && CONFIG_CRYPTO_AES
	depends on CONFIG_CRYPTO_ARC4
	default y
	select CONFIG_SUNRPC_GSS
	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 Y.

config CONFIG_SUNRPC_DEBUG
	bool "RPC: Enable dprintk debugging"
	depends on CONFIG_SUNRPC && CONFIG_SYSCTL
	select CONFIG_DEBUG_FS
	help
	  This option enables a sysctl-based debugging interface
	  that is be used by the 'rpcdebug' utility to turn on or off
	  logging of different aspects of the kernel RPC activity.

	  Disabling this option will make your kernel slightly smaller,
	  but makes troubleshooting NFS issues significantly harder.

	  If unsure, say Y.

config CONFIG_SUNRPC_XPRT_RDMA
	tristate "RPC-over-RDMA transport"
	depends on CONFIG_SUNRPC && CONFIG_INFINIBAND && CONFIG_INFINIBAND_ADDR_TRANS
	default CONFIG_SUNRPC && CONFIG_INFINIBAND
	help
	  This option allows the NFS client and server to use RDMA
	  transports (InfiniBand, iWARP, or RoCE).

	  To compile this support as a module, choose CONFIG_M. The module
	  will be called rpcrdma.ko.

	  If unsure, or you know there is no RDMA capability on your
	  hardware platform, say N.