David Hildenbrand <da...@redhat.com> writes: > Let's include the property, which can be helpful when debugging, > for example, to spot misuse of MAP_PRIVATE which can result in some ugly > corner cases (e.g., double-memory consumption on shmem). > > Use the same description we also use for describing the property. > > Reviewed-by: Philippe Mathieu-Daudé <phi...@redhat.com> > Cc: Eric Blake <ebl...@redhat.com> > Cc: Markus Armbruster <arm...@redhat.com> > Cc: Igor Mammedov <imamm...@redhat.com> > Signed-off-by: David Hildenbrand <da...@redhat.com> > --- > hw/core/machine-qmp-cmds.c | 1 + > qapi/machine.json | 3 +++ > 2 files changed, 4 insertions(+) > > diff --git a/hw/core/machine-qmp-cmds.c b/hw/core/machine-qmp-cmds.c > index 68a942595a..d41db5b93b 100644 > --- a/hw/core/machine-qmp-cmds.c > +++ b/hw/core/machine-qmp-cmds.c > @@ -174,6 +174,7 @@ static int query_memdev(Object *obj, void *opaque) > m->merge = object_property_get_bool(obj, "merge", &error_abort); > m->dump = object_property_get_bool(obj, "dump", &error_abort); > m->prealloc = object_property_get_bool(obj, "prealloc", > &error_abort); > + m->share = object_property_get_bool(obj, "share", &error_abort); > m->policy = object_property_get_enum(obj, "policy", "HostMemPolicy", > &error_abort); > host_nodes = object_property_get_qobject(obj, > diff --git a/qapi/machine.json b/qapi/machine.json > index 758b901185..32650bfe9e 100644 > --- a/qapi/machine.json > +++ b/qapi/machine.json > @@ -796,6 +796,8 @@ > # > # @prealloc: whether memory was preallocated > # > +# @share: whether memory is private to QEMU or shared (since 6.1) > +# > # @host-nodes: host nodes for its memory policy > # > # @policy: memory policy of memory backend > @@ -809,6 +811,7 @@ > 'merge': 'bool', > 'dump': 'bool', > 'prealloc': 'bool', > + 'share': 'bool', > 'host-nodes': ['uint16'], > 'policy': 'HostMemPolicy' }}
Reviewed-by: Markus Armbruster <arm...@redhat.com>