diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-01-16 15:59:34 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-05-06 15:01:23 +0100 |
commit | 7f48918a372120a63f18712aa27de5e13b76bbf7 (patch) | |
tree | d079039d01ceb0603376591a7d2a4f653479d950 /include/hw/arm | |
parent | 514712d5277de5237a49a4852f0f90c51696f94c (diff) | |
download | qemu-7f48918a372120a63f18712aa27de5e13b76bbf7.zip qemu-7f48918a372120a63f18712aa27de5e13b76bbf7.tar.gz qemu-7f48918a372120a63f18712aa27de5e13b76bbf7.tar.bz2 |
hw/arm/virt: Remove VirtMachineClass::disallow_affinity_adjustment
The VirtMachineClass::disallow_affinity_adjustment
field was only used by virt-2.6 machine, which got
removed. Remove it and simplify virt_cpu_mp_affinity().
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
[PMM: Remove now-unused variable]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/arm')
-rw-r--r-- | include/hw/arm/virt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/arm/virt.h b/include/hw/arm/virt.h index 27c5bb5..5d3b255 100644 --- a/include/hw/arm/virt.h +++ b/include/hw/arm/virt.h @@ -117,7 +117,6 @@ typedef enum VirtGICType { struct VirtMachineClass { MachineClass parent; - bool disallow_affinity_adjustment; bool no_its; bool no_tcg_its; bool claim_edge_triggered_timers; |