[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 23/29] i386: Fix signedness of hyperv_spinlock_attemp
From: |
Eduardo Habkost |
Subject: |
[Qemu-devel] [PULL 23/29] i386: Fix signedness of hyperv_spinlock_attempts |
Date: |
Thu, 27 Jun 2019 22:56:00 -0300 |
The current default value for hv-spinlocks is 0xFFFFFFFF (meaning
"never retry"). However, the value is stored as a signed
integer, making the getter of the hv-spinlocks QOM property
return -1 instead of 0xFFFFFFFF.
Fix this by changing the type of X86CPU::hyperv_spinlock_attempts
to uint32_t. This has no visible effect to guest operating
systems, affecting just the behavior of the QOM getter.
Signed-off-by: Eduardo Habkost <address@hidden>
Message-Id: <address@hidden>
Reviewed-by: Vitaly Kuznetsov <address@hidden>
Reviewed-by: Roman Kagan <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>
---
target/i386/cpu.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/i386/cpu.h b/target/i386/cpu.h
index 4d2ae2384e..ff26351538 100644
--- a/target/i386/cpu.h
+++ b/target/i386/cpu.h
@@ -1408,7 +1408,7 @@ struct X86CPU {
CPUNegativeOffsetState neg;
CPUX86State env;
- int hyperv_spinlock_attempts;
+ uint32_t hyperv_spinlock_attempts;
char *hyperv_vendor_id;
bool hyperv_synic_kvm_only;
uint64_t hyperv_features;
--
2.18.0.rc1.1.g3f1ff2140
- [Qemu-devel] [PULL 15/29] pc: fix possible NULL pointer dereference in pc_machine_get_device_memory_region_size(), (continued)
- [Qemu-devel] [PULL 15/29] pc: fix possible NULL pointer dereference in pc_machine_get_device_memory_region_size(), Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 14/29] i386: Update new x86_apicid parsing rules with die_offset support, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 17/29] numa: deprecate 'mem' parameter of '-numa node' option, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 18/29] numa: deprecate implict memory distribution between nodes, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 21/29] deprecate -mem-path fallback to anonymous RAM, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 19/29] hppa: Delete unused hppa_cpu_list() function, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 20/29] target/i386: fix feature check in hyperv-stub.c, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 22/29] i386: Don't print warning if phys-bits was set automatically, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 26/29] i386: Remove unused host_cpudef variable, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 25/29] x86/cpu: use FeatureWordArray to define filtered_features, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 23/29] i386: Fix signedness of hyperv_spinlock_attempts,
Eduardo Habkost <=
- [Qemu-devel] [PULL 29/29] vl.c: Add -smp, dies=* command line support and update doc, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 27/29] target/i386: Add CPUID.1F generation support for multi-dies PCMachine, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 24/29] i386: make 'hv-spinlocks' a regular uint32 property, Eduardo Habkost, 2019/06/27
- [Qemu-devel] [PULL 28/29] machine: Refactor smp_parse() in vl.c as MachineClass::smp_parse(), Eduardo Habkost, 2019/06/27
- Re: [Qemu-devel] [PULL 00/29] Machine next patches, no-reply, 2019/06/28