Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. config XEN_BALLOON
  2. bool "Xen memory balloon driver"
  3. depends on XEN
  4. default y
  5. help
  6. The balloon driver allows the Xen domain to request more memory from
  7. the system to expand the domain's memory allocation, or alternatively
  8. return unneeded memory to the system.
  9. config XEN_SCRUB_PAGES
  10. bool "Scrub pages before returning them to system"
  11. depends on XEN_BALLOON
  12. default y
  13. help
  14. Scrub pages before returning them to the system for reuse by
  15. other domains. This makes sure that any confidential data
  16. is not accidentally visible to other domains. Is it more
  17. secure, but slightly less efficient.
  18. If in doubt, say yes.
  19. config XEN_DEV_EVTCHN
  20. tristate "Xen /dev/xen/evtchn device"
  21. depends on XEN
  22. default y
  23. help
  24. The evtchn driver allows a userspace process to triger event
  25. channels and to receive notification of an event channel
  26. firing.
  27. If in doubt, say yes.
  28. config XENFS
  29. tristate "Xen filesystem"
  30. depends on XEN
  31. default y
  32. help
  33. The xen filesystem provides a way for domains to share
  34. information with each other and with the hypervisor.
  35. For example, by reading and writing the "xenbus" file, guests
  36. may pass arbitrary information to the initial domain.
  37. If in doubt, say yes.
  38. config XEN_COMPAT_XENFS
  39. bool "Create compatibility mount point /proc/xen"
  40. depends on XENFS
  41. default y
  42. help
  43. The old xenstore userspace tools expect to find "xenbus"
  44. under /proc/xen, but "xenbus" is now found at the root of the
  45. xenfs filesystem. Selecting this causes the kernel to create
  46. the compatibility mount point /proc/xen if it is running on
  47. a xen platform.
  48. If in doubt, say yes.
  49. config XEN_SYS_HYPERVISOR
  50. bool "Create xen entries under /sys/hypervisor"
  51. depends on XEN && SYSFS
  52. select SYS_HYPERVISOR
  53. default y
  54. help
  55. Create entries under /sys/hypervisor describing the Xen
  56. hypervisor environment. When running native or in another
  57. virtual environment, /sys/hypervisor will still be present,
  58. but will have no xen contents.