summary refs log tree commit diff stats
path: root/backends/Makefile.objs
diff options
context:
space:
mode:
authorIgor Mammedov <imammedo@redhat.com>2014-06-06 17:54:29 +0200
committerMichael S. Tsirkin <mst@redhat.com>2014-06-18 21:10:30 +0300
commit1f07048933d9c21acb40bce18af4f3ad6bae59b6 (patch)
tree2533a08b489ebf6abb7b4d6f56619fa13a987ce5 /backends/Makefile.objs
parent2d9c2725f7bd08ffaf824b8c823f1423258ec78d (diff)
downloadfocaccia-qemu-1f07048933d9c21acb40bce18af4f3ad6bae59b6.tar.gz
focaccia-qemu-1f07048933d9c21acb40bce18af4f3ad6bae59b6.zip
add memdev backend infrastructure
Provides framework for splitting host RAM allocation/
policies into a separate backend that could be used
by devices.

Initially only legacy RAM backend is provided, which
uses memory_region_init_ram() allocator and compatible
with every CLI option that affects memory_region_init_ram().

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'backends/Makefile.objs')
-rw-r--r--backends/Makefile.objs2
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/Makefile.objs b/backends/Makefile.objs
index 591ddcf6f3..7fb7acdd11 100644
--- a/backends/Makefile.objs
+++ b/backends/Makefile.objs
@@ -6,3 +6,5 @@ common-obj-$(CONFIG_BRLAPI) += baum.o
 baum.o-cflags := $(SDL_CFLAGS)
 
 common-obj-$(CONFIG_TPM) += tpm.o
+
+common-obj-y += hostmem.o hostmem-ram.o