From 98ee8aa92e930a447c6108d4689f0bf8b535359d Mon Sep 17 00:00:00 2001 From: Peter Xu Date: Mon, 24 Nov 2025 14:14:08 -0500 Subject: [PATCH] hw/core/machine: Provide a description for aux-ram-share property MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It was forgotten when being introduced in commit 91792807d1 ("machine: aux-ram-share option"). Cc: qemu-stable@nongnu.org Reported-by: Peter Maydell Signed-off-by: Peter Xu Reviewed-by: Fabiano Rosas Message-ID: <20251124191408.783473-1-peterx@redhat.com> Signed-off-by: Philippe Mathieu-Daudé --- hw/core/machine.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/core/machine.c b/hw/core/machine.c index 06e0c9a179..27372bb01e 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -1204,6 +1204,8 @@ static void machine_class_init(ObjectClass *oc, const void *data) object_class_property_add_bool(oc, "aux-ram-share", machine_get_aux_ram_share, machine_set_aux_ram_share); + object_class_property_set_description(oc, "aux-ram-share", + "Use anonymous shared memory for auxiliary guest RAMs"); #endif object_class_property_add_bool(oc, "usb", -- 2.47.3