Kconfig 2.0 KB

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