Kconfig 1.1 KB

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