qemu-devel
[Top][All Lists]
Advanced

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

Re: [RFC PATCH 4/5] hw/i386/q35: Wire virtual SMI# lines to ICH9 chipset


From: Thomas Huth
Subject: Re: [RFC PATCH 4/5] hw/i386/q35: Wire virtual SMI# lines to ICH9 chipset
Date: Thu, 7 Mar 2024 20:43:06 +0100
User-agent: Mozilla Thunderbird

On 28/02/2024 17.43, Zhao Liu wrote:
Hi Philippe,

+/*
+ * Real ICH9 contains a single SMI output line and doesn't broadcast CPUs.
+ * Virtualized ICH9 allows broadcasting upon negatiation with guest, see
+ * commit 5ce45c7a2b.
+ */
+enum {
+    ICH9_VIRT_SMI_BROADCAST,
+    ICH9_VIRT_SMI_CURRENT,
+#define ICH9_VIRT_SMI_COUNT 2
+};
+

Just quick look here. Shouldn't ICH9_VIRT_SMI_COUNT be defined outside of
enum {}?

Or even better, do it without a #define:

enum {
    ICH9_VIRT_SMI_BROADCAST,
    ICH9_VIRT_SMI_CURRENT,
    ICH9_VIRT_SMI_COUNT
};

 Thomas




reply via email to

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