qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH_V3] Adding ifdefs to call the respective routines only when t


From: Richard Henderson
Subject: Re: [PATCH_V3] Adding ifdefs to call the respective routines only when their configs are enabled
Date: Mon, 24 May 2021 20:20:30 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1

On 5/24/21 7:58 PM, Swetha Joshi wrote:
Signed-off-by: Swetha Joshi <swethajoshi139@gmail.com>
---
  target/arm/kvm64.c | 12 ++++++++----
  1 file changed, 8 insertions(+), 4 deletions(-)

You're still missing the commit message.


diff --git a/target/arm/kvm64.c b/target/arm/kvm64.c
index dff85f6db9..47a4d9d831 100644
--- a/target/arm/kvm64.c
+++ b/target/arm/kvm64.c
@@ -1403,7 +1403,10 @@ void kvm_arch_on_sigbus_vcpu(CPUState *c, int code, void 
*addr)
      hwaddr paddr;
      Object *obj = qdev_get_machine();
      VirtMachineState *vms = VIRT_MACHINE(obj);
-    bool acpi_enabled = virt_is_acpi_enabled(vms);
+    bool acpi_enabled = false;
+#ifdef CONFIG_ARM_VIRT
+    acpi_enabled = virt_is_acpi_enabled(vms);
+#endif /* CONFIG_ARM_VIRT */
assert(code == BUS_MCEERR_AR || code == BUS_MCEERR_AO); @@ -1426,12 +1429,13 @@ void kvm_arch_on_sigbus_vcpu(CPUState *c, int code, void *addr)
               */
              if (code == BUS_MCEERR_AR) {
                  kvm_cpu_synchronize_state(c);
-                if (!acpi_ghes_record_errors(ACPI_HEST_SRC_ID_SEA, paddr)) {
-                    kvm_inject_arm_sea(c);
-                } else {
+#ifdef CONFIG_ACPI_APEI
+                if (acpi_ghes_record_errors(ACPI_HEST_SRC_ID_SEA, paddr)) {
                      error_report("failed to record the error");
                      abort();
                  }
+#endif /* CONFIG_ACPI_APEI */
+                kvm_inject_arm_sea(c);
              }

Otherwise the actual patch looks ok.

I'm a bit surprised that you need the second hunk. I would have expected the entire block to be optimized away with the 'acpi_enabled = false' being propagated into the outermost IF.


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]