Kconfig 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # 9P protocol configuration
  4. #
  5. menuconfig NET_9P
  6. depends on NET
  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. See <http://v9fs.sf.net> for more information.
  12. If unsure, say N.
  13. if NET_9P
  14. config NET_9P_VIRTIO
  15. depends on VIRTIO
  16. tristate "9P Virtio Transport"
  17. help
  18. This builds support for a transports between
  19. guest partitions and a host partition.
  20. config NET_9P_XEN
  21. depends on XEN
  22. select XEN_XENBUS_FRONTEND
  23. tristate "9P Xen Transport"
  24. help
  25. This builds support for a transport for 9pfs between
  26. two Xen domains.
  27. config NET_9P_RDMA
  28. depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS
  29. tristate "9P RDMA Transport (Experimental)"
  30. help
  31. This builds support for an RDMA transport.
  32. config NET_9P_DEBUG
  33. bool "Debug information"
  34. help
  35. Say Y if you want the 9P subsystem to log debug information.
  36. endif