mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
kvm: convert "-machine kvm_shadow_mem" to an accelerator property
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
46472d8232
commit
23b0898e44
6 changed files with 51 additions and 45 deletions
|
@ -34,7 +34,6 @@ DEF("machine", HAS_ARG, QEMU_OPTION_machine, \
|
|||
" supported accelerators are kvm, xen, hax, hvf, whpx or tcg (default: tcg)\n"
|
||||
" kernel_irqchip=on|off|split controls accelerated irqchip support (default=off)\n"
|
||||
" vmport=on|off|auto controls emulation of vmport (default: auto)\n"
|
||||
" kvm_shadow_mem=size of KVM shadow MMU in bytes\n"
|
||||
" dump-guest-core=on|off include guest memory in a core dump (default=on)\n"
|
||||
" mem-merge=on|off controls memory merge support (default: on)\n"
|
||||
" aes-key-wrap=on|off controls support for AES key wrapping (default=on)\n"
|
||||
|
@ -74,8 +73,6 @@ Controls in-kernel irqchip support for the chosen accelerator when available.
|
|||
Enables emulation of VMWare IO port, for vmmouse etc. auto says to select the
|
||||
value based on accel. For accel=xen the default is off otherwise the default
|
||||
is on.
|
||||
@item kvm_shadow_mem=size
|
||||
Defines the size of the KVM shadow MMU.
|
||||
@item dump-guest-core=on|off
|
||||
Include guest memory in a core dump. The default is on.
|
||||
@item mem-merge=on|off
|
||||
|
@ -118,6 +115,7 @@ DEF("accel", HAS_ARG, QEMU_OPTION_accel,
|
|||
"-accel [accel=]accelerator[,prop[=value][,...]]\n"
|
||||
" select accelerator (kvm, xen, hax, hvf, whpx or tcg; use 'help' for a list)\n"
|
||||
" igd-passthru=on|off (enable Xen integrated Intel graphics passthrough, default=off)\n"
|
||||
" kvm-shadow-mem=size of KVM shadow MMU in bytes\n"
|
||||
" tb-size=n (TCG translation block cache size)\n"
|
||||
" thread=single|multi (enable multi-threaded TCG)\n", QEMU_ARCH_ALL)
|
||||
STEXI
|
||||
|
@ -131,6 +129,8 @@ fails to initialize.
|
|||
@item igd-passthru=on|off
|
||||
When Xen is in use, this option controls whether Intel integrated graphics
|
||||
devices can be passed through to the guest (default=off)
|
||||
@item kvm-shadow-mem=size
|
||||
Defines the size of the KVM shadow MMU.
|
||||
@item tb-size=@var{n}
|
||||
Controls the size (in MiB) of the TCG translation block cache.
|
||||
@item thread=single|multi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue