Kconfig 812 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Vsock protocol
  3. #
  4. config VSOCKETS
  5. tristate "Virtual Socket protocol"
  6. help
  7. Virtual Socket Protocol is a socket protocol similar to TCP/IP
  8. allowing communication between Virtual Machines and hypervisor
  9. or host.
  10. You should also select one or more hypervisor-specific transports
  11. below.
  12. To compile this driver as a module, choose M here: the module
  13. will be called vsock. If unsure, say N.
  14. config VMWARE_VMCI_VSOCKETS
  15. tristate "VMware VMCI transport for Virtual Sockets"
  16. depends on VSOCKETS && VMWARE_VMCI
  17. help
  18. This module implements a VMCI transport for Virtual Sockets.
  19. Enable this transport if your Virtual Machine runs on a VMware
  20. hypervisor.
  21. To compile this driver as a module, choose M here: the module
  22. will be called vmw_vsock_vmci_transport. If unsure, say N.