Kconfig 788 B

123456789101112131415161718192021222324252627282930313233343536
  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_RDMA
  20. depends on INET && INFINIBAND && INFINIBAND_ADDR_TRANS
  21. tristate "9P RDMA Transport (Experimental)"
  22. help
  23. This builds support for an RDMA transport.
  24. config NET_9P_DEBUG
  25. bool "Debug information"
  26. help
  27. Say Y if you want the 9P subsystem to log debug information.
  28. endif