]> git.proxmox.com Git - mirror_qemu.git/commit - memory.c
memory: API to allocate resizeable RAM MR
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 16 Nov 2014 22:24:36 +0000 (00:24 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Thu, 8 Jan 2015 11:17:55 +0000 (13:17 +0200)
commit60786ef33928332ccef21f99503f56d781fade0c
tree753ad52ec84d825b4d5e4c878ac99f62e032226b
parentb0cc3f839751bd83bdfcc480097c981c7aa1f3ec
memory: API to allocate resizeable RAM MR

Add API to allocate resizeable RAM MR.

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.

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>
include/exec/memory.h
memory.c