]> git.proxmox.com Git - mirror_qemu.git/blame - backends/hostmem-ram.c
block/parallels: create bat_entry_off helper
[mirror_qemu.git] / backends / hostmem-ram.c
CommitLineData
1f070489
IM
1/*
2 * QEMU Host Memory Backend
3 *
4 * Copyright (C) 2013-2014 Red Hat Inc
5 *
6 * Authors:
7 * Igor Mammedov <imammedo@redhat.com>
8 *
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.
11 */
12#include "sysemu/hostmem.h"
13#include "qom/object_interfaces.h"
14
15#define TYPE_MEMORY_BACKEND_RAM "memory-backend-ram"
16
17
18static void
bd9262d9 19ram_backend_memory_alloc(HostMemoryBackend *backend, Error **errp)
1f070489 20{
1f070489
IM
21 char *path;
22
23 if (!backend->size) {
24 error_setg(errp, "can't create backend with size 0");
25 return;
26 }
27
28 path = object_get_canonical_path_component(OBJECT(backend));
29 memory_region_init_ram(&backend->mr, OBJECT(backend), path,
d42e2de7 30 backend->size, errp);
1f070489
IM
31 g_free(path);
32}
33
34static void
35ram_backend_class_init(ObjectClass *oc, void *data)
36{
bd9262d9 37 HostMemoryBackendClass *bc = MEMORY_BACKEND_CLASS(oc);
1f070489 38
bd9262d9 39 bc->alloc = ram_backend_memory_alloc;
1f070489
IM
40}
41
42static const TypeInfo ram_backend_info = {
43 .name = TYPE_MEMORY_BACKEND_RAM,
44 .parent = TYPE_MEMORY_BACKEND,
45 .class_init = ram_backend_class_init,
46};
47
48static void register_types(void)
49{
50 type_register_static(&ram_backend_info);
51}
52
53type_init(register_types);