History log of /qemu/linux-user/ (Results 151 – 175 of 3393)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
7dfd3ca812-Aug-2023 Helge Deller <deller@gmx.de>

linux-user: Detect and report host crashes

If there is an internal program error in the qemu source code which
raises SIGSEGV or SIGBUS, we currently assume the signal belongs to
the guest. With an

linux-user: Detect and report host crashes

If there is an internal program error in the qemu source code which
raises SIGSEGV or SIGBUS, we currently assume the signal belongs to
the guest. With an artificial error introduced, we will now print

QEMU internal SIGSEGV {code=MAPERR, addr=(nil)}

Signed-off-by: Helge Deller <deller@gmx.de>
Message-Id: <20230812164314.352131-1-deller@gmx.de>
[rth: Use in_code_gen_buffer and die_with_signal; drop backtrace]
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

ee72c47e22-Aug-2023 Richard Henderson <richard.henderson@linaro.org>

linux-user: Exit not abort in die_with_backtrace

This line is supposed to be unreachable, but if we're going to
have it at all, SIGABRT via abort() is subject to the same signal
peril that created t

linux-user: Exit not abort in die_with_backtrace

This line is supposed to be unreachable, but if we're going to
have it at all, SIGABRT via abort() is subject to the same signal
peril that created this function in the first place.

We can _exit immediately without peril.

Acked-by: Helge Deller <deller@gmx.de>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

b8b50f1e22-Aug-2023 Richard Henderson <richard.henderson@linaro.org>

linux-user: Split out die_with_signal

Because we trap so many signals for use by the guest,
we have to take extra steps to exit properly.

Acked-by: Helge Deller <deller@gmx.de>
Reviewed-by: Philipp

linux-user: Split out die_with_signal

Because we trap so many signals for use by the guest,
we have to take extra steps to exit properly.

Acked-by: Helge Deller <deller@gmx.de>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

912ff69803-Oct-2023 Richard Henderson <richard.henderson@linaro.org>

linux-user: Propagate failure in mmap_reserve_or_unmap back to target_munmap

Do not assert success, but return any failure received.
Additionally, fix the method of earlier error return in target_mu

linux-user: Propagate failure in mmap_reserve_or_unmap back to target_munmap

Do not assert success, but return any failure received.
Additionally, fix the method of earlier error return in target_munmap.

Reported-by: Andreas Schwab <schwab@suse.de>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

a9f6004f01-Oct-2023 Jiajie Chen <c@jia.je>

linux-user/elfload: Enable LSX/LASX in HWCAP for LoongArch

Since support for LSX and LASX is landed in QEMU recently, we can update
HWCAPS accordingly.

Signed-off-by: Jiajie Chen <c@jia.je>
Reviewe

linux-user/elfload: Enable LSX/LASX in HWCAP for LoongArch

Since support for LSX and LASX is landed in QEMU recently, we can update
HWCAPS accordingly.

Signed-off-by: Jiajie Chen <c@jia.je>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231001085315.1692667-1-c@jia.je>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

3b894b6928-Sep-2023 Mikulas Patocka <mpatocka@redhat.com>

linux-user/sh4: Fix crashes on signal delivery

sh4 uses gUSA (general UserSpace Atomicity) to provide atomicity on CPUs
that don't have atomic instructions. A gUSA region that adds 1 to an
atomic va

linux-user/sh4: Fix crashes on signal delivery

sh4 uses gUSA (general UserSpace Atomicity) to provide atomicity on CPUs
that don't have atomic instructions. A gUSA region that adds 1 to an
atomic variable stored in @R2 looks like this:

4004b6: 03 c7 mova 4004c4 <gusa+0x10>,r0
4004b8: f3 61 mov r15,r1
4004ba: 09 00 nop
4004bc: fa ef mov #-6,r15
4004be: 22 63 mov.l @r2,r3
4004c0: 01 73 add #1,r3
4004c2: 32 22 mov.l r3,@r2
4004c4: 13 6f mov r1,r15

R0 contains a pointer to the end of the gUSA region
R1 contains the saved stack pointer
R15 contains negative length of the gUSA region

When this region is interrupted by a signal, the kernel detects if
R15 >= -128U. If yes, the kernel rolls back PC to the beginning of the
region and restores SP by copying R1 to R15.

The problem happens if we are interrupted by a signal at address 4004c4.
R15 still holds the value -6, but the atomic value was already written by
an instruction at address 4004c2. In this situation we can't undo the
gUSA. The function unwind_gusa does nothing, the signal handler attempts
to push a signal frame to the address -6 and crashes.

This patch fixes it, so that if we are interrupted at the last instruction
in a gUSA region, we copy R1 to R15 to restore the correct stack pointer
and avoid crashing.

There's another bug: if we are interrupted in a delay slot, we save the
address of the instruction in the delay slot. We must save the address of
the previous instruction.

Cc: qemu-stable@nongnu.org
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Reviewed-by: Yoshinori Sato <ysato@users.sourcefoege.jp>
Message-Id: <b16389f7-6c62-70b7-59b3-87533c0bcc@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

6fad9b4b28-Sep-2023 Mikulas Patocka <mpatocka@redhat.com>

linux-user/mips: fix abort on integer overflow

QEMU mips userspace emulation crashes with "qemu: unhandled CPU exception
0x15 - aborting" when one of the integer arithmetic instructions detects
an o

linux-user/mips: fix abort on integer overflow

QEMU mips userspace emulation crashes with "qemu: unhandled CPU exception
0x15 - aborting" when one of the integer arithmetic instructions detects
an overflow.

This patch fixes it so that it delivers SIGFPE with FPE_INTOVF instead.

Cc: qemu-stable@nongnu.org
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Message-Id: <3ef979a8-3ee1-eb2d-71f7-d788ff88dd11@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

e6e66b0330-Aug-2023 Richard Henderson <richard.henderson@linaro.org>

linux-user: Fixes for zero_bss

The previous change, 2d385be6152, assumed !PAGE_VALID meant that
the page would be unmapped by the elf image. However, since we
reserved the entire image space via mm

linux-user: Fixes for zero_bss

The previous change, 2d385be6152, assumed !PAGE_VALID meant that
the page would be unmapped by the elf image. However, since we
reserved the entire image space via mmap, PAGE_VALID will always
be set. Instead, assume PROT_NONE for the same condition.

Furthermore, assume bss is only ever present for writable segments,
and that there is no page overlap between PT_LOAD segments.
Instead of an assert, return false to indicate failure.

Cc: qemu-stable@nongnu.org
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1854
Fixes: 2d385be6152 ("linux-user: Do not adjust zero_bss for host page size")
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...


/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/cirrus/macos-12.vars
/qemu/.gitlab-ci.d/container-cross.yml
/qemu/.mailmap
/qemu/.travis.yml
/qemu/MAINTAINERS
/qemu/accel/accel-system.c
/qemu/accel/accel-system.h
/qemu/accel/accel-target.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/meson.build
/qemu/accel/stubs/kvm-stub.c
/qemu/accel/stubs/meson.build
/qemu/accel/tcg/icount-common.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/audio/audio.c
/qemu/audio/audio.h
/qemu/block.c
/qemu/block/backup.c
/qemu/block/block-backend.c
/qemu/block/bochs.c
/qemu/block/cloop.c
/qemu/block/commit.c
/qemu/block/copy-before-write.c
/qemu/block/copy-on-read.c
/qemu/block/crypto.c
/qemu/block/curl.c
/qemu/block/dmg.c
/qemu/block/export/export.c
/qemu/block/gluster.c
/qemu/block/graph-lock.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/mirror.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/parallels.c
/qemu/block/qapi-sysemu.c
/qemu/block/qapi.c
/qemu/block/qcow.c
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2-cache.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2-refcount.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/quorum.c
/qemu/block/raw-format.c
/qemu/block/rbd.c
/qemu/block/replication.c
/qemu/block/snapshot.c
/qemu/block/stream.c
/qemu/block/trace-events
/qemu/block/vdi.c
/qemu/block/vhdx.c
/qemu/block/vhdx.h
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/block/vvfat.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/configure
/qemu/contrib/plugins/cache.c
/qemu/contrib/plugins/execlog.c
/qemu/contrib/plugins/hotblocks.c
/qemu/contrib/plugins/lockstep.c
/qemu/contrib/vhost-user-gpu/vhost-user-gpu.c
/qemu/contrib/vhost-user-gpu/vugpu.h
/qemu/cpu-target.c
/qemu/disas/riscv.c
/qemu/docs/about/deprecated.rst
/qemu/docs/about/removed-features.rst
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/qtest.rst
/qemu/docs/devel/testing.rst
/qemu/docs/interop/nbd.txt
/qemu/docs/system/device-emulation.rst
/qemu/docs/system/devices/virtio-gpu.rst
/qemu/docs/system/i386/amd-memory-encryption.rst
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/internals.h
/qemu/gdbstub/meson.build
/qemu/gdbstub/system.c
/qemu/gdbstub/trace-events
/qemu/gdbstub/user.c
/qemu/hw/audio/Kconfig
/qemu/hw/audio/asc.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/meson.build
/qemu/hw/audio/trace-events
/qemu/hw/block/swim.c
/qemu/hw/block/trace-events
/qemu/hw/char/riscv_htif.c
/qemu/hw/core/cpu-common.c
/qemu/hw/display/meson.build
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/display/virtio-gpu-pci-rutabaga.c
/qemu/hw/display/virtio-gpu-pci.c
/qemu/hw/display/virtio-gpu-rutabaga.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/display/virtio-vga-rutabaga.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/intc/riscv_aplic.c
/qemu/hw/loongarch/Kconfig
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/q800-glue.c
/qemu/hw/m68k/q800.c
/qemu/hw/mem/memory-device.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/djmemc.c
/qemu/hw/misc/i2c-echo.c
/qemu/hw/misc/iosb.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/sifive_test.c
/qemu/hw/misc/trace-events
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/riscv/virt.c
/qemu/hw/ufs/lu.c
/qemu/hw/ufs/ufs.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/trace-events
/qemu/hw/virtio/vhost-stub.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/virtio/virtio-pci.c
/qemu/include/block/block-common.h
/qemu/include/block/block-global-state.h
/qemu/include/block/block-io.h
/qemu/include/block/block_int-common.h
/qemu/include/block/block_int-io.h
/qemu/include/block/graph-lock.h
/qemu/include/block/nbd.h
/qemu/include/block/qapi.h
/qemu/include/block/snapshot.h
/qemu/include/block/ufs.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/gdbstub.h
/qemu/include/exec/memory.h
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/translator.h
/qemu/include/gdbstub/syscalls.h
/qemu/include/hw/audio/asc.h
/qemu/include/hw/block/swim.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/loongarch/virt.h
/qemu/include/hw/m68k/q800-glue.h
/qemu/include/hw/m68k/q800.h
/qemu/include/hw/mem/memory-device.h
/qemu/include/hw/misc/djmemc.h
/qemu/include/hw/misc/iosb.h
/qemu/include/hw/misc/mac_via.h
/qemu/include/hw/virtio/vhost-backend.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/hw/virtio/virtio-gpu-bswap.h
/qemu/include/hw/virtio/virtio-gpu.h
/qemu/include/hw/virtio/virtio-mem.h
/qemu/include/hw/virtio/virtio-pci.h
/qemu/include/migration/register.h
/qemu/include/qemu/atomic128.h
/qemu/include/semihosting/uaccess.h
/qemu/include/sysemu/block-backend-global-state.h
/qemu/include/sysemu/cpu-timers-internal.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/hvf.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/runstate-action.h
/qemu/include/sysemu/runstate.h
/qemu/include/sysemu/sysemu.h
/qemu/include/tcg/tcg-op-common.h
elfload.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/block.c
/qemu/migration/dirtyrate.c
/qemu/migration/dirtyrate.h
/qemu/migration/migration-hmp-cmds.c
/qemu/migration/migration-stats.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/multifd.c
/qemu/migration/options.c
/qemu/migration/options.h
/qemu/migration/qemu-file.c
/qemu/migration/qemu-file.h
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/rdma.h
/qemu/migration/savevm.c
/qemu/migration/trace-events
/qemu/nbd/client-connection.c
/qemu/nbd/client.c
/qemu/nbd/nbd-internal.h
/qemu/nbd/server.c
/qemu/nbd/trace-events
/qemu/pc-bios/bios-256k.bin
/qemu/pc-bios/bios-microvm.bin
/qemu/pc-bios/bios.bin
/qemu/pc-bios/vgabios-ati.bin
/qemu/pc-bios/vgabios-bochs-display.bin
/qemu/pc-bios/vgabios-cirrus.bin
/qemu/pc-bios/vgabios-qxl.bin
/qemu/pc-bios/vgabios-ramfb.bin
/qemu/pc-bios/vgabios-stdvga.bin
/qemu/pc-bios/vgabios-virtio.bin
/qemu/pc-bios/vgabios-vmware.bin
/qemu/pc-bios/vgabios.bin
/qemu/plugins/core.c
/qemu/python/qemu/machine/console_socket.py
/qemu/python/qemu/machine/machine.py
/qemu/python/qemu/machine/qtest.py
/qemu/python/qemu/qmp/legacy.py
/qemu/python/qemu/qmp/protocol.py
/qemu/python/qemu/qmp/qmp_shell.py
/qemu/python/qemu/utils/qemu_ga_client.py
/qemu/python/qemu/utils/qom.py
/qemu/python/qemu/utils/qom_common.py
/qemu/python/qemu/utils/qom_fuse.py
/qemu/python/setup.cfg
/qemu/qapi/migration.json
/qemu/qemu-img.c
/qemu/qemu-io-cmds.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/commands-win32.c
/qemu/qga/commands.c
/qemu/qga/qapi-schema.json
/qemu/roms/Makefile
/qemu/roms/seabios
/qemu/scripts/analyze-migration.py
/qemu/scripts/block-coroutine-wrapper.py
/qemu/scripts/checkpatch.pl
/qemu/scripts/coverity-scan/COMPONENTS.md
/qemu/scripts/cpu-x86-uarch-abi.py
/qemu/scripts/device-crash-test
/qemu/scripts/feature_to_c.py
/qemu/scripts/get_maintainer.pl
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/oss-fuzz/build.sh
/qemu/scripts/python_qmp_updater.py
/qemu/scripts/render_block_graph.py
/qemu/scripts/xml-preprocess.py
/qemu/semihosting/arm-compat-semi.c
/qemu/semihosting/config.c
/qemu/semihosting/guestfd.c
/qemu/semihosting/syscalls.c
/qemu/semihosting/uaccess.c
/qemu/stubs/gdbstub.c
/qemu/stubs/memory_device.c
/qemu/stubs/meson.build
/qemu/stubs/semihost.c
/qemu/subprojects/libvduse/libvduse.c
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/system/arch_init.c
/qemu/system/async-teardown.c
/qemu/system/balloon.c
/qemu/system/bootdevice.c
/qemu/system/cpu-throttle.c
/qemu/system/cpu-timers.c
/qemu/system/cpus.c
/qemu/system/datadir.c
/qemu/system/device_tree.c
/qemu/system/dirtylimit.c
/qemu/system/dma-helpers.c
/qemu/system/globals.c
/qemu/system/ioport.c
/qemu/system/main.c
/qemu/system/memory.c
/qemu/system/memory_mapping.c
/qemu/system/meson.build
/qemu/system/physmem.c
/qemu/system/qdev-monitor.c
/qemu/system/qemu-seccomp.c
/qemu/system/qtest.c
/qemu/system/rtc.c
/qemu/system/runstate-action.c
/qemu/system/runstate-hmp-cmds.c
/qemu/system/runstate.c
/qemu/system/tpm-hmp-cmds.c
/qemu/system/tpm.c
/qemu/system/trace-events
/qemu/system/trace.h
/qemu/system/vl.c
/qemu/system/watchpoint.c
/qemu/target/alpha/meson.build
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu64.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/meson.build
/qemu/target/avr/meson.build
/qemu/target/cris/meson.build
/qemu/target/hppa/meson.build
/qemu/target/i386/cpu.c
/qemu/target/i386/hvf/hvf-cpu.c
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/kvm/meson.build
/qemu/target/i386/meson.build
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/translate.c
/qemu/target/loongarch/cpu.c
/qemu/target/loongarch/cpu.h
/qemu/target/loongarch/disas.c
/qemu/target/loongarch/insn_trans/trans_memory.c.inc
/qemu/target/loongarch/insns.decode
/qemu/target/loongarch/meson.build
/qemu/target/m68k/m68k-semi.c
/qemu/target/m68k/meson.build
/qemu/target/microblaze/meson.build
/qemu/target/mips/meson.build
/qemu/target/mips/tcg/sysemu/mips-semi.c
/qemu/target/nios2/meson.build
/qemu/target/nios2/nios2-semi.c
/qemu/target/openrisc/meson.build
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/internal.h
/qemu/target/ppc/meson.build
/qemu/target/riscv/cpu-qom.h
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/kvm/kvm-cpu.c
/qemu/target/riscv/kvm/kvm_riscv.h
/qemu/target/riscv/kvm/meson.build
/qemu/target/riscv/meson.build
/qemu/target/riscv/tcg/meson.build
/qemu/target/riscv/tcg/tcg-cpu.c
/qemu/target/riscv/tcg/tcg-cpu.h
/qemu/target/riscv/vector_helper.c
/qemu/target/rx/meson.build
/qemu/target/s390x/cpu.c
/qemu/target/s390x/meson.build
/qemu/target/sh4/meson.build
/qemu/target/sh4/translate.c
/qemu/target/sparc/meson.build
/qemu/target/tricore/cpu.c
/qemu/target/tricore/meson.build
/qemu/target/xtensa/meson.build
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/arm/tcg-target.c.inc
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/loongarch64/tcg-target.c.inc
/qemu/tcg/meson.build
/qemu/tcg/mips/tcg-target.c.inc
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/region.c
/qemu/tcg/riscv/tcg-target.c.inc
/qemu/tcg/s390x/tcg-target.c.inc
/qemu/tcg/sparc64/tcg-target.c.inc
/qemu/tcg/tcg.c
/qemu/tests/avocado/acpi-bits.py
/qemu/tests/avocado/avocado_qemu/__init__.py
/qemu/tests/avocado/cpu_queries.py
/qemu/tests/avocado/hotplug_cpu.py
/qemu/tests/avocado/info_usernet.py
/qemu/tests/avocado/machine_aarch64_sbsaref.py
/qemu/tests/avocado/machine_arm_integratorcp.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/avocado/machine_m68k_nextcube.py
/qemu/tests/avocado/machine_mips_malta.py
/qemu/tests/avocado/machine_s390_ccw_virtio.py
/qemu/tests/avocado/migration.py
/qemu/tests/avocado/pc_cpu_hotplug_props.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/avocado/version.py
/qemu/tests/avocado/virtio_check_params.py
/qemu/tests/avocado/virtio_version.py
/qemu/tests/avocado/vnc.py
/qemu/tests/avocado/x86_cpu_model_versions.py
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/dockerfiles/alpine.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-amd64-cross.docker
/qemu/tests/docker/dockerfiles/debian-amd64.docker
/qemu/tests/docker/dockerfiles/debian-arm64-cross.docker
/qemu/tests/docker/dockerfiles/debian-armhf-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/docker/dockerfiles/fedora-win32-cross.docker
/qemu/tests/docker/dockerfiles/fedora-win64-cross.docker
/qemu/tests/docker/dockerfiles/fedora.docker
/qemu/tests/docker/dockerfiles/opensuse-leap.docker
/qemu/tests/docker/dockerfiles/python.docker
/qemu/tests/docker/dockerfiles/ubuntu2204.docker
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/projects/qemu.yml
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/040
/qemu/tests/qemu-iotests/041
/qemu/tests/qemu-iotests/045
/qemu/tests/qemu-iotests/055
/qemu/tests/qemu-iotests/056
/qemu/tests/qemu-iotests/093
/qemu/tests/qemu-iotests/118
/qemu/tests/qemu-iotests/124
/qemu/tests/qemu-iotests/129
/qemu/tests/qemu-iotests/132
/qemu/tests/qemu-iotests/139
/qemu/tests/qemu-iotests/147
/qemu/tests/qemu-iotests/151
/qemu/tests/qemu-iotests/152
/qemu/tests/qemu-iotests/155
/qemu/tests/qemu-iotests/165
/qemu/tests/qemu-iotests/196
/qemu/tests/qemu-iotests/205
/qemu/tests/qemu-iotests/218
/qemu/tests/qemu-iotests/223.out
/qemu/tests/qemu-iotests/233.out
/qemu/tests/qemu-iotests/241.out
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/256
/qemu/tests/qemu-iotests/257
/qemu/tests/qemu-iotests/264
/qemu/tests/qemu-iotests/281
/qemu/tests/qemu-iotests/295
/qemu/tests/qemu-iotests/296
/qemu/tests/qemu-iotests/298
/qemu/tests/qemu-iotests/300
/qemu/tests/qemu-iotests/307.out
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/tests/backing-file-invalidation
/qemu/tests/qemu-iotests/tests/copy-before-write
/qemu/tests/qemu-iotests/tests/export-incoming-iothread
/qemu/tests/qemu-iotests/tests/graph-changes-while-io
/qemu/tests/qemu-iotests/tests/image-fleecing
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-test
/qemu/tests/qemu-iotests/tests/migrate-during-backup
/qemu/tests/qemu-iotests/tests/migration-permissions
/qemu/tests/qemu-iotests/tests/mirror-ready-cancel-error
/qemu/tests/qemu-iotests/tests/mirror-top-perms
/qemu/tests/qemu-iotests/tests/nbd-multiconn
/qemu/tests/qemu-iotests/tests/nbd-qemu-allocation.out
/qemu/tests/qemu-iotests/tests/reopen-file
/qemu/tests/qemu-iotests/tests/stream-error-on-reset
/qemu/tests/qemu-iotests/tests/stream-under-throttle
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/fuzz/fuzz.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/libqtest.h
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/migration-helpers.c
/qemu/tests/qtest/migration-helpers.h
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/npcm7xx_timer-test.c
/qemu/tests/qtest/ufs-test.c
/qemu/tests/qtest/virtio-net-failover.c
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/loongarch64/system/boot.S
/qemu/tests/tcg/multiarch/gdbstub/interrupt.py
/qemu/tests/tcg/multiarch/gdbstub/memory.py
/qemu/tests/tcg/multiarch/system/memory.c
/qemu/tests/tcg/s390x/pgm-specification-softmmu.S
/qemu/tests/tcg/s390x/pgm-specification.mak
/qemu/tests/tcg/s390x/softmmu.ld
/qemu/tests/tcg/xtensa/Makefile.softmmu-target
/qemu/tests/tcg/xtensaeb/Makefile.softmmu-target
/qemu/tests/unit/meson.build
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-block-iothread.c
/qemu/tests/vm/basevm.py
/qemu/ui/vnc.c
/qemu/util/cutils.c
/qemu/util/log.c
77c9f17725-Sep-2023 Laurent Vivier <laurent@vivier.eu>

linux-user/syscall.c: clean up local variable shadowing in xattr syscalls

p is a generic variable in syscall() and can be used by any syscall
case, so this patch removes the useless local variable d

linux-user/syscall.c: clean up local variable shadowing in xattr syscalls

p is a generic variable in syscall() and can be used by any syscall
case, so this patch removes the useless local variable declaration for
the following syscalls: TARGET_NR_llistxattr, TARGET_NR_listxattr,
TARGET_NR_setxattr, TARGET_NR_lsetxattr, TARGET_NR_getxattr,
TARGET_NR_lgetxattr, TARGET_NR_removexattr, TARGET_NR_lremovexattr.

Fix following warnings:

.../linux-user/syscall.c:12342:15: warning: declaration of 'p' shadows a previous local [-Wshadow=compatible-local]
12342 | void *p, *b = 0;
| ^
.../linux-user/syscall.c:8975:11: note: shadowed declaration is here
8975 | void *p;
| ^
.../linux-user/syscall.c:12379:19: warning: declaration of 'p' shadows a previous local [-Wshadow=compatible-local]
12379 | void *p, *n, *v = 0;
| ^
.../linux-user/syscall.c:8975:11: note: shadowed declaration is here
8975 | void *p;
| ^
.../linux-user/syscall.c:12424:19: warning: declaration of 'p' shadows a previous local [-Wshadow=compatible-local]
12424 | void *p, *n, *v = 0;
| ^
.../linux-user/syscall.c:8975:11: note: shadowed declaration is here
8975 | void *p;
| ^
.../linux-user/syscall.c:12469:19: warning: declaration of 'p' shadows a previous local [-Wshadow=compatible-local]
12469 | void *p, *n;
| ^
.../linux-user/syscall.c:8975:11: note: shadowed declaration is here
8975 | void *p;
| ^

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-ID: <20230925151029.461358-6-laurent@vivier.eu>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...

9962b7c225-Sep-2023 Laurent Vivier <laurent@vivier.eu>

linux-user/syscall.c: clean up local variable shadowing in TARGET_NR_getcpu

Fix following warnings:

.../linux-user/syscall.c: In function 'do_syscall1':
.../linux-user/syscall.c:11180:22: warning:

linux-user/syscall.c: clean up local variable shadowing in TARGET_NR_getcpu

Fix following warnings:

.../linux-user/syscall.c: In function 'do_syscall1':
.../linux-user/syscall.c:11180:22: warning: declaration of 'cpu' shadows a previous local [-Wshadow=local]
11180 | unsigned cpu, node;
| ^~~
.../linux-user/syscall.c:8963:15: note: shadowed declaration is here
8963 | CPUState *cpu = env_cpu(cpu_env);
| ^~~

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-ID: <20230925151029.461358-5-laurent@vivier.eu>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...

eb2929ca25-Sep-2023 Laurent Vivier <laurent@vivier.eu>

linux-user/syscall.c: clean up local variable shadowing in do_ioctl_dm()

Fix following warnings:

.../linux-user/syscall.c: In function 'do_ioctl_dm':
.../linux-user/syscall.c:5053:23: warning: decl

linux-user/syscall.c: clean up local variable shadowing in do_ioctl_dm()

Fix following warnings:

.../linux-user/syscall.c: In function 'do_ioctl_dm':
.../linux-user/syscall.c:5053:23: warning: declaration of 'arg_type' shadows a previous local [-Wshadow=local]
5053 | const argtype arg_type[] = { MK_STRUCT(STRUCT_dm_target_spec) };
| ^~~~~~~~
.../linux-user/syscall.c:4991:20: note: shadowed declaration is here
4991 | const argtype *arg_type = ie->arg_type;
| ^~~~~~~~
...//linux-user/syscall.c:5102:27: warning: declaration of 'arg_type' shadows a previous local [-Wshadow=local]
5102 | const argtype arg_type[] = { MK_STRUCT(STRUCT_dm_name_list) };
| ^~~~~~~~
.../linux-user/syscall.c:4991:20: note: shadowed declaration is here
4991 | const argtype *arg_type = ie->arg_type;
| ^~~~~~~~
.../linux-user/syscall.c:5130:27: warning: declaration of 'arg_type' shadows a previous local [-Wshadow=local]
5130 | const argtype arg_type[] = { MK_STRUCT(STRUCT_dm_target_spec) };
| ^~~~~~~~
.../linux-user/syscall.c:4991:20: note: shadowed declaration is here
4991 | const argtype *arg_type = ie->arg_type;
| ^~~~~~~~
.../linux-user/syscall.c:5170:27: warning: declaration of 'arg_type' shadows a previous local [-Wshadow=local]
5170 | const argtype arg_type[] = { MK_STRUCT(STRUCT_dm_target_versions) };
| ^~~~~~~~
.../linux-user/syscall.c:4991:20: note: shadowed declaration is here
4991 | const argtype *arg_type = ie->arg_type;
| ^~~~~~~~

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-ID: <20230925151029.461358-4-laurent@vivier.eu>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...

ea80003325-Sep-2023 Laurent Vivier <laurent@vivier.eu>

linux-user/mmap.c: clean up local variable shadowing

Fix following warnings:

.../linux-user/mmap.c: In function 'target_mremap':
.../linux-user/mmap.c:913:13: warning: declaration of 'prot' shadows

linux-user/mmap.c: clean up local variable shadowing

Fix following warnings:

.../linux-user/mmap.c: In function 'target_mremap':
.../linux-user/mmap.c:913:13: warning: declaration of 'prot' shadows a previous local [-Wshadow=compatible-local]
913 | int prot = 0;
| ^~~~
../../../Projects/qemu/linux-user/mmap.c:871:9: note: shadowed declaration is here
871 | int prot;
| ^~~~

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-ID: <20230925151029.461358-3-laurent@vivier.eu>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...

d5308ea625-Sep-2023 Laurent Vivier <laurent@vivier.eu>

linux-user/flatload: clean up local variable shadowing

Fix following warnings:

.../linux-user/flatload.c: In function 'load_flt_binary':
.../linux-user/flatload.c:758:23: warning: declaration of 'p

linux-user/flatload: clean up local variable shadowing

Fix following warnings:

.../linux-user/flatload.c: In function 'load_flt_binary':
.../linux-user/flatload.c:758:23: warning: declaration of 'p' shadows a previous local [-Wshadow=compatible-local]
758 | abi_ulong p;
| ^
../../../Projects/qemu/linux-user/flatload.c:722:15: note: shadowed declaration is here
722 | abi_ulong p;
| ^

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-ID: <20230925151029.461358-2-laurent@vivier.eu>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...


/qemu/MAINTAINERS
/qemu/audio/ossaudio.c
/qemu/bsd-user/bsd-mem.c
/qemu/bsd-user/bsd-mem.h
/qemu/bsd-user/bsd-proc.c
/qemu/bsd-user/bsd-proc.h
/qemu/bsd-user/freebsd/meson.build
/qemu/bsd-user/freebsd/os-misc.h
/qemu/bsd-user/freebsd/os-proc.c
/qemu/bsd-user/freebsd/os-proc.h
/qemu/bsd-user/freebsd/os-syscall.c
/qemu/bsd-user/main.c
/qemu/bsd-user/meson.build
/qemu/bsd-user/mmap.c
/qemu/bsd-user/qemu-bsd.h
/qemu/bsd-user/qemu.h
/qemu/bsd-user/signal-common.h
/qemu/bsd-user/signal.c
/qemu/bsd-user/syscall_defs.h
/qemu/chardev/char-pty.c
/qemu/docs/interop/vhost-user.rst
/qemu/dump/dump.c
/qemu/hw/acpi/acpi-x86-stub.c
/qemu/hw/acpi/core.c
/qemu/hw/acpi/cpu.c
/qemu/hw/acpi/hmat.c
/qemu/hw/acpi/hmat.h
/qemu/hw/acpi/memory_hotplug.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/trace-events
/qemu/hw/audio/soundhw.c
/qemu/hw/core/machine.c
/qemu/hw/cxl/cxl-component-utils.c
/qemu/hw/cxl/cxl-device-utils.c
/qemu/hw/cxl/cxl-host.c
/qemu/hw/display/meson.build
/qemu/hw/display/ramfb.c
/qemu/hw/display/virtio-dmabuf.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/acpi-common.h
/qemu/hw/i386/acpi-microvm.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/amd_iommu.h
/qemu/hw/i386/meson.build
/qemu/hw/i386/microvm.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/x86.c
/qemu/hw/ide/ahci.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/loongarch/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/net/vhost_net.c
/qemu/hw/net/virtio-net.c
/qemu/hw/pci-bridge/cxl_upstream.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pci_bridge.c
/qemu/hw/pci/pcie_sriov.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/usb/desc.c
/qemu/hw/usb/dev-hub.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/virtio/meson.build
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vdpa-dev.c
/qemu/hw/virtio/vhost-shadow-virtqueue.c
/qemu/hw/virtio/vhost-shadow-virtqueue.h
/qemu/hw/virtio/vhost-user-device-pci.c
/qemu/hw/virtio/vhost-user-device.c
/qemu/hw/virtio/vhost-user-gpio.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-qmp.c
/qemu/hw/virtio/virtio-qmp.h
/qemu/hw/virtio/virtio.c
/qemu/include/exec/memory.h
/qemu/include/hw/acpi/acpi_dev_interface.h
/qemu/include/hw/acpi/cpu.h
/qemu/include/hw/acpi/generic_event_device.h
/qemu/include/hw/audio/soundhw.h
/qemu/include/hw/cxl/cxl_component.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/pci/pci_bridge.h
/qemu/include/hw/virtio/vhost-backend.h
/qemu/include/hw/virtio/vhost-user-device.h
/qemu/include/hw/virtio/vhost-user.h
/qemu/include/hw/virtio/vhost-vdpa.h
/qemu/include/hw/virtio/virtio-dmabuf.h
/qemu/include/hw/virtio/virtio-net.h
/qemu/include/migration/vmstate.h
/qemu/include/net/net.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/guest-random.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/uuid.h
/qemu/include/qom/object_interfaces.h
/qemu/include/semihosting/semihost.h
/qemu/include/sysemu/os-posix.h
/qemu/include/sysemu/tpm.h
/qemu/include/ui/console.h
/qemu/include/ui/input.h
/qemu/include/ui/qemu-pixman.h
flatload.c
/qemu/meson.build
/qemu/migration/file.c
/qemu/migration/file.h
/qemu/migration/meson.build
/qemu/migration/migration.c
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/trace-events
/qemu/migration/vmstate.c
/qemu/net/net.c
/qemu/net/vhost-vdpa.c
/qemu/os-posix.c
/qemu/plugins/loader.c
/qemu/qemu-img.c
/qemu/qemu-io.c
/qemu/qemu-options.hx
/qemu/qom/object_interfaces.c
/qemu/scripts/analyze-migration.py
/qemu/semihosting/arm-compat-semi.c
/qemu/semihosting/config.c
/qemu/softmmu/tpm.c
/qemu/softmmu/vl.c
/qemu/stubs/semihost.c
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/target/ppc/int_helper.c
/qemu/target/ppc/kvm.c
/qemu/tcg/loongarch64/tcg-target.c.inc
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/machine_mips_malta.py
/qemu/tests/avocado/replay_kernel.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/migration/i386/a-b-bootblock.S
/qemu/tests/migration/i386/a-b-bootblock.h
/qemu/tests/migration/s390x/a-b-bios.c
/qemu/tests/migration/s390x/a-b-bios.h
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/numa-test.c
/qemu/tests/unit/meson.build
/qemu/tests/unit/test-uuid.c
/qemu/tests/unit/test-virtio-dmabuf.c
/qemu/trace/control.c
/qemu/trace/control.h
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/dbus-console.c
/qemu/ui/gtk.c
/qemu/ui/input.c
/qemu/ui/qemu-pixman.c
/qemu/ui/sdl2.c
/qemu/ui/spice-input.c
/qemu/ui/trace-events
/qemu/ui/vnc.c
/qemu/util/coroutine-sigaltstack.c
/qemu/util/coroutine-ucontext.c
/qemu/util/cutils.c
/qemu/util/guest-random.c
/qemu/util/oslib-win32.c
/qemu/util/uuid.c
a0bc599730-Sep-2023 Richard Henderson <richard.henderson@linaro.org>

build: Remove --enable-gprof

This build option has been deprecated since 8.0.
Remove all CONFIG_GPROF code that depends on that,
including one errant check using TARGET_GPROF.

Acked-by: Alex Bennée

build: Remove --enable-gprof

This build option has been deprecated since 8.0.
Remove all CONFIG_GPROF code that depends on that,
including one errant check using TARGET_GPROF.

Acked-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

33bc4fa730-Sep-2023 Richard Henderson <richard.henderson@linaro.org>

linux-user/hppa: Fix struct target_sigcontext layout

Use abi_ullong not uint64_t so that the alignment of the field
and therefore the layout of the struct is correct.

Reviewed-by: Philippe Mathieu-

linux-user/hppa: Fix struct target_sigcontext layout

Use abi_ullong not uint64_t so that the alignment of the field
and therefore the layout of the struct is correct.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

d7ec12f830-Sep-2023 Richard Henderson <richard.henderson@linaro.org>

tcg: Split out tcg init functions to tcg/startup.h

The tcg/tcg.h header is a big bucket, containing stuff related to
the translators and the JIT backend. The places that initialize
tcg or create ne

tcg: Split out tcg init functions to tcg/startup.h

The tcg/tcg.h header is a big bucket, containing stuff related to
the translators and the JIT backend. The places that initialize
tcg or create new threads do not need all of that, so split out
these three functions to a new header.

Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

935f75ae30-Sep-2023 Richard Henderson <richard.henderson@linaro.org>

tcg: Remove argument to tcg_prologue_init

We can load tcg_ctx just as easily within the callee.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.hen

tcg: Remove argument to tcg_prologue_init

We can load tcg_ctx just as easily within the callee.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

b77af26e14-Sep-2023 Richard Henderson <richard.henderson@linaro.org>

accel/tcg: Replace CPUState.env_ptr with cpu_env()

Reviewed-by: Anton Johansson <anjo@rev.ng>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>


/qemu/MAINTAINERS
/qemu/accel/accel-common.c
/qemu/accel/dummy-cpus.c
/qemu/accel/hvf/hvf-accel-ops.c
/qemu/accel/kvm/kvm-accel-ops.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec-common.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/internal.h
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/tcg-accel-ops-icount.c
/qemu/accel/tcg/tcg-accel-ops-mttcg.c
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/audio/alsaaudio.c
/qemu/audio/audio-hmp-cmds.c
/qemu/audio/audio.c
/qemu/audio/audio.h
/qemu/audio/audio_int.h
/qemu/audio/audio_template.h
/qemu/audio/coreaudio.m
/qemu/audio/dbusaudio.c
/qemu/audio/dsoundaudio.c
/qemu/audio/jackaudio.c
/qemu/audio/meson.build
/qemu/audio/noaudio.c
/qemu/audio/ossaudio.c
/qemu/audio/paaudio.c
/qemu/audio/pwaudio.c
/qemu/audio/sdlaudio.c
/qemu/audio/sndioaudio.c
/qemu/audio/spiceaudio.c
/qemu/audio/wavaudio.c
/qemu/bsd-user/main.c
/qemu/bsd-user/signal.c
/qemu/cpu.c
/qemu/crypto/meson.build
/qemu/crypto/tls-cipher-suites.c
/qemu/disas/m68k.c
/qemu/docs/about/deprecated.rst
/qemu/docs/about/removed-features.rst
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/meson.build
/qemu/gdbstub/user-target.c
/qemu/hw/acpi/cpu_hotplug.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/realview.c
/qemu/hw/arm/smmuv3-internal.h
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/versatilepb.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/adlib.c
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/lm4549.c
/qemu/hw/audio/pcspk.c
/qemu/hw/audio/sb16.c
/qemu/hw/audio/via-ac97.c
/qemu/hw/audio/wm8750.c
/qemu/hw/core/cpu-common.c
/qemu/hw/core/machine.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/input/tsc210x.c
/qemu/hw/intc/arm_gicv3_its.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/riscv_aclint.c
/qemu/hw/intc/riscv_imsic.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/misc/arm_sysctl.c
/qemu/hw/misc/aspeed_i3c.c
/qemu/hw/net/e1000.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvram/meson.build
/qemu/hw/pci-host/i440fx.c
/qemu/hw/pci-host/q35.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/pegasos2.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/smbios/smbios.c
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/tricore/tricore_testdevice.c
/qemu/hw/usb/dev-audio.c
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/translator.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/accel-cpu.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/pci-host/q35.h
/qemu/include/hw/ppc/fdt.h
/qemu/include/qemu/accel.h
/qemu/include/sysemu/device_tree.h
/qemu/include/tcg/tcg.h
elfload.c
i386/cpu_loop.c
main.c
signal.c
/qemu/meson.build
/qemu/migration/block.c
/qemu/migration/migration-stats.c
/qemu/migration/migration-stats.h
/qemu/migration/migration.c
/qemu/migration/qemu-file.c
/qemu/migration/qemu-file.h
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/trace-events
/qemu/monitor/hmp-cmds-target.c
/qemu/pc-bios/optionrom/Makefile
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qom/object.c
/qemu/scripts/analyse-locks-simpletrace.py
/qemu/scripts/archive-source.sh
/qemu/scripts/make-release
/qemu/scripts/simpletrace.py
/qemu/semihosting/arm-compat-semi.c
/qemu/semihosting/syscalls.c
/qemu/softmmu/device_tree.c
/qemu/softmmu/icount.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qemu-seccomp.c
/qemu/softmmu/vl.c
/qemu/softmmu/watchpoint.c
/qemu/target/alpha/cpu.c
/qemu/target/alpha/cpu.h
/qemu/target/alpha/translate.c
/qemu/target/arm/common-semi-target.h
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper.c
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/arm/tcg/sve_helper.c
/qemu/target/arm/tcg/tlb_helper.c
/qemu/target/arm/tcg/translate-a32.h
/qemu/target/arm/tcg/translate-a64.c
/qemu/target/arm/tcg/translate-a64.h
/qemu/target/arm/tcg/translate-m-nocp.c
/qemu/target/arm/tcg/translate-mve.c
/qemu/target/arm/tcg/translate-neon.c
/qemu/target/arm/tcg/translate-sme.c
/qemu/target/arm/tcg/translate-sve.c
/qemu/target/arm/tcg/translate-vfp.c
/qemu/target/arm/tcg/translate.c
/qemu/target/arm/tcg/translate.h
/qemu/target/avr/cpu.c
/qemu/target/avr/cpu.h
/qemu/target/avr/translate.c
/qemu/target/cris/cpu.c
/qemu/target/cris/cpu.h
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hexagon/README
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/gen_tcg.h
/qemu/target/hexagon/gen_tcg_funcs.py
/qemu/target/hexagon/gen_tcg_hvx.h
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/translate.c
/qemu/target/hppa/cpu.c
/qemu/target/hppa/cpu.h
/qemu/target/hppa/mem_helper.c
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hvf/hvf-cpu.c
/qemu/target/i386/kvm/kvm-cpu.c
/qemu/target/i386/nvmm/nvmm-all.c
/qemu/target/i386/tcg/decode-new.c.inc
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/i386/tcg/sysemu/excp_helper.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/loongarch/cpu.c
/qemu/target/loongarch/cpu.h
/qemu/target/loongarch/insn_trans/trans_atomic.c.inc
/qemu/target/loongarch/insn_trans/trans_branch.c.inc
/qemu/target/loongarch/insn_trans/trans_extra.c.inc
/qemu/target/loongarch/insn_trans/trans_farith.c.inc
/qemu/target/loongarch/insn_trans/trans_fcmp.c.inc
/qemu/target/loongarch/insn_trans/trans_fmemory.c.inc
/qemu/target/loongarch/insn_trans/trans_fmov.c.inc
/qemu/target/loongarch/insn_trans/trans_memory.c.inc
/qemu/target/loongarch/insn_trans/trans_privileged.c.inc
/qemu/target/loongarch/insn_trans/trans_vec.c.inc
/qemu/target/loongarch/translate.c
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/translate.c
/qemu/target/microblaze/cpu.c
/qemu/target/microblaze/cpu.h
/qemu/target/microblaze/translate.c
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/tcg/lcsr_translate.c
/qemu/target/mips/tcg/micromips_translate.c.inc
/qemu/target/mips/tcg/msa_translate.c
/qemu/target/mips/tcg/mxu_translate.c
/qemu/target/mips/tcg/nanomips_translate.c.inc
/qemu/target/mips/tcg/sysemu/mips-semi.c
/qemu/target/mips/tcg/translate.c
/qemu/target/mips/tcg/translate.h
/qemu/target/mips/tcg/vr54xx_translate.c
/qemu/target/nios2/cpu.c
/qemu/target/nios2/cpu.h
/qemu/target/nios2/translate.c
/qemu/target/openrisc/cpu.c
/qemu/target/openrisc/cpu.h
/qemu/target/openrisc/translate.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/power8-pmu-regs.c.inc
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/branch-impl.c.inc
/qemu/target/ppc/translate/dfp-impl.c.inc
/qemu/target/ppc/translate/fixedpoint-impl.c.inc
/qemu/target/ppc/translate/fp-impl.c.inc
/qemu/target/ppc/translate/processor-ctrl-impl.c.inc
/qemu/target/ppc/translate/spe-impl.c.inc
/qemu/target/ppc/translate/storage-ctrl-impl.c.inc
/qemu/target/ppc/translate/vmx-impl.c.inc
/qemu/target/ppc/translate/vsx-impl.c.inc
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/insn_trans/trans_privileged.c.inc
/qemu/target/riscv/insn_trans/trans_rvbf16.c.inc
/qemu/target/riscv/insn_trans/trans_rvd.c.inc
/qemu/target/riscv/insn_trans/trans_rvf.c.inc
/qemu/target/riscv/insn_trans/trans_rvh.c.inc
/qemu/target/riscv/insn_trans/trans_rvi.c.inc
/qemu/target/riscv/insn_trans/trans_rvm.c.inc
/qemu/target/riscv/insn_trans/trans_rvv.c.inc
/qemu/target/riscv/insn_trans/trans_rvvk.c.inc
/qemu/target/riscv/insn_trans/trans_rvzce.c.inc
/qemu/target/riscv/insn_trans/trans_rvzfa.c.inc
/qemu/target/riscv/insn_trans/trans_rvzfh.c.inc
/qemu/target/riscv/insn_trans/trans_rvzicbo.c.inc
/qemu/target/riscv/insn_trans/trans_svinval.c.inc
/qemu/target/riscv/insn_trans/trans_xthead.c.inc
/qemu/target/riscv/translate.c
/qemu/target/riscv/vector_helper.c
/qemu/target/rx/cpu.c
/qemu/target/rx/cpu.h
/qemu/target/rx/translate.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/tcg/translate.c
/qemu/target/s390x/tcg/translate_vx.c.inc
/qemu/target/sh4/cpu.c
/qemu/target/sh4/cpu.h
/qemu/target/sh4/op_helper.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu.c
/qemu/target/tricore/cpu.h
/qemu/target/tricore/fpu_helper.c
/qemu/target/tricore/helper.c
/qemu/target/tricore/helper.h
/qemu/target/tricore/op_helper.c
/qemu/target/tricore/translate.c
/qemu/target/tricore/tricore-opcodes.h
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/cpu.h
/qemu/target/xtensa/translate.c
/qemu/tcg/meson.build
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg-op-ldst.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tests/Makefile.include
/qemu/tests/meson.build
/qemu/tests/plugin/meson.build
/qemu/tests/qtest/migration-test.c
/qemu/tests/tcg/tricore/Makefile.softmmu-target
/qemu/tests/tcg/tricore/asm/macros.h
/qemu/tests/tcg/tricore/asm/test_crcn.S
/qemu/tests/tcg/tricore/asm/test_ftohp.S
/qemu/tests/tcg/tricore/asm/test_ftou.S
/qemu/tests/tcg/tricore/asm/test_hptof.S
/qemu/tests/tcg/tricore/asm/test_insert.S
/qemu/tests/unit/test-throttle.c
/qemu/ui/dbus.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
7f087a3204-Sep-2023 Philippe Mathieu-Daudé <philmd@linaro.org>

linux-user/strace: Clean up local variable shadowing

Fix:

linux-user/strace.c: In function ‘print_sockaddr’:
linux-user/strace.c:370:17: warning: declaration of ‘i’ shadows a previous local [-W

linux-user/strace: Clean up local variable shadowing

Fix:

linux-user/strace.c: In function ‘print_sockaddr’:
linux-user/strace.c:370:17: warning: declaration of ‘i’ shadows a previous local [-Wshadow=compatible-local]
370 | int i;
| ^
linux-user/strace.c:361:9: note: shadowed declaration is here
361 | int i;
| ^

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20230904161235.84651-20-philmd@linaro.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...


/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/cirrus.yml
/qemu/.gitlab-ci.d/cirrus/build.yml
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/user-exec-stub.c
/qemu/audio/audio.c
/qemu/audio/jackaudio.c
/qemu/backends/cryptodev.c
/qemu/block.c
/qemu/block/blklogwrites.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/copy-before-write.c
/qemu/block/crypto.c
/qemu/block/file-posix.c
/qemu/block/graph-lock.c
/qemu/block/io.c
/qemu/block/mirror.c
/qemu/block/monitor/bitmap-qmp-cmds.c
/qemu/block/nbd.c
/qemu/block/parallels.c
/qemu/block/parallels.h
/qemu/block/preallocate.c
/qemu/block/qcow.c
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2.c
/qemu/block/qed.c
/qemu/block/quorum.c
/qemu/block/rbd.c
/qemu/block/replication.c
/qemu/block/snapshot.c
/qemu/block/stream.c
/qemu/block/throttle-groups.c
/qemu/block/throttle.c
/qemu/block/trace-events
/qemu/block/vdi.c
/qemu/block/vmdk.c
/qemu/block/vvfat.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bsd-user/errno_defs.h
/qemu/bsd-user/freebsd/target_os_siginfo.h
/qemu/bsd-user/freebsd/target_os_stack.h
/qemu/bsd-user/freebsd/target_os_user.h
/qemu/bsd-user/qemu.h
/qemu/bsd-user/signal-common.h
/qemu/bsd-user/signal.c
/qemu/contrib/elf2dmp/addrspace.c
/qemu/contrib/elf2dmp/addrspace.h
/qemu/contrib/elf2dmp/main.c
/qemu/contrib/elf2dmp/pdb.c
/qemu/contrib/elf2dmp/pdb.h
/qemu/contrib/elf2dmp/qemu_elf.c
/qemu/contrib/elf2dmp/qemu_elf.h
/qemu/crypto/cipher-gnutls.c.inc
/qemu/docs/about/deprecated.rst
/qemu/docs/about/removed-features.rst
/qemu/docs/config/q35-emulated.cfg
/qemu/docs/config/q35-virtio-graphical.cfg
/qemu/docs/devel/reset.rst
/qemu/docs/system/devices/cxl.rst
/qemu/fsdev/qemu-fsdev-throttle.c
/qemu/fsdev/qemu-fsdev-throttle.h
/qemu/host/include/i386/host/cpuinfo.h
/qemu/host/include/ppc/host/cpuinfo.h
/qemu/hw/9pfs/cofile.c
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/hmat.c
/qemu/hw/acpi/nvdimm.c
/qemu/hw/arm/allwinner-r40.c
/qemu/hw/arm/armsse.c
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/virt.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/intel-hda.c
/qemu/hw/audio/intel-hda.h
/qemu/hw/audio/lm4549.c
/qemu/hw/audio/lm4549.h
/qemu/hw/audio/pl041.c
/qemu/hw/block/hd-geometry.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/cadence_uart.c
/qemu/hw/char/imx_serial.c
/qemu/hw/char/serial.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/machine.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/cpu/a15mpcore.c
/qemu/hw/cxl/cxl-events.c
/qemu/hw/cxl/cxl-host.c
/qemu/hw/cxl/cxl-mailbox-utils.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/dma/omap_dma.c
/qemu/hw/i2c/pm_smbus.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/kvm/xenstore_impl.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/input/hid.c
/qemu/hw/input/tsc2005.c
/qemu/hw/input/tsc210x.c
/qemu/hw/intc/loongarch_extioi.c
/qemu/hw/intc/loongson_liointc.c
/qemu/hw/intc/omap_intc.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/xive.c
/qemu/hw/intc/xive2.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/m68k/bootinfo.h
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/cxl_type3_stubs.c
/qemu/hw/microblaze/petalogix_ml605_mmu.c
/qemu/hw/mips/jazz.c
/qemu/hw/misc/imx7_ccm.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/stm32f2xx_syscfg.c
/qemu/hw/misc/trace-events
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/e1000_regs.h
/qemu/hw/net/e1000x_regs.h
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/igb_regs.h
/qemu/hw/net/mcf_fec.c
/qemu/hw/net/rocker/rocker_fp.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/smc91c111.c
/qemu/hw/net/sungem.c
/qemu/hw/net/sunhme.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/net/vmxnet3.h
/qemu/hw/nios2/10m50_devboard.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/pci-bridge/cxl_downstream.c
/qemu/hw/pci-bridge/cxl_upstream.c
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/dino.c
/qemu/hw/pci-host/gpex-acpi.c
/qemu/hw/pci-host/gt64120.c
/qemu/hw/pci-host/pnv_phb.c
/qemu/hw/pci-host/pnv_phb3.c
/qemu/hw/pci-host/pnv_phb3_msi.c
/qemu/hw/pci-host/pnv_phb4.c
/qemu/hw/pci/pcie_aer.c
/qemu/hw/pci/shpc.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_pci_vfio.c
/qemu/hw/rtc/exynos4210_rtc.c
/qemu/hw/rx/rx62n.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/mfi.h
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sh4/sh7750_regs.h
/qemu/hw/smbios/smbios.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/ssi/xlnx-versal-ospi.c
/qemu/hw/timer/etraxfs_timer.c
/qemu/hw/timer/renesas_tmr.c
/qemu/hw/tpm/tpm_tis.h
/qemu/hw/tpm/tpm_tis_common.c
/qemu/hw/tpm/tpm_tis_i2c.c
/qemu/hw/tpm/tpm_tis_isa.c
/qemu/hw/tpm/tpm_tis_sysbus.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/virtio/virtio.c
/qemu/include/block/aio.h
/qemu/include/block/block-common.h
/qemu/include/block/block-global-state.h
/qemu/include/block/block-io.h
/qemu/include/block/block_int-common.h
/qemu/include/block/block_int-global-state.h
/qemu/include/block/nbd.h
/qemu/include/block/throttle-groups.h
/qemu/include/hw/cxl/cxl.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/i386/topology.h
/qemu/include/hw/ppc/openpic.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/qapi/qmp/qobject.h
/qemu/include/qemu/atomic.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/throttle.h
/qemu/include/qemu/timer.h
/qemu/include/sysemu/block-backend-global-state.h
strace.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/postcopy-ram.c
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/vmstate.c
/qemu/nbd/client-connection.c
/qemu/nbd/client.c
/qemu/nbd/common.c
/qemu/nbd/nbd-internal.h
/qemu/nbd/server.c
/qemu/nbd/trace-events
/qemu/net/eth.c
/qemu/pc-bios/bios.bin
/qemu/python/qemu/machine/machine.py
/qemu/qapi/block-core.json
/qemu/qemu-img.c
/qemu/qemu-nbd.c
/qemu/roms/config.seabios-128k
/qemu/scripts/block-coroutine-wrapper.py
/qemu/scripts/kvm/vmxcap
/qemu/scripts/meson-buildoptions.sh
/qemu/softmmu/dma-helpers.c
/qemu/softmmu/vl.c
/qemu/subprojects/berkeley-softfloat-3.wrap
/qemu/subprojects/berkeley-testfloat-3.wrap
/qemu/subprojects/slirp.wrap
/qemu/target/arm/hvf/hvf.c
/qemu/target/arm/tcg/mve_helper.c
/qemu/target/arm/tcg/translate-m-nocp.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/kvm/xen-emu.c
/qemu/target/i386/machine.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/sysemu/svm_helper.c
/qemu/target/i386/tcg/translate.c
/qemu/target/m68k/translate.c
/qemu/target/mips/tcg/msa_helper.c
/qemu/target/mips/tcg/nanomips_translate.c.inc
/qemu/target/mips/tcg/translate.c
/qemu/target/ppc/cpu-models.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/power8-pmu-regs.c.inc
/qemu/target/ppc/translate/vmx-impl.c.inc
/qemu/target/tricore/translate.c
/qemu/tcg/tcg.c
/qemu/tests/avocado/avocado_qemu/__init__.py
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/machine_mips_malta.py
/qemu/tests/avocado/replay_kernel.py
/qemu/tests/avocado/replay_linux.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/docker/dockerfiles/debian-amd64-cross.docker
/qemu/tests/docker/dockerfiles/debian-amd64.docker
/qemu/tests/docker/dockerfiles/debian-arm64-cross.docker
/qemu/tests/docker/dockerfiles/debian-armhf-cross.docker
/qemu/tests/docker/dockerfiles/debian-loongarch-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/refresh
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/122.out
/qemu/tests/qemu-iotests/131
/qemu/tests/qemu-iotests/131.out
/qemu/tests/qemu-iotests/146.out
/qemu/tests/qemu-iotests/154.out
/qemu/tests/qemu-iotests/179.out
/qemu/tests/qemu-iotests/209.out
/qemu/tests/qemu-iotests/221.out
/qemu/tests/qemu-iotests/223.out
/qemu/tests/qemu-iotests/241.out
/qemu/tests/qemu-iotests/244.out
/qemu/tests/qemu-iotests/252.out
/qemu/tests/qemu-iotests/253.out
/qemu/tests/qemu-iotests/274.out
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/tests/file-io-error
/qemu/tests/qemu-iotests/tests/file-io-error.out
/qemu/tests/qemu-iotests/tests/nbd-multiconn
/qemu/tests/qemu-iotests/tests/nbd-qemu-allocation.out
/qemu/tests/qemu-iotests/tests/parallels-checks
/qemu/tests/qemu-iotests/tests/parallels-checks.out
/qemu/tests/qemu-iotests/tests/qemu-img-bitmaps.out
/qemu/tests/qtest/es1370-test.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/intel-hda-test.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/m48t59-test.c
/qemu/tests/qtest/microbit-test.c
/qemu/tests/qtest/netdev-socket.c
/qemu/tests/qtest/test-x86-cpuid-compat.c
/qemu/tests/tcg/i386/system/boot.S
/qemu/tests/tcg/i386/x86.csv
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-bdrv-graph-mod.c
/qemu/tests/unit/test-block-iothread.c
/qemu/tests/unit/test-throttle.c
/qemu/ui/gtk.c
/qemu/ui/spice-display.c
/qemu/ui/vnc-enc-zrle.c.inc
/qemu/ui/vnc-palette.c
/qemu/ui/vnc.c
/qemu/util/thread-pool.c
/qemu/util/throttle.c
/qemu/util/vhost-user-server.c
706a92fb12-Sep-2023 Peter Maydell <peter.maydell@linaro.org>

target/arm: Enable FEAT_MOPS for CPU 'max'

Enable FEAT_MOPS on the AArch64 'max' CPU, and add it to
the list of features we implement.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Review

target/arm: Enable FEAT_MOPS for CPU 'max'

Enable FEAT_MOPS on the AArch64 'max' CPU, and add it to
the list of features we implement.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20230912140434.1333369-13-peter.maydell@linaro.org

show more ...

3039b09015-Sep-2023 Peter Maydell <peter.maydell@linaro.org>

target/arm: Implement FEAT_HBC

FEAT_HBC (Hinted conditional branches) provides a new instruction
BC.cond, which behaves exactly like the existing B.cond except
that it provides a hint to the branch

target/arm: Implement FEAT_HBC

FEAT_HBC (Hinted conditional branches) provides a new instruction
BC.cond, which behaves exactly like the existing B.cond except
that it provides a hint to the branch predictor about the
likely behaviour of the branch.

Since QEMU does not implement branch prediction, we can treat
this identically to B.cond.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

429b7e0115-Sep-2023 Peter Maydell <peter.maydell@linaro.org>

linux-user/elfload.c: Report previously missing arm32 hwcaps

Add the code to report the arm32 hwcaps we were previously missing:
ss, ssbs, fphp, asimdhp, asimddp, asimdfhm, asimdbf16, i8mm

Signed-

linux-user/elfload.c: Report previously missing arm32 hwcaps

Add the code to report the arm32 hwcaps we were previously missing:
ss, ssbs, fphp, asimdhp, asimddp, asimdfhm, asimdbf16, i8mm

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

23d7f14d15-Sep-2023 Peter Maydell <peter.maydell@linaro.org>

linux-user/elfload.c: Add missing arm and arm64 hwcap values

Our lists of Arm 32 and 64 bit hwcap values have lagged behind
the Linux kernel. Update them to include all the bits defined
as of upstre

linux-user/elfload.c: Add missing arm and arm64 hwcap values

Our lists of Arm 32 and 64 bit hwcap values have lagged behind
the Linux kernel. Update them to include all the bits defined
as of upstream Linux git commit a48fa7efaf1161c1 (in the middle
of the kernel 6.6 dev cycle).

For 64-bit, we don't yet implement any of the features reported via
these hwcap bits. For 32-bit we do in fact already implement them
all; we'll add the code to set them in a subsequent commit.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

e2e40a7715-Sep-2023 Peter Maydell <peter.maydell@linaro.org>

linux-user/elfload.c: Correct SME feature names reported in cpuinfo

Some of the names we use for CPU features in linux-user's dummy
/proc/cpuinfo don't match the strings in the real kernel in
arch/a

linux-user/elfload.c: Correct SME feature names reported in cpuinfo

Some of the names we use for CPU features in linux-user's dummy
/proc/cpuinfo don't match the strings in the real kernel in
arch/arm64/kernel/cpuinfo.c. Specifically, the SME related
features have an underscore in the HWCAP_FOO define name,
but (like the SVE ones) they do not have an underscore in the
string in cpuinfo. Correct the errors.

Fixes: a55b9e7226708 ("linux-user: Emulate /proc/cpuinfo on aarch64 and arm")
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

show more ...

008a3b1614-Sep-2023 Song Gao <gaosong@loongson.cn>

target/loongarch: Add LASX data support

Signed-off-by: Song Gao <gaosong@loongson.cn>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230914022645.1151356-12-gaosong@loo

target/loongarch: Add LASX data support

Signed-off-by: Song Gao <gaosong@loongson.cn>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230914022645.1151356-12-gaosong@loongson.cn>

show more ...


/qemu/MAINTAINERS
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/tcg-accel-ops-mttcg.c
/qemu/accel/tcg/tcg-runtime-gvec.c
/qemu/accel/tcg/tcg-runtime.h
/qemu/backends/hostmem-file.c
/qemu/backends/tpm/tpm_util.c
/qemu/block.c
/qemu/block/copy-before-write.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/meson.build
/qemu/block/preallocate.c
/qemu/block/qapi.c
/qemu/block/snapshot-access.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/contrib/vhost-user-gpu/vhost-user-gpu.c
/qemu/contrib/vhost-user-gpu/virgl.c
/qemu/contrib/vhost-user-gpu/vugpu.h
/qemu/crypto/clmul.c
/qemu/crypto/meson.build
/qemu/docs/devel/multi-process.rst
/qemu/docs/devel/vfio-migration.rst
/qemu/docs/interop/vhost-user-gpu.rst
/qemu/docs/system/arm/cpu-features.rst
/qemu/docs/system/arm/emulation.rst
/qemu/docs/system/arm/virt.rst
/qemu/docs/system/index.rst
/qemu/docs/system/vm-templating.rst
/qemu/docs/tools/qemu-img.rst
/qemu/fpu/softfloat-parts.c.inc
/qemu/fpu/softfloat.c
/qemu/hmp-commands.hx
/qemu/host/include/aarch64/host/cpuinfo.h
/qemu/host/include/aarch64/host/crypto/clmul.h
/qemu/host/include/generic/host/crypto/clmul.h
/qemu/host/include/i386/host/cpuinfo.h
/qemu/host/include/i386/host/crypto/clmul.h
/qemu/host/include/x86_64/host/crypto/clmul.h
/qemu/hw/acpi/nvdimm.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/core/machine.c
/qemu/hw/core/vm-change-state-handler.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/i386/trace-events
/qemu/hw/i386/vmmouse.c
/qemu/hw/intc/arm_gicv3_its.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/xlnx-cfi-if.c
/qemu/hw/misc/xlnx-versal-cframe-reg.c
/qemu/hw/misc/xlnx-versal-cfu.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/igb_core.c
/qemu/hw/net/igb_regs.h
/qemu/hw/net/rocker/rocker_of_dpa.c
/qemu/hw/net/trace-events
/qemu/hw/net/vhost_net.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/nvme/Kconfig
/qemu/hw/nvme/ctrl.c
/qemu/hw/ppc/meson.build
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_numa.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/trace-events
/qemu/hw/virtio/virtio.c
/qemu/include/block/block_int-common.h
/qemu/include/block/qapi.h
/qemu/include/crypto/clmul.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/memory.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/user/thunk.h
/qemu/include/fpu/softfloat.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/mem/nvdimm.h
/qemu/include/hw/misc/xlnx-cfi-if.h
/qemu/include/hw/misc/xlnx-versal-cframe-reg.h
/qemu/include/hw/misc/xlnx-versal-cfu.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/vfio/vfio-common.h
/qemu/include/migration/register.h
/qemu/include/migration/vmstate.h
/qemu/include/net/net.h
/qemu/include/qemu/cpuid.h
/qemu/include/qemu/plugin-memory.h
/qemu/include/qemu/typedefs.h
/qemu/include/standard-headers/linux/fuse.h
/qemu/include/standard-headers/linux/vhost_types.h
/qemu/include/standard-headers/linux/virtio_net.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/runstate.h
/qemu/include/tcg/tcg-op-gvec-common.h
/qemu/include/ui/console.h
/qemu/include/ui/surface.h
/qemu/linux-headers/asm-arm64/bitsperlong.h
/qemu/linux-headers/asm-generic/unistd.h
/qemu/linux-headers/asm-mips/unistd_n32.h
/qemu/linux-headers/asm-mips/unistd_n64.h
/qemu/linux-headers/asm-mips/unistd_o32.h
/qemu/linux-headers/asm-powerpc/unistd_32.h
/qemu/linux-headers/asm-powerpc/unistd_64.h
/qemu/linux-headers/asm-riscv/bitsperlong.h
/qemu/linux-headers/asm-riscv/kvm.h
/qemu/linux-headers/asm-s390/kvm.h
/qemu/linux-headers/asm-s390/unistd_32.h
/qemu/linux-headers/asm-s390/unistd_64.h
/qemu/linux-headers/asm-x86/mman.h
/qemu/linux-headers/asm-x86/unistd_32.h
/qemu/linux-headers/asm-x86/unistd_64.h
/qemu/linux-headers/asm-x86/unistd_x32.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/stddef.h
/qemu/linux-headers/linux/userfaultfd.h
/qemu/linux-headers/linux/vfio.h
loongarch64/signal.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/savevm.c
/qemu/migration/savevm.h
/qemu/migration/target.c
/qemu/net/af-xdp.c
/qemu/net/clients.h
/qemu/net/dump.c
/qemu/net/meson.build
/qemu/net/net.c
/qemu/net/netmap.c
/qemu/net/tap-bsd.c
/qemu/net/tap-linux.c
/qemu/net/tap-linux.h
/qemu/net/tap-solaris.c
/qemu/net/tap-stub.c
/qemu/net/tap-win32.c
/qemu/net/tap.c
/qemu/net/tap_int.h
/qemu/net/vhost-vdpa.c
/qemu/pc-bios/edk2-aarch64-code.fd.bz2
/qemu/pc-bios/edk2-arm-code.fd.bz2
/qemu/pc-bios/edk2-i386-code.fd.bz2
/qemu/pc-bios/edk2-i386-secure-code.fd.bz2
/qemu/pc-bios/edk2-riscv-code.fd.bz2
/qemu/pc-bios/edk2-riscv-vars.fd.bz2
/qemu/pc-bios/edk2-x86_64-code.fd.bz2
/qemu/pc-bios/edk2-x86_64-microvm.fd.bz2
/qemu/pc-bios/edk2-x86_64-secure-code.fd.bz2
/qemu/plugins/api.c
/qemu/qapi/net.json
/qemu/qapi/qom.json
/qemu/qemu-img.c
/qemu/qemu-options.hx
/qemu/roms/edk2
/qemu/roms/edk2-build.config
/qemu/roms/edk2-build.py
/qemu/scripts/ci/org.centos/stream/8/x86_64/configure
/qemu/scripts/meson-buildoptions.sh
/qemu/softmmu/async-teardown.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/runstate.c
/qemu/target/arm/arm-qmp-cmds.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper.c
/qemu/target/arm/helper.h
/qemu/target/arm/hvf/hvf.c
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/syndrome.h
/qemu/target/arm/tcg/cpu64.c
/qemu/target/arm/tcg/helper-a64.h
/qemu/target/arm/tcg/mve_helper.c
/qemu/target/arm/tcg/op_helper.c
/qemu/target/arm/tcg/pauth_helper.c
/qemu/target/arm/tcg/translate-a64.c
/qemu/target/arm/tcg/translate.c
/qemu/target/arm/tcg/vec_helper.c
/qemu/target/arm/tcg/vec_internal.h
/qemu/target/i386/cpu.c
/qemu/target/i386/ops_sse.h
/qemu/target/loongarch/cpu.c
/qemu/target/loongarch/cpu.h
/qemu/target/loongarch/gdbstub.c
/qemu/target/loongarch/helper.h
/qemu/target/loongarch/insn_trans/trans_vec.c.inc
/qemu/target/loongarch/internals.h
/qemu/target/loongarch/machine.c
/qemu/target/loongarch/meson.build
/qemu/target/loongarch/translate.c
/qemu/target/loongarch/vec.h
/qemu/target/loongarch/vec_helper.c
/qemu/target/ppc/int_helper.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/crypto_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/debug.c
/qemu/target/riscv/debug.h
/qemu/target/riscv/pmp.c
/qemu/target/s390x/cpu_features.h
/qemu/target/s390x/cpu_features_def.h.inc
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/gen-features.c
/qemu/target/s390x/kvm/kvm.c
/qemu/target/s390x/tcg/vec_int_helper.c
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/arm/tcg-target.c.inc
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/loongarch64/tcg-insn-defs.c.inc
/qemu/tcg/loongarch64/tcg-target-con-set.h
/qemu/tcg/loongarch64/tcg-target-con-str.h
/qemu/tcg/loongarch64/tcg-target.c.inc
/qemu/tcg/loongarch64/tcg-target.h
/qemu/tcg/loongarch64/tcg-target.opc.h
/qemu/tcg/mips/tcg-target.c.inc
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/region.c
/qemu/tcg/riscv/tcg-target.c.inc
/qemu/tcg/s390x/tcg-target.c.inc
/qemu/tcg/sparc64/tcg-target.c.inc
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg.c
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tests/data/acpi/virt/SSDT.memhp
/qemu/tests/docker/dockerfiles/alpine.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-amd64-cross.docker
/qemu/tests/docker/dockerfiles/debian-amd64.docker
/qemu/tests/docker/dockerfiles/debian-arm64-cross.docker
/qemu/tests/docker/dockerfiles/debian-armel-cross.docker
/qemu/tests/docker/dockerfiles/debian-armhf-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/docker/dockerfiles/fedora.docker
/qemu/tests/docker/dockerfiles/opensuse-leap.docker
/qemu/tests/docker/dockerfiles/ubuntu2004.docker
/qemu/tests/docker/dockerfiles/ubuntu2204.docker
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/projects/qemu.yml
/qemu/tests/qemu-iotests/080.out
/qemu/tests/qemu-iotests/109.out
/qemu/tests/qemu-iotests/112.out
/qemu/tests/qemu-iotests/185
/qemu/tests/qemu-iotests/185.out
/qemu/tests/qemu-iotests/244.out
/qemu/tests/qtest/arm-cpu-features.c
/qemu/tests/qtest/libqos/igb.c
/qemu/tests/qtest/pflash-cfi02-test.c
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/pauth-2.c
/qemu/tests/tcg/aarch64/pauth-4.c
/qemu/tests/tcg/aarch64/pauth-5.c
/qemu/tests/tcg/aarch64/pauth.h
/qemu/tests/tcg/m68k/Makefile.target
/qemu/tests/tcg/m68k/denormal.c
/qemu/ui/cocoa.m
/qemu/ui/console-gl.c
/qemu/ui/console-priv.h
/qemu/ui/console-vc.c
/qemu/ui/console.c
/qemu/ui/curses.c
/qemu/ui/gtk.c
/qemu/ui/meson.build
/qemu/ui/sdl2-input.c
/qemu/ui/sdl2.c
/qemu/ui/spice-display.c
/qemu/ui/vnc.c
/qemu/util/cpuinfo-aarch64.c
/qemu/util/cpuinfo-i386.c
/qemu/util/oslib-posix.c

12345678910>>...136