backend:hostmem: replace hostmemory with host_memory

..to keep names consistant.

Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
Hu Tao 2014-06-10 19:15:18 +08:00 committed by Michael S. Tsirkin
parent 9521d42b54
commit 58f4662c6c
1 changed files with 12 additions and 12 deletions

View File

@ -17,8 +17,8 @@
#include "qom/object_interfaces.h" #include "qom/object_interfaces.h"
static void static void
hostmemory_backend_get_size(Object *obj, Visitor *v, void *opaque, host_memory_backend_get_size(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp) const char *name, Error **errp)
{ {
HostMemoryBackend *backend = MEMORY_BACKEND(obj); HostMemoryBackend *backend = MEMORY_BACKEND(obj);
uint64_t value = backend->size; uint64_t value = backend->size;
@ -27,8 +27,8 @@ hostmemory_backend_get_size(Object *obj, Visitor *v, void *opaque,
} }
static void static void
hostmemory_backend_set_size(Object *obj, Visitor *v, void *opaque, host_memory_backend_set_size(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp) const char *name, Error **errp)
{ {
HostMemoryBackend *backend = MEMORY_BACKEND(obj); HostMemoryBackend *backend = MEMORY_BACKEND(obj);
Error *local_err = NULL; Error *local_err = NULL;
@ -53,14 +53,14 @@ out:
error_propagate(errp, local_err); error_propagate(errp, local_err);
} }
static void hostmemory_backend_init(Object *obj) static void host_memory_backend_init(Object *obj)
{ {
object_property_add(obj, "size", "int", object_property_add(obj, "size", "int",
hostmemory_backend_get_size, host_memory_backend_get_size,
hostmemory_backend_set_size, NULL, NULL, NULL); host_memory_backend_set_size, NULL, NULL, NULL);
} }
static void hostmemory_backend_finalize(Object *obj) static void host_memory_backend_finalize(Object *obj)
{ {
HostMemoryBackend *backend = MEMORY_BACKEND(obj); HostMemoryBackend *backend = MEMORY_BACKEND(obj);
@ -75,14 +75,14 @@ host_memory_backend_get_memory(HostMemoryBackend *backend, Error **errp)
return memory_region_size(&backend->mr) ? &backend->mr : NULL; return memory_region_size(&backend->mr) ? &backend->mr : NULL;
} }
static const TypeInfo hostmemory_backend_info = { static const TypeInfo host_memory_backend_info = {
.name = TYPE_MEMORY_BACKEND, .name = TYPE_MEMORY_BACKEND,
.parent = TYPE_OBJECT, .parent = TYPE_OBJECT,
.abstract = true, .abstract = true,
.class_size = sizeof(HostMemoryBackendClass), .class_size = sizeof(HostMemoryBackendClass),
.instance_size = sizeof(HostMemoryBackend), .instance_size = sizeof(HostMemoryBackend),
.instance_init = hostmemory_backend_init, .instance_init = host_memory_backend_init,
.instance_finalize = hostmemory_backend_finalize, .instance_finalize = host_memory_backend_finalize,
.interfaces = (InterfaceInfo[]) { .interfaces = (InterfaceInfo[]) {
{ TYPE_USER_CREATABLE }, { TYPE_USER_CREATABLE },
{ } { }
@ -91,7 +91,7 @@ static const TypeInfo hostmemory_backend_info = {
static void register_types(void) static void register_types(void)
{ {
type_register_static(&hostmemory_backend_info); type_register_static(&host_memory_backend_info);
} }
type_init(register_types); type_init(register_types);