Skip to content

Commit

Permalink
hw/i386: changes towards enabling -Wshadow=local for x86 machines
Browse files Browse the repository at this point in the history
Code changes that addresses all compiler complaints coming from enabling
-Wshadow flags. Enabling -Wshadow catches cases of local variables shadowing
other local variables or parameters. These makes the code confusing and/or adds
bugs that are difficult to catch.

See also

   Subject: Help wanted for enabling -Wshadow=local
   Message-Id: <[email protected]>
   https://lore.kernel.org/qemu-devel/[email protected]

CC: Markus Armbruster <[email protected]>
CC: Philippe Mathieu-Daude <[email protected]>
CC: [email protected]

Signed-off-by: Ani Sinha <[email protected]>
Reviewed-by: Daniel P. Berrangé <[email protected]>
Reviewed-by: Peter Xu <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Markus Armbruster <[email protected]>
  • Loading branch information
ani-sinha authored and Markus Armbruster committed Oct 6, 2023
1 parent 668a631 commit 3636367
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions hw/i386/acpi-microvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ static void acpi_dsdt_add_virtio(Aml *scope,

bus = sysbus_get_default();
QTAILQ_FOREACH(kid, &bus->children, sibling) {
DeviceState *dev = kid->child;
Object *obj = object_dynamic_cast(OBJECT(dev), TYPE_VIRTIO_MMIO);
Object *obj = object_dynamic_cast(OBJECT(kid->child),
TYPE_VIRTIO_MMIO);

if (obj) {
VirtIOMMIOProxy *mmio = VIRTIO_MMIO(obj);
Expand Down
1 change: 0 additions & 1 deletion hw/i386/pc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,6 @@ void pc_memory_init(PCMachineState *pcms,

if (machine->device_memory) {
uint64_t *val = g_malloc(sizeof(*val));
PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
uint64_t res_mem_end = machine->device_memory->base;

if (!pcmc->broken_reserved_end) {
Expand Down
2 changes: 0 additions & 2 deletions hw/i386/x86.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,6 @@ void x86_cpu_pre_plug(HotplugHandler *hotplug_dev,

cpu_slot = x86_find_cpu_slot(MACHINE(x86ms), cpu->apic_id, &idx);
if (!cpu_slot) {
MachineState *ms = MACHINE(x86ms);

x86_topo_ids_from_apicid(cpu->apic_id, &topo_info, &topo_ids);
error_setg(errp,
"Invalid CPU [socket: %u, die: %u, core: %u, thread: %u] with"
Expand Down

0 comments on commit 3636367

Please sign in to comment.