Kconfig 943 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Virtio always gets selected by whoever wants it.
  2. config VIRTIO
  3. tristate
  4. # Similarly the virtio ring implementation.
  5. config VIRTIO_RING
  6. tristate
  7. depends on VIRTIO
  8. config VIRTIO_PCI
  9. tristate "PCI driver for virtio devices (EXPERIMENTAL)"
  10. depends on PCI && EXPERIMENTAL
  11. select VIRTIO
  12. select VIRTIO_RING
  13. ---help---
  14. This drivers provides support for virtio based paravirtual device
  15. drivers over PCI. This requires that your VMM has appropriate PCI
  16. virtio backends. Most QEMU based VMMs should support these devices
  17. (like KVM or Xen).
  18. Currently, the ABI is not considered stable so there is no guarantee
  19. that this version of the driver will work with your VMM.
  20. If unsure, say M.
  21. config VIRTIO_BALLOON
  22. tristate "Virtio balloon driver (EXPERIMENTAL)"
  23. select VIRTIO
  24. select VIRTIO_RING
  25. ---help---
  26. This driver supports increasing and decreasing the amount
  27. of memory within a KVM guest.
  28. If unsure, say M.