Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #
  2. # KVM configuration
  3. #
  4. source "virt/kvm/Kconfig"
  5. menuconfig VIRTUALIZATION
  6. bool "Virtualization"
  7. ---help---
  8. Say Y here to get to see options for using your Linux host to run
  9. other operating systems inside virtual machines (guests).
  10. This option alone does not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and disabled.
  12. if VIRTUALIZATION
  13. config KVM
  14. tristate "Kernel-based Virtual Machine (KVM) support"
  15. depends on HAVE_KVM
  16. select EXPORT_UASM
  17. select PREEMPT_NOTIFIERS
  18. select ANON_INODES
  19. select KVM_MMIO
  20. select SRCU
  21. ---help---
  22. Support for hosting Guest kernels.
  23. Currently supported on MIPS32 processors.
  24. config KVM_MIPS_DYN_TRANS
  25. bool "KVM/MIPS: Dynamic binary translation to reduce traps"
  26. depends on KVM
  27. ---help---
  28. When running in Trap & Emulate mode patch privileged
  29. instructions to reduce the number of traps.
  30. If unsure, say Y.
  31. config KVM_MIPS_DEBUG_COP0_COUNTERS
  32. bool "Maintain counters for COP0 accesses"
  33. depends on KVM
  34. ---help---
  35. Maintain statistics for Guest COP0 accesses.
  36. A histogram of COP0 accesses is printed when the VM is
  37. shutdown.
  38. If unsure, say N.
  39. source drivers/vhost/Kconfig
  40. endif # VIRTUALIZATION