]> git.proxmox.com Git - mirror_qemu.git/commit
exec: qemu_ram_alloc_resizeable, qemu_ram_resize
authorMichael S. Tsirkin <mst@redhat.com>
Wed, 12 Nov 2014 12:27:41 +0000 (14:27 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 8 Jan 2015 11:17:54 +0000 (13:17 +0200)
commit62be4e3a5041e84304aa23637da623a205c53ecc
treeee7820454250aba1990d3a07d5ffe8afd4671752
parent9b8424d5735278ca382f11adc7c63072b632ab83
exec: qemu_ram_alloc_resizeable, qemu_ram_resize

Add API to allocate "resizeable" RAM.
This looks just like regular RAM generally, but
has a special property that only a portion of it
(used_length) is actually used, and migrated.

This used_length size can change across reboots.

Follow up patches will change used_length for such blocks at migration,
making it easier to extend devices using such RAM (notably ACPI,
but in the future thinkably other ROMs) without breaking migration
compatibility or wasting ROM (guest) memory.

Device is notified on resize, so it can adjust if necessary.

qemu_ram_alloc_resizeable allocates this memory, qemu_ram_resize resizes
it.

Note: nothing prevents making all RAM resizeable in this way.
However, reviewers felt that only enabling this selectively will
make some class of errors easier to detect.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
exec.c
include/exec/cpu-all.h
include/exec/ram_addr.h