Skip to content

Commit

Permalink
backend:hostmem: replace hostmemory with host_memory
Browse files Browse the repository at this point in the history
..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>
  • Loading branch information
Hu Tao authored and mstsirkin committed Jun 19, 2014
1 parent 9521d42 commit 58f4662
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions backends/hostmem.c
Expand Up @@ -17,8 +17,8 @@
#include "qom/object_interfaces.h"

static void
hostmemory_backend_get_size(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp)
host_memory_backend_get_size(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp)
{
HostMemoryBackend *backend = MEMORY_BACKEND(obj);
uint64_t value = backend->size;
Expand All @@ -27,8 +27,8 @@ hostmemory_backend_get_size(Object *obj, Visitor *v, void *opaque,
}

static void
hostmemory_backend_set_size(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp)
host_memory_backend_set_size(Object *obj, Visitor *v, void *opaque,
const char *name, Error **errp)
{
HostMemoryBackend *backend = MEMORY_BACKEND(obj);
Error *local_err = NULL;
Expand All @@ -53,14 +53,14 @@ hostmemory_backend_set_size(Object *obj, Visitor *v, void *opaque,
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",
hostmemory_backend_get_size,
hostmemory_backend_set_size, NULL, NULL, NULL);
host_memory_backend_get_size,
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);

Expand All @@ -75,14 +75,14 @@ host_memory_backend_get_memory(HostMemoryBackend *backend, Error **errp)
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,
.parent = TYPE_OBJECT,
.abstract = true,
.class_size = sizeof(HostMemoryBackendClass),
.instance_size = sizeof(HostMemoryBackend),
.instance_init = hostmemory_backend_init,
.instance_finalize = hostmemory_backend_finalize,
.instance_init = host_memory_backend_init,
.instance_finalize = host_memory_backend_finalize,
.interfaces = (InterfaceInfo[]) {
{ TYPE_USER_CREATABLE },
{ }
Expand All @@ -91,7 +91,7 @@ static const TypeInfo hostmemory_backend_info = {

static void register_types(void)
{
type_register_static(&hostmemory_backend_info);
type_register_static(&host_memory_backend_info);
}

type_init(register_types);

0 comments on commit 58f4662

Please sign in to comment.