diff options
| author | Daniel P. Berrange | 2015-05-13 18:14:02 +0200 |
|---|---|---|
| committer | Andreas Färber | 2015-06-19 18:36:56 +0200 |
| commit | b1028b4e8683740cd257a9b77577734664e61511 (patch) | |
| tree | db1103606265dcd269134cacc00bdd7602b30922 /backends | |
| parent | scripts: Add support for path as argument of qom-tree (diff) | |
| download | qemu-b1028b4e8683740cd257a9b77577734664e61511.tar.gz qemu-b1028b4e8683740cd257a9b77577734664e61511.tar.xz qemu-b1028b4e8683740cd257a9b77577734664e61511.zip | |
backends: Fix typename of 'policy' enum property in hostmem obj
The 'policy' property was being registered with a typename of
'str', but it is in fact an enum of the 'HostMemPolicy' type.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'backends')
| -rw-r--r-- | backends/hostmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/hostmem.c b/backends/hostmem.c index b7b6cf8f4a..f6db33c14e 100644 --- a/backends/hostmem.c +++ b/backends/hostmem.c @@ -252,7 +252,7 @@ static void host_memory_backend_init(Object *obj) object_property_add(obj, "host-nodes", "int", host_memory_backend_get_host_nodes, host_memory_backend_set_host_nodes, NULL, NULL, NULL); - object_property_add(obj, "policy", "str", + object_property_add(obj, "policy", "HostMemPolicy", host_memory_backend_get_policy, host_memory_backend_set_policy, NULL, NULL, NULL); } |
