Lines Matching +full:memory +full:- +full:to +full:- +full:memory

1 # SPDX-License-Identifier: GPL-2.0-only
6 bool "Xen memory balloon driver"
9 The balloon driver allows the Xen domain to request more memory from
10 the system to expand the domain's memory allocation, or alternatively
11 return unneeded memory to the system.
14 bool "Memory hotplug support for Xen balloon driver"
18 Memory hotplug support for Xen balloon driver allows expanding memory
23 It's also very useful for non PV domains to obtain unpopulated physical
24 memory ranges to use in order to map foreign memory or grants.
26 Memory could be hotplugged in following steps:
28 1) target domain: ensure that memory auto online policy is in
29 effect by checking /sys/devices/system/memory/auto_online_blocks
32 2) control domain: xl mem-max <target-domain> <maxmem>
33 where <maxmem> is >= requested memory size,
35 3) control domain: xl mem-set <target-domain> <memory>
36 where <memory> is requested memory size; alternatively memory
37 could be added by writing proper value to
42 Alternatively, if memory auto onlining was not requested at step 1
43 the newly added memory can be manually onlined in the target domain
46 for i in /sys/devices/system/memory/memory*/state; do \
49 or by adding the following line to udev rules:
51 …SUBSYSTEM=="memory", ACTION=="add", RUN+="/bin/sh -c '[ -f /sys$devpath/state ] && echo online > /…
54 int "Hotplugged memory limit (in GiB) for a PV guest"
59 Maxmium amount of memory (in GiB) that a PV guest can be
60 expanded to when using memory hotplug.
62 A PV guest can have more memory than this limit if is
65 This value is used to allocate enough space in internal
66 tables needed for physical memory administration.
69 bool "Scrub pages before returning them to system by default"
73 Scrub pages before returning them to the system for reuse by
75 is not accidentally visible to other domains. It is more
87 The evtchn driver allows a userspace process to trigger event
88 channels and to receive notification of an event channel
97 to other virtual machines.
104 The xen filesystem provides a way for domains to share
107 may pass arbitrary information to the initial domain.
115 The old xenstore userspace tools expect to find "xenbus"
117 xenfs filesystem. Selecting this causes the kernel to create
142 Allows userspace processes to use grants.
145 bool "Add support for dma-buf grant access device driver extension"
149 Allows userspace processes and kernel modules to use Xen backed
150 dma-buf implementation. With this extension grant references to
151 the pages of an imported dma-buf can be exported for other domain
153 converted into a local dma-buf for local export.
156 tristate "User-space grant reference allocator driver"
160 Allows userspace processes to create pages with access granted
161 to other domains. This can be used to implement frontend drivers
162 or as part of an inter-domain shared memory channel.
168 Extends grant table module API to allow allocating DMA capable
170 The resulting buffer is similar to one allocated by the balloon
171 driver in that proper memory reservation is made by
176 but require DMAable memory instead.
184 tristate "Xen PCI-device backend driver"
189 The PCI device backend driver allows the kernel to export arbitrary
190 PCI devices to other guests. If you select this to be a module, you
191 will need to make sure no other driver has bound to the device(s)
192 you want to make visible to other guests.
195 devices to appear in the guest. You can choose the default (0) where
200 into the kernel) allows you to bind the PCI devices to this module
202 xen-pciback.hide=(03:00.0)(04:00.0)
213 sends a small set of POSIX calls to the backend, which
222 allows PV Calls frontends to send POSIX calls to the backend,
231 The SCSI backend driver allows the kernel to export its SCSI Devices
232 to other guests via a high-performance shared-memory interface.
234 if guests need generic access to SCSI devices.
245 Allow kernel to install stub drivers, to reserve space for Xen drivers,
246 i.e. memory hotplug and cpu hotplug, and to block native drivers loaded,
249 To enable Xen features like cpu and memory hotplug, select Y here.
252 tristate "Xen ACPI memory hotplug"
255 This is Xen ACPI memory hotplug.
257 Currently Xen only support ACPI memory hot-add. If you want
258 to hot-add memory at runtime (the hot-added memory cannot be
269 If you want to hotadd cpu at runtime (the hotadded cpu cannot
277 This ACPI processor uploads Power Management information to the Xen
280 To do that the driver parses the Power Management data and uploads
281 said information to the Xen hypervisor. Then the Xen hypervisor can
286 To compile this driver as a module, choose M here: the module will be
287 called xen_acpi_processor If you do not know what to choose, select
308 Support for auto-translated physmap guests.
320 /proc/xen/xensyms file, similar to /proc/kallsyms
329 bool "Use unpopulated memory ranges for guest mappings"
333 Use unpopulated memory ranges in order to create mappings for guest
334 memory regions, including grant maps and foreign pages. This avoids
335 having to balloon out RAM regions in order to obtain physical memory
336 space to create such mappings.