Kconfig 963 B

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