hostmem: allow preallocation of any memory region
[qemu/ar7.git] / backends / hostmem-file.c
blob92659c119d12478969a81abdf95d6ee167d96d66
1 /*
2 * QEMU Host Memory Backend for hugetlbfs
4 * Copyright (C) 2013-2014 Red Hat Inc
6 * Authors:
7 * Paolo Bonzini <pbonzini@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
12 #include "qemu-common.h"
13 #include "sysemu/hostmem.h"
14 #include "sysemu/sysemu.h"
15 #include "qom/object_interfaces.h"
17 /* hostmem-file.c */
18 /**
19 * @TYPE_MEMORY_BACKEND_FILE:
20 * name of backend that uses mmap on a file descriptor
22 #define TYPE_MEMORY_BACKEND_FILE "memory-backend-file"
24 #define MEMORY_BACKEND_FILE(obj) \
25 OBJECT_CHECK(HostMemoryBackendFile, (obj), TYPE_MEMORY_BACKEND_FILE)
27 typedef struct HostMemoryBackendFile HostMemoryBackendFile;
29 struct HostMemoryBackendFile {
30 HostMemoryBackend parent_obj;
31 char *mem_path;
34 static void
35 file_backend_memory_alloc(HostMemoryBackend *backend, Error **errp)
37 HostMemoryBackendFile *fb = MEMORY_BACKEND_FILE(backend);
39 if (!backend->size) {
40 error_setg(errp, "can't create backend with size 0");
41 return;
43 if (!fb->mem_path) {
44 error_setg(errp, "mem_path property not set");
45 return;
47 #ifndef CONFIG_LINUX
48 error_setg(errp, "-mem-path not supported on this host");
49 #else
50 if (!memory_region_size(&backend->mr)) {
51 backend->force_prealloc = mem_prealloc;
52 memory_region_init_ram_from_file(&backend->mr, OBJECT(backend),
53 object_get_canonical_path(OBJECT(backend)),
54 backend->size,
55 fb->mem_path, errp);
57 #endif
60 static void
61 file_backend_class_init(ObjectClass *oc, void *data)
63 HostMemoryBackendClass *bc = MEMORY_BACKEND_CLASS(oc);
65 bc->alloc = file_backend_memory_alloc;
68 static char *get_mem_path(Object *o, Error **errp)
70 HostMemoryBackendFile *fb = MEMORY_BACKEND_FILE(o);
72 return g_strdup(fb->mem_path);
75 static void set_mem_path(Object *o, const char *str, Error **errp)
77 HostMemoryBackend *backend = MEMORY_BACKEND(o);
78 HostMemoryBackendFile *fb = MEMORY_BACKEND_FILE(o);
80 if (memory_region_size(&backend->mr)) {
81 error_setg(errp, "cannot change property value");
82 return;
84 if (fb->mem_path) {
85 g_free(fb->mem_path);
87 fb->mem_path = g_strdup(str);
90 static void
91 file_backend_instance_init(Object *o)
93 object_property_add_str(o, "mem-path", get_mem_path,
94 set_mem_path, NULL);
97 static const TypeInfo file_backend_info = {
98 .name = TYPE_MEMORY_BACKEND_FILE,
99 .parent = TYPE_MEMORY_BACKEND,
100 .class_init = file_backend_class_init,
101 .instance_init = file_backend_instance_init,
102 .instance_size = sizeof(HostMemoryBackendFile),
105 static void register_types(void)
107 type_register_static(&file_backend_info);
110 type_init(register_types);