cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Kconfig (1140B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2#
      3# 9P protocol configuration
      4#
      5
      6menuconfig NET_9P
      7	tristate "Plan 9 Resource Sharing Support (9P2000)"
      8	help
      9	  If you say Y here, you will get experimental support for
     10	  Plan 9 resource sharing via the 9P2000 protocol.
     11
     12	  See <http://v9fs.sf.net> for more information.
     13
     14	  If unsure, say N.
     15
     16if NET_9P
     17
     18config NET_9P_FD
     19	default NET_9P
     20	tristate "9P FD Transport"
     21	help
     22	  This builds support for transports over TCP, Unix sockets and
     23	  filedescriptors.
     24
     25config NET_9P_VIRTIO
     26	depends on VIRTIO
     27	tristate "9P Virtio Transport"
     28	help
     29	  This builds support for a transports between
     30	  guest partitions and a host partition.
     31
     32config NET_9P_XEN
     33	depends on XEN
     34	select XEN_XENBUS_FRONTEND
     35	tristate "9P Xen Transport"
     36	help
     37	  This builds support for a transport for 9pfs between
     38	  two Xen domains.
     39
     40
     41config NET_9P_RDMA
     42	depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS
     43	tristate "9P RDMA Transport (Experimental)"
     44	help
     45	  This builds support for an RDMA transport.
     46
     47config NET_9P_DEBUG
     48	bool "Debug information"
     49	help
     50	  Say Y if you want the 9P subsystem to log debug information.
     51
     52endif