Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 PREEMPT_NOTIFIERS
  17. select ANON_INODES
  18. select KVM_MMIO
  19. select SRCU
  20. ---help---
  21. Support for hosting Guest kernels.
  22. Currently supported on MIPS32 processors.
  23. config KVM_MIPS_DYN_TRANS
  24. bool "KVM/MIPS: Dynamic binary translation to reduce traps"
  25. depends on KVM
  26. ---help---
  27. When running in Trap & Emulate mode patch privileged
  28. instructions to reduce the number of traps.
  29. If unsure, say Y.
  30. config KVM_MIPS_DEBUG_COP0_COUNTERS
  31. bool "Maintain counters for COP0 accesses"
  32. depends on KVM
  33. ---help---
  34. Maintain statistics for Guest COP0 accesses.
  35. A histogram of COP0 accesses is printed when the VM is
  36. shutdown.
  37. If unsure, say N.
  38. source drivers/vhost/Kconfig
  39. endif # VIRTUALIZATION