thebeanogamer / rpms / qemu-kvm

Forked from rpms/qemu-kvm 5 months ago
Clone

Blame SOURCES/kvm-hw-acpi-Add-ospm_status-hook-implementation-for-acpi.patch

62547e
From edead46187b1e55ad5e238332780aef19f1bc214 Mon Sep 17 00:00:00 2001
62547e
From: Jon Maloy <jmaloy@redhat.com>
62547e
Date: Wed, 9 Nov 2022 18:41:18 -0500
62547e
Subject: [PATCH 1/2] hw/acpi: Add ospm_status hook implementation for acpi-ged
62547e
62547e
RH-Author: Jon Maloy <jmaloy@redhat.com>
62547e
RH-MergeRequest: 228: qemu-kvm: backport some aarch64 fixes
62547e
RH-Bugzilla: 2132609
62547e
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
62547e
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
62547e
RH-Acked-by: Eric Auger <eric.auger@redhat.com>
62547e
RH-Acked-by: Gavin Shan <gshan@redhat.com>
62547e
RH-Commit: [1/2] 99730b1a27666ca745dc28d90751c938d43f1682 (jmaloy/qemu-kvm)
62547e
62547e
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=2132609
62547e
Upstream: Merged
62547e
62547e
commit d4424bebceaa8ffbc23060ce45e52a9bb817e3c9
62547e
Author: Keqian Zhu <zhukeqian1@huawei.com>
62547e
Date:   Tue Aug 16 17:49:57 2022 +0800
62547e
62547e
    hw/acpi: Add ospm_status hook implementation for acpi-ged
62547e
62547e
    Setup an ARM virtual machine of machine virt and execute qmp "query-acpi-ospm-status"
62547e
    causes segmentation fault with following dumpstack:
62547e
     #1  0x0000aaaaab64235c in qmp_query_acpi_ospm_status (errp=errp@entry=0xfffffffff030) at ../monitor/qmp-cmds.c:312
62547e
     #2  0x0000aaaaabfc4e20 in qmp_marshal_query_acpi_ospm_status (args=<optimized out>, ret=0xffffea4ffe90, errp=0xffffea4ffe88) at qapi/qapi-commands-acpi.c:63
62547e
     #3  0x0000aaaaabff8ba0 in do_qmp_dispatch_bh (opaque=0xffffea4ffe98) at ../qapi/qmp-dispatch.c:128
62547e
     #4  0x0000aaaaac02e594 in aio_bh_call (bh=0xffffe0004d80) at ../util/async.c:150
62547e
     #5  aio_bh_poll (ctx=ctx@entry=0xaaaaad0f6040) at ../util/async.c:178
62547e
     #6  0x0000aaaaac00bd40 in aio_dispatch (ctx=ctx@entry=0xaaaaad0f6040) at ../util/aio-posix.c:421
62547e
     #7  0x0000aaaaac02e010 in aio_ctx_dispatch (source=0xaaaaad0f6040, callback=<optimized out>, user_data=<optimized out>) at ../util/async.c:320
62547e
     #8  0x0000fffff76f6884 in g_main_context_dispatch () at /usr/lib64/libglib-2.0.so.0
62547e
     #9  0x0000aaaaac0452d4 in glib_pollfds_poll () at ../util/main-loop.c:297
62547e
     #10 os_host_main_loop_wait (timeout=0) at ../util/main-loop.c:320
62547e
     #11 main_loop_wait (nonblocking=nonblocking@entry=0) at ../util/main-loop.c:596
62547e
     #12 0x0000aaaaab5c9e50 in qemu_main_loop () at ../softmmu/runstate.c:734
62547e
     #13 0x0000aaaaab185370 in qemu_main (argc=argc@entry=47, argv=argv@entry=0xfffffffff518, envp=envp@entry=0x0) at ../softmmu/main.c:38
62547e
     #14 0x0000aaaaab16f99c in main (argc=47, argv=0xfffffffff518) at ../softmmu/main.c:47
62547e
62547e
    Fixes: ebb62075021a ("hw/acpi: Add ACPI Generic Event Device Support")
62547e
    Signed-off-by: Keqian Zhu <zhukeqian1@huawei.com>
62547e
    Reviewed-by: Igor Mammedov <imammedo@redhat.com>
62547e
    Message-id: 20220816094957.31700-1-zhukeqian1@huawei.com
62547e
    Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
62547e
62547e
(cherry picked from commit d4424bebceaa8ffbc23060ce45e52a9bb817e3c9)
62547e
Signed-off-by: Jon Maloy <jmaloy@redhat.com>
62547e
---
62547e
 hw/acpi/generic_event_device.c | 8 ++++++++
62547e
 1 file changed, 8 insertions(+)
62547e
62547e
diff --git a/hw/acpi/generic_event_device.c b/hw/acpi/generic_event_device.c
62547e
index e28457a7d1..a3d31631fe 100644
62547e
--- a/hw/acpi/generic_event_device.c
62547e
+++ b/hw/acpi/generic_event_device.c
62547e
@@ -267,6 +267,13 @@ static void acpi_ged_unplug_cb(HotplugHandler *hotplug_dev,
62547e
     }
62547e
 }
62547e
 
62547e
+static void acpi_ged_ospm_status(AcpiDeviceIf *adev, ACPIOSTInfoList ***list)
62547e
+{
62547e
+    AcpiGedState *s = ACPI_GED(adev);
62547e
+
62547e
+    acpi_memory_ospm_status(&s->memhp_state, list);
62547e
+}
62547e
+
62547e
 static void acpi_ged_send_event(AcpiDeviceIf *adev, AcpiEventStatusBits ev)
62547e
 {
62547e
     AcpiGedState *s = ACPI_GED(adev);
62547e
@@ -409,6 +416,7 @@ static void acpi_ged_class_init(ObjectClass *class, void *data)
62547e
     hc->unplug_request = acpi_ged_unplug_request_cb;
62547e
     hc->unplug = acpi_ged_unplug_cb;
62547e
 
62547e
+    adevc->ospm_status = acpi_ged_ospm_status;
62547e
     adevc->send_event = acpi_ged_send_event;
62547e
 }
62547e
 
62547e
-- 
62547e
2.37.3
62547e