History log of /qemu/pc-bios/ (Results 26 – 50 of 871)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
7cd50cbe27-Jun-2023 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Don't use __bss_start with the "larl" instruction

start.S currently cannot be compiled with Clang 16 and binutils 2.40:

ld: start.o(.text+0x8): misaligned symbol `__bss_start' (0

pc-bios/s390-ccw: Don't use __bss_start with the "larl" instruction

start.S currently cannot be compiled with Clang 16 and binutils 2.40:

ld: start.o(.text+0x8): misaligned symbol `__bss_start' (0xc1e5) for
relocation R_390_PC32DBL

According to the built-in linker script of ld, the symbol __bss_start
can actually point *before* the .bss section and does not need to have
any alignment, so in certain situations (like when using the internal
assembler of Clang), the __bss_start symbol can indeed be unaligned
and thus it is not suitable for being used with the "larl" instruction
that needs an address that is at least aligned to halfwords.
The problem went unnoticed so far since binutils <= 2.39 did not
check the alignment, but starting with binutils 2.40, such unaligned
addresses are now refused.

Fix it by loading the address indirectly instead.

Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=2216662
Reported-by: Miroslav Rezanina <mrezanin@redhat.com>
Suggested-by: Andreas Krebbel <andreas.krebbel@de.ibm.com>
Message-Id: <20230629104821.194859-8-thuth@redhat.com>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

e31f08dc27-Jun-2023 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Move the stack array into start.S

The stack array is only referenced from the start-up code (which is
shared between the s390-ccw.img and the s390-netboot.img), but it is
currently

pc-bios/s390-ccw: Move the stack array into start.S

The stack array is only referenced from the start-up code (which is
shared between the s390-ccw.img and the s390-netboot.img), but it is
currently declared twice, once in main.c and once in netmain.c.
It makes more sense to declare this in start.S instead - which will
also be helpful in the next patch, since we need to mention the .bss
section in start.S in that patch.

While we're at it, let's also drop the huge alignment of the stack,
since there is no technical requirement for aligning it to page
boundaries.

Message-Id: <20230627074703.99608-4-thuth@redhat.com>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Reviewed-by: Eric Farman <farman@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

74fe98ee27-Jun-2023 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Provide space for initial stack frame in start.S

Providing the space of a stack frame is the duty of the caller,
so we should reserve 160 bytes before jumping into the main functio

pc-bios/s390-ccw: Provide space for initial stack frame in start.S

Providing the space of a stack frame is the duty of the caller,
so we should reserve 160 bytes before jumping into the main function.
Otherwise the main() function might write past the stack array.

While we're at it, add a proper STACK_SIZE macro for the stack size
instead of using magic numbers (this is also required for the following
patch).

Reviewed-by: Christian Borntraeger <borntraeger@linux.ibm.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Message-Id: <20230627074703.99608-3-thuth@redhat.com>
Reviewed-by: Eric Farman <farman@linux.ibm.com>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

f52420fa27-Jun-2023 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Fix indentation in start.S

start.S is currently indented with a mixture of spaces and tabs, which
is quite ugly. QEMU coding style says indentation should be 4 spaces,
and this is

pc-bios/s390-ccw: Fix indentation in start.S

start.S is currently indented with a mixture of spaces and tabs, which
is quite ugly. QEMU coding style says indentation should be 4 spaces,
and this is also what we are using in the assembler files in the
tests/tcg/s390x/ folder already, so let's adjust start.S accordingly.

Reviewed-by: Cédric Le Goater <clg@redhat.com>
Message-Id: <20230627074703.99608-2-thuth@redhat.com>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Reviewed-by: Eric Farman <farman@linux.ibm.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

442ef32e22-Jun-2023 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw/Makefile: Use -z noexecstack to silence linker warning

Recent versions of ld complain when linking the s390-ccw bios:

/usr/bin/ld: warning: start.o: missing .note.GNU-stack sectio

pc-bios/s390-ccw/Makefile: Use -z noexecstack to silence linker warning

Recent versions of ld complain when linking the s390-ccw bios:

/usr/bin/ld: warning: start.o: missing .note.GNU-stack section implies
executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in
a future version of the linker

We can silence the warning by telling the linker to mark the stack
as not executable.

Message-Id: <20230622130822.396793-1-thuth@redhat.com>
Acked-by: Christian Borntraeger <borntraeger@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

0c2a6e1227-Jun-2023 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Get rid of the the __u* types

The types starting with double underscores have likely been
introduced into the s390-ccw bios to be able to re-use structs
from the Linux kernel in th

pc-bios/s390-ccw: Get rid of the the __u* types

The types starting with double underscores have likely been
introduced into the s390-ccw bios to be able to re-use structs
from the Linux kernel in the past, but the corresponding structs
in cio.h have been changed there a long time ago already to not
use the variants with the double underscores anymore:

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/diff/drivers/s390/cio/cio.h?id=cd6b4f27b9bb2a

So it would be good to replace these in the s390-ccw bios now, too.

Message-Id: <20230627114101.122231-1-thuth@redhat.com>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Reviewed-by: Eric Farman <farman@linux.ibm.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

f7f2f96f10-May-2023 Juan Quintela <quintela@redhat.com>

s390-ccw: Getting rid of ulong

Any good reason why this still exist?
I can understand u* and __u* to be linux kernel like, but ulong?

Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Juan

s390-ccw: Getting rid of ulong

Any good reason why this still exist?
I can understand u* and __u* to be linux kernel like, but ulong?

Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20230629104821.194859-2-thuth@redhat.com>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...


/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/container-template.yml
/qemu/.gitlab-ci.d/crossbuild-template.yml
/qemu/.gitlab-ci.d/static_checks.yml
/qemu/.gitlab-ci.d/windows.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/kvm/kvm-all.c
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/internal.h
/qemu/accel/tcg/monitor.c
/qemu/accel/tcg/tb-hash.h
/qemu/accel/tcg/tb-jmp-cache.h
/qemu/accel/tcg/tb-maint.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/accel/tcg/user-exec.c
/qemu/audio/dbusaudio.c
/qemu/backends/cryptodev-vhost-user.c
/qemu/backends/cryptodev.c
/qemu/block.c
/qemu/block/bochs.c
/qemu/block/cloop.c
/qemu/block/dmg.c
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/file-posix.c
/qemu/block/graph-lock.c
/qemu/block/io.c
/qemu/block/parallels.c
/qemu/block/qcow.c
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2-refcount.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/qed-check.c
/qemu/block/qed-table.c
/qemu/block/qed.c
/qemu/block/raw-format.c
/qemu/block/vhdx-log.c
/qemu/block/vhdx.c
/qemu/block/vhdx.h
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/blockjob.c
/qemu/bsd-user/i386/target_arch_cpu.h
/qemu/chardev/char-win-stdio.c
/qemu/configure
/qemu/contrib/vhost-user-blk/vhost-user-blk.c
/qemu/cpu.c
/qemu/docs/devel/ci-jobs.rst.inc
/qemu/docs/devel/loads-stores.rst
/qemu/docs/system/device-emulation.rst
/qemu/docs/system/devices/keyboard.rst
/qemu/docs/system/devices/nvme.rst
/qemu/docs/system/target-sparc.rst
/qemu/fpu/softfloat.c
/qemu/hmp-commands-info.hx
/qemu/hw/acpi/core.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/virt.c
/qemu/hw/block/dataplane/meson.build
/qemu/hw/block/dataplane/virtio-blk.c
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/char/escc.c
/qemu/hw/core/machine.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/cxl/cxl-device-utils.c
/qemu/hw/cxl/cxl-events.c
/qemu/hw/cxl/cxl-mailbox-utils.c
/qemu/hw/cxl/meson.build
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-udmabuf.c
/qemu/hw/display/virtio-gpu-virgl.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/input/vhost-user-input.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/pnv_xive2.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/xive.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/cxl_type3_stubs.c
/qemu/hw/net/vhost_net.c
/qemu/hw/net/virtio-net.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/subsys.c
/qemu/hw/pci-host/pnv_phb4.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/meson.build
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_caps.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_nested.c
/qemu/hw/remote/proxy.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/Kconfig
/qemu/hw/scsi/meson.build
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/virtio/Kconfig
/qemu/hw/virtio/meson.build
/qemu/hw/virtio/vdpa-dev.c
/qemu/hw/virtio/vhost-shadow-virtqueue.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost-vsock-common.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/virtio/virtio-qmp.c
/qemu/include/block/block-io.h
/qemu/include/block/graph-lock.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/target_page.h
/qemu/include/exec/translator.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/escc.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/cxl/cxl.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/cxl/cxl_events.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/ppc/ppc.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_cpu_core.h
/qemu/include/hw/ppc/spapr_nested.h
/qemu/include/hw/ppc/xive.h
/qemu/include/hw/virtio/vhost-backend.h
/qemu/include/hw/virtio/virtio-gpu.h
/qemu/include/hw/virtio/virtio-net.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/plugin-memory.h
/qemu/include/qemu/timer.h
/qemu/include/sysemu/os-win32.h
/qemu/include/tcg/tcg.h
/qemu/include/ui/console.h
/qemu/include/ui/egl-helpers.h
/qemu/include/ui/gtk.h
/qemu/include/ui/sdl2.h
/qemu/linux-user/i386/cpu_loop.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/net/vhost-vdpa.c
s390-ccw/helper.h
s390-ccw/s390-ccw.h
s390-ccw/virtio-blkdev.c
s390-ccw/virtio-scsi.c
s390-ccw/virtio-scsi.h
s390-ccw/virtio.c
s390-ccw/virtio.h
/qemu/qapi/cxl.json
/qemu/qapi/machine.json
/qemu/qapi/ui.json
/qemu/scripts/git-submodule.sh
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/meson.build
/qemu/scripts/xml-preprocess-test.py
/qemu/scripts/xml-preprocess.py
/qemu/softmmu/physmem.c
/qemu/softmmu/runstate.c
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/target/alpha/cpu.h
/qemu/target/arm/cpu.h
/qemu/target/arm/helper.c
/qemu/target/avr/cpu.h
/qemu/target/cris/cpu.h
/qemu/target/hexagon/cpu.h
/qemu/target/hppa/cpu.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/helper.h
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/sysemu/seg_helper.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/tcg/user/seg_helper.c
/qemu/target/loongarch/cpu.h
/qemu/target/m68k/cpu.h
/qemu/target/microblaze/cpu.h
/qemu/target/mips/cpu.h
/qemu/target/nios2/cpu.h
/qemu/target/openrisc/cpu.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/helper.h
/qemu/target/ppc/helper_regs.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/mmu-radix64.c
/qemu/target/ppc/translate.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/rx/cpu.h
/qemu/target/s390x/cpu.h
/qemu/target/sh4/cpu.h
/qemu/target/sparc/cpu.h
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu.h
/qemu/target/xtensa/cpu.h
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg-op-ldst.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tests/avocado/ppc_pseries.py
/qemu/tests/data/acpi/q35/SSDT.dimmpxm
/qemu/tests/plugin/insn.c
/qemu/tests/qemu-iotests/tests/iothreads-commit-active
/qemu/tests/qemu-iotests/tests/iothreads-commit-active.out
/qemu/tests/qtest/cxl-test.c
/qemu/tests/qtest/dbus-display-test.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/libqtest.h
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/qmp-cmd-test.c
/qemu/tests/qtest/vhost-user-test.c
/qemu/tests/tcg/i386/Makefile.softmmu-target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/x86_64/Makefile.softmmu-target
/qemu/tests/unit/test-block-iothread.c
/qemu/ui/console.c
/qemu/ui/dbus-chardev.c
/qemu/ui/dbus-console.c
/qemu/ui/dbus-display1.xml
/qemu/ui/dbus-listener.c
/qemu/ui/dbus.c
/qemu/ui/dbus.h
/qemu/ui/egl-context.c
/qemu/ui/egl-headless.c
/qemu/ui/egl-helpers.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk-gl-area.c
/qemu/ui/gtk.c
/qemu/ui/meson.build
/qemu/ui/qemu-pixman.c
/qemu/ui/sdl2-gl.c
/qemu/ui/sdl2.c
/qemu/ui/spice-display.c
/qemu/ui/trace-events
/qemu/util/oslib-win32.c
/qemu/util/trace-events
34ec3aea24-Jun-2023 Helge Deller <deller@gmx.de>

target/hppa: Update to SeaBIOS-hppa version 8

Update SeaBIOS-hppa to version 8.

Fixes:
- boot of HP-UX with SMP, and
- reboot of Linux and HP-UX with SMP

Enhancements:
- show qemu version in boot

target/hppa: Update to SeaBIOS-hppa version 8

Update SeaBIOS-hppa to version 8.

Fixes:
- boot of HP-UX with SMP, and
- reboot of Linux and HP-UX with SMP

Enhancements:
- show qemu version in boot menu
- adds exit menu entry in boot menu to quit emulation
- allow to trace PCD_CHASSIS codes & machine run status

Signed-off-by: Helge Deller <deller@gmx.de>

show more ...

497fad3820-Jun-2023 Peter Maydell <peter.maydell@linaro.org>

pc-bios/keymaps: Use the official xkb name for Arabic layout, not the legacy synonym

The xkb official name for the Arabic keyboard layout is 'ara'.
However xkb has for at least the past 15 years als

pc-bios/keymaps: Use the official xkb name for Arabic layout, not the legacy synonym

The xkb official name for the Arabic keyboard layout is 'ara'.
However xkb has for at least the past 15 years also permitted it to
be named via the legacy synonym 'ar'. In xkeyboard-config 2.39 this
synoynm was removed, which breaks compilation of QEMU:

FAILED: pc-bios/keymaps/ar
/home/fred/qemu-git/src/qemu/build-full/qemu-keymap -f pc-bios/keymaps/ar -l ar
xkbcommon: ERROR: Couldn't find file "symbols/ar" in include paths
xkbcommon: ERROR: 1 include paths searched:
xkbcommon: ERROR: /usr/share/X11/xkb
xkbcommon: ERROR: 3 include paths could not be added:
xkbcommon: ERROR: /home/fred/.config/xkb
xkbcommon: ERROR: /home/fred/.xkb
xkbcommon: ERROR: /etc/xkb
xkbcommon: ERROR: Abandoning symbols file "(unnamed)"
xkbcommon: ERROR: Failed to compile xkb_symbols
xkbcommon: ERROR: Failed to compile keymap

The upstream xkeyboard-config change removing the compat
mapping is:
https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/commit/470ad2cd8fea84d7210377161d86b31999bb5ea6

Make QEMU always ask for the 'ara' xkb layout, which should work on
both older and newer xkeyboard-config. We leave the QEMU name for
this keyboard layout as 'ar'; it is not the only one where our name
for it deviates from the xkb standard name.

Cc: qemu-stable@nongnu.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-id: 20230620162024.1132013-1-peter.maydell@linaro.org
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1709

show more ...

bb9c998c20-Jun-2023 Helge Deller <deller@gmx.de>

target/hppa: New SeaBIOS-hppa version 7

Update SeaBIOS-hppa to version 7 which fixes a boot problem
with Debian-12 install CD images.

The problem with Debian-12 is, that the ramdisc got bigger
than

target/hppa: New SeaBIOS-hppa version 7

Update SeaBIOS-hppa to version 7 which fixes a boot problem
with Debian-12 install CD images.

The problem with Debian-12 is, that the ramdisc got bigger
than what the firmware could load in one call to the LSI
scsi driver.

Signed-off-by: Helge Deller <deller@gmx.de>

show more ...


/qemu/.git-blame-ignore-revs
/qemu/.gitignore
/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/custom-runners/centos-stream-8-x86_64.yml
/qemu/.gitlab-ci.d/windows.yml
/qemu/.travis.yml
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/accel-softmmu.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec-common.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/user-exec.c
/qemu/accel/xen/xen-all.c
/qemu/block.c
/qemu/block/block-backend.c
/qemu/block/copy-on-read.c
/qemu/block/dmg-lzfse.c
/qemu/block/export/virtio-blk-handler.c
/qemu/block/file-posix.c
/qemu/block/file-win32.c
/qemu/block/filter-compress.c
/qemu/block/io.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nfs.c
/qemu/block/preallocate.c
/qemu/block/raw-format.c
/qemu/block/replication.c
/qemu/block/vhdx-log.c
/qemu/bsd-user/main.c
/qemu/bsd-user/mmap.c
/qemu/chardev/char-file.c
/qemu/chardev/char.c
/qemu/configure
/qemu/contrib/elf2dmp/addrspace.c
/qemu/contrib/elf2dmp/main.c
/qemu/contrib/elf2dmp/pe.h
/qemu/contrib/gitdm/domain-map
/qemu/contrib/gitdm/group-map-alibaba
/qemu/contrib/gitdm/group-map-amd
/qemu/contrib/gitdm/group-map-individuals
/qemu/cpu.c
/qemu/docs/about/deprecated.rst
/qemu/docs/devel/atomics.rst
/qemu/docs/devel/kconfig.rst
/qemu/docs/specs/tpm.rst
/qemu/docs/system/arm/cpu-features.rst
/qemu/docs/system/arm/cubieboard.rst
/qemu/docs/system/arm/emulation.rst
/qemu/docs/system/arm/orangepi.rst
/qemu/docs/system/devices/cxl.rst
/qemu/docs/system/introduction.rst
/qemu/dump/dump.c
/qemu/dump/win_dump.c
/qemu/gdb-xml/aarch64-pauth.xml
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/meson.build
/qemu/gitdm.config
/qemu/hw/arm/Kconfig
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/allwinner-h3.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/fsl-imx6ul.c
/qemu/hw/arm/fsl-imx7.c
/qemu/hw/arm/mcimx6ul-evk.c
/qemu/hw/arm/mcimx7d-sabre.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/block/fdc.c
/qemu/hw/block/nand.c
/qemu/hw/block/onenand.c
/qemu/hw/block/tc58128.c
/qemu/hw/char/cadence_uart.c
/qemu/hw/char/meson.build
/qemu/hw/char/xen_console.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-smp.c
/qemu/hw/core/machine.c
/qemu/hw/core/meson.build
/qemu/hw/display/meson.build
/qemu/hw/display/vga.c
/qemu/hw/i2c/allwinner-i2c.c
/qemu/hw/i2c/pmbus_device.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/xen_evtchn.c
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/sgx.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/core.c
/qemu/hw/ide/microdrive.c
/qemu/hw/intc/apic.c
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/q800.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/memory-device.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/misc/lasi.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/e1000x_regs.h
/qemu/hw/net/igb.c
/qemu/hw/net/igb_core.c
/qemu/hw/net/igb_core.h
/qemu/hw/net/igb_regs.h
/qemu/hw/net/imx_fec.c
/qemu/hw/net/net_tx_pkt.c
/qemu/hw/net/net_tx_pkt.h
/qemu/hw/net/trace-events
/qemu/hw/net/vmxnet3.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/trace-events
/qemu/hw/openrisc/boot.c
/qemu/hw/pci-host/gt64120.c
/qemu/hw/ppc/ppc4xx_sdram.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/ppc/spapr_softmmu.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/shakti_c.c
/qemu/hw/riscv/virt-acpi-build.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/tpm/Kconfig
/qemu/hw/tpm/meson.build
/qemu/hw/tpm/tpm_tis.h
/qemu/hw/tpm/tpm_tis_common.c
/qemu/hw/tpm/tpm_tis_i2c.c
/qemu/hw/tpm/trace-events
/qemu/hw/usb/imx-usb-phy.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/igd.c
/qemu/hw/vfio/migration.c
/qemu/hw/watchdog/Kconfig
/qemu/hw/watchdog/allwinner-wdt.c
/qemu/hw/watchdog/meson.build
/qemu/hw/watchdog/trace-events
/qemu/hw/xenpv/xen_machine_pv.c
/qemu/include/block/block-io.h
/qemu/include/block/block_int-common.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/tswap.h
/qemu/include/hw/acpi/tpm.h
/qemu/include/hw/arm/allwinner-a10.h
/qemu/include/hw/arm/allwinner-h3.h
/qemu/include/hw/arm/fsl-imx6ul.h
/qemu/include/hw/arm/fsl-imx7.h
/qemu/include/hw/block/flash.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/i2c/aspeed_i2c.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/ide/internal.h
/qemu/include/hw/misc/lasi.h
/qemu/include/hw/net/imx_fec.h
/qemu/include/hw/watchdog/allwinner-wdt.h
/qemu/include/io/channel.h
/qemu/include/migration/qemu-file-types.h
/qemu/include/qapi/qmp/dispatch.h
/qemu/include/qemu/plugin-event.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/qtree.h
/qemu/include/sysemu/block-backend-io.h
/qemu/include/sysemu/os-win32.h
/qemu/include/sysemu/qtest.h
/qemu/include/sysemu/tpm.h
/qemu/include/tcg/tcg.h
/qemu/include/user/syscall-trace.h
/qemu/io/channel-tls.c
/qemu/io/channel.c
/qemu/linux-user/arm/target_cpu.h
/qemu/linux-user/elfload.c
/qemu/linux-user/exit.c
/qemu/linux-user/flatload.c
/qemu/linux-user/main.c
/qemu/linux-user/mips/target_elf.h
/qemu/linux-user/mmap.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/linux-user/user-internals.h
/qemu/meson.build
/qemu/migration/block.c
/qemu/migration/dirtyrate.c
/qemu/migration/exec.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/postcopy-ram.c
/qemu/migration/qemu-file.c
/qemu/migration/qemu-file.h
/qemu/migration/ram.c
/qemu/nbd/server.c
hppa-firmware.img
/qemu/plugins/core.c
/qemu/qapi/qmp-dispatch.c
/qemu/qemu-options.hx
/qemu/qga/vss-win32/install.cpp
/qemu/roms/seabios-hppa
/qemu/scripts/ci/org.centos/stream/8/build-environment.yml
/qemu/scripts/ci/setup/gitlab-runner.yml
/qemu/scripts/coverage/compare_gcov_json.py
/qemu/scripts/coverity-scan/COMPONENTS.md
/qemu/scripts/coverity-scan/coverity-scan.docker
/qemu/scripts/mtest2make.py
/qemu/scripts/qapi/commands.py
/qemu/softmmu/dirtylimit.c
/qemu/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/qtest.c
/qemu/softmmu/vl.c
/qemu/softmmu/watchpoint.c
/qemu/subprojects/slirp.wrap
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/internals.h
/qemu/target/arm/kvm-consts.h
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/kvm_arm.h
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/arm/tcg/pauth_helper.c
/qemu/target/arm/tcg/sve_helper.c
/qemu/target/arm/tcg/tlb_helper.c
/qemu/target/arm/tcg/translate.c
/qemu/target/hexagon/dectree.py
/qemu/target/hexagon/gen_analyze_funcs.py
/qemu/target/hexagon/gen_helper_funcs.py
/qemu/target/hexagon/gen_helper_protos.py
/qemu/target/hexagon/gen_idef_parser_funcs.py
/qemu/target/hexagon/gen_op_attribs.py
/qemu/target/hexagon/gen_op_regs.py
/qemu/target/hexagon/gen_opcodes_def.py
/qemu/target/hexagon/gen_printinsn.py
/qemu/target/hexagon/gen_shortcode.py
/qemu/target/hexagon/gen_tcg.h
/qemu/target/hexagon/gen_tcg_func_table.py
/qemu/target/hexagon/gen_tcg_funcs.py
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/genptr.h
/qemu/target/hexagon/helper.h
/qemu/target/hexagon/hex_common.py
/qemu/target/hexagon/idef-parser/idef-parser.y
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/op_helper.h
/qemu/target/hexagon/translate.c
/qemu/target/hexagon/translate.h
/qemu/target/i386/cpu.c
/qemu/target/i386/host-cpu.c
/qemu/target/i386/kvm/xen-emu.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/sysemu/excp_helper.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/whpx-apic.c
/qemu/target/loongarch/translate.c
/qemu/target/mips/cpu.c
/qemu/target/mips/tcg/translate.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/translate.c
/qemu/target/s390x/cpu-sysemu.c
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/diag.c
/qemu/target/s390x/s390x-internal.h
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/translate.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-target.c.inc
/qemu/tcg/mips/tcg-target.c.inc
/qemu/tcg/mips/tcg-target.h
/qemu/tcg/optimize.c
/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-ldst.c.inc
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tests/avocado/avocado_qemu/__init__.py
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/kvm_xen_guest.py
/qemu/tests/avocado/machine_aarch64_virt.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/avocado/multiprocess.py
/qemu/tests/avocado/netdev-ethtool.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/bench/meson.build
/qemu/tests/bench/qtree-bench.c
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-amd64-cross.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-hexagon-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-mipsel-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/lcitool/libvirt-ci
/qemu/tests/lcitool/mappings.yml
/qemu/tests/lcitool/refresh
/qemu/tests/lcitool/targets/opensuse-leap-15.yml
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/meson.build
/qemu/tests/qemu-iotests/testenv.py
/qemu/tests/qemu-iotests/testrunner.py
/qemu/tests/qemu-iotests/tests/regression-vhdx-log
/qemu/tests/qemu-iotests/tests/regression-vhdx-log.out
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/qtest_aspeed.c
/qemu/tests/qtest/qtest_aspeed.h
/qemu/tests/qtest/tpm-crb-swtpm-test.c
/qemu/tests/qtest/tpm-crb-test.c
/qemu/tests/qtest/tpm-tis-device-swtpm-test.c
/qemu/tests/qtest/tpm-tis-i2c-test.c
/qemu/tests/qtest/tpm-tis-swtpm-test.c
/qemu/tests/qtest/tpm-tis-util.c
/qemu/tests/qtest/tpm-tis-util.h
/qemu/tests/qtest/tpm-util.c
/qemu/tests/qtest/tpm-util.h
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/hvx_misc.c
/qemu/tests/tcg/hexagon/hvx_misc.h
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/unit/meson.build
/qemu/tests/unit/test-crypto-secret.c
/qemu/tests/unit/test-qtree.c
/qemu/tests/vm/freebsd
/qemu/tests/vm/netbsd
/qemu/tests/vm/openbsd
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/dbus.c
/qemu/ui/gtk.c
/qemu/ui/sdl2.c
/qemu/ui/spice-core.c
/qemu/ui/vnc.c
/qemu/util/error.c
/qemu/util/fdmon-epoll.c
/qemu/util/meson.build
/qemu/util/oslib-win32.c
/qemu/util/qemu-coroutine.c
/qemu/util/qtree.c
/qemu/util/vhost-user-server.c
890e37e227-Mar-2023 Carlos Santos <casantos@redhat.com>

meson: install keyboard maps only if necessary

They are required only for system emulation (i.e. have_system is true).

Signed-off-by: Carlos Santos <casantos@redhat.com>
Reviewed-by: Daniel P. Berr

meson: install keyboard maps only if necessary

They are required only for system emulation (i.e. have_system is true).

Signed-off-by: Carlos Santos <casantos@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>

show more ...


/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/container-template.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitmodules
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/hvf/hvf-accel-ops.c
/qemu/accel/hvf/hvf-all.c
/qemu/accel/tcg/ldst_atomicity.c.inc
/qemu/block.c
/qemu/block/nbd.c
/qemu/chardev/char-pty.c
/qemu/configure
/qemu/docs/system/arm/bananapi_m2u.rst
/qemu/docs/system/arm/emulation.rst
/qemu/docs/system/arm/xlnx-versal-virt.rst
/qemu/docs/system/devices/vhost-user.rst
/qemu/docs/system/multi-process.rst
/qemu/docs/system/target-arm.rst
/qemu/fsdev/virtfs-proxy-helper.c
/qemu/hw/9pfs/9p-util.h
/qemu/hw/arm/Kconfig
/qemu/hw/arm/allwinner-r40.c
/qemu/hw/arm/bananapi_m2u.c
/qemu/hw/arm/meson.build
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/i386/kvm/xen_evtchn.c
/qemu/hw/i386/kvm/xen_evtchn.h
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/intc/loongarch_extioi.c
/qemu/hw/isa/piix3.c
/qemu/hw/m68k/q800.c
/qemu/hw/mips/malta.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/allwinner-r40-ccu.c
/qemu/hw/misc/allwinner-r40-dramc.c
/qemu/hw/misc/allwinner-sramc.c
/qemu/hw/misc/axp2xx.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/trace-events
/qemu/hw/net/can/meson.build
/qemu/hw/net/can/trace-events
/qemu/hw/net/can/xlnx-versal-canfd.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/pnv_sbe.c
/qemu/hw/remote/trace-events
/qemu/hw/remote/vfio-user-obj.c
/qemu/hw/riscv/virt.c
/qemu/hw/rx/rx62n.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/sd/allwinner-sdhost.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-pmem-pci.c
/qemu/hw/virtio/virtio-qmp.c
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen-operations.c
/qemu/include/hw/arm/allwinner-r40.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/misc/allwinner-r40-ccu.h
/qemu/include/hw/misc/allwinner-r40-dramc.h
/qemu/include/hw/misc/allwinner-sramc.h
/qemu/include/hw/net/xlnx-versal-canfd.h
/qemu/include/hw/sd/allwinner-sdhost.h
/qemu/include/hw/southbridge/piix.h
/qemu/include/hw/xen/xen.h
/qemu/include/hw/xen/xen_native.h
/qemu/include/sysemu/hvf.h
/qemu/include/sysemu/hvf_int.h
/qemu/include/ui/clipboard.h
/qemu/linux-user/elfload.c
/qemu/linux-user/loader.h
/qemu/linux-user/s390x/cpu_loop.c
/qemu/linux-user/syscall.c
/qemu/meson.build
/qemu/migration/fd.c
/qemu/migration/multifd.c
/qemu/migration/yank_functions.c
/qemu/nbd/client-connection.c
/qemu/nbd/server.c
keymaps/meson.build
/qemu/qapi/cryptodev.json
/qemu/qga/qapi-schema.json
/qemu/scripts/archive-source.sh
/qemu/scripts/ci/org.centos/stream/8/x86_64/configure
/qemu/scripts/git-submodule.sh
/qemu/scripts/make-release
/qemu/scripts/qom-cast-macro-clean-cocci-gen.py
/qemu/scripts/xen-detect.c
/qemu/softmmu/qdev-monitor.c
/qemu/stubs/xen-hw-stub.c
/qemu/subprojects/.gitignore
/qemu/subprojects/berkeley-softfloat-3.wrap
/qemu/subprojects/berkeley-testfloat-3.wrap
/qemu/subprojects/packagefiles/berkeley-softfloat-3/meson.build
/qemu/subprojects/packagefiles/berkeley-softfloat-3/meson_options.txt
/qemu/subprojects/packagefiles/berkeley-testfloat-3/meson.build
/qemu/subprojects/packagefiles/berkeley-testfloat-3/meson_options.txt
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/debug_helper.c
/qemu/target/arm/helper.c
/qemu/target/arm/hvf/hvf.c
/qemu/target/arm/hvf_arm.h
/qemu/target/arm/hyp_gdbstub.c
/qemu/target/arm/internals.h
/qemu/target/arm/kvm64.c
/qemu/target/arm/meson.build
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg/cpu64.c
/qemu/target/arm/tcg/helper-a64.c
/qemu/target/arm/tcg/helper-a64.h
/qemu/target/arm/tcg/hflags.c
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/arm/tcg/translate-a64.c
/qemu/target/arm/tcg/translate-a64.h
/qemu/target/arm/tcg/translate-sve.c
/qemu/target/arm/tcg/translate.c
/qemu/target/arm/tcg/translate.h
/qemu/target/i386/hvf/hvf.c
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/cpu_models.h
/qemu/target/s390x/helper.h
/qemu/target/s390x/tcg/fpu_helper.c
/qemu/target/s390x/tcg/insn-data.h.inc
/qemu/target/s390x/tcg/translate.c
/qemu/target/tricore/cpu.h
/qemu/target/tricore/helper.c
/qemu/target/tricore/op_helper.c
/qemu/target/tricore/translate.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/fp/meson.build
/qemu/tests/qemu-iotests/194
/qemu/tests/qemu-iotests/194.out
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/xlnx-canfd-test.c
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/dcpodp.c
/qemu/tests/tcg/aarch64/dcpop.c
/qemu/tests/tcg/aarch64/mte-7.c
/qemu/tests/tcg/multiarch/sigbus.c
/qemu/tests/tcg/s390x/Makefile.target
/qemu/tests/tcg/s390x/gdbstub/test-svc.py
/qemu/tests/tcg/s390x/hello-s390x-asm.S
/qemu/tests/tcg/s390x/lcbb.c
/qemu/tests/tcg/s390x/locfhr.c
/qemu/tests/tcg/s390x/mxdb.c
/qemu/tests/tcg/tricore/Makefile.softmmu-target
/qemu/tests/tcg/tricore/asm/macros.h
/qemu/tests/tcg/tricore/asm/test_abs.S
/qemu/tests/tcg/tricore/asm/test_bmerge.S
/qemu/tests/tcg/tricore/asm/test_clz.S
/qemu/tests/tcg/tricore/asm/test_dextr.S
/qemu/tests/tcg/tricore/asm/test_dvstep.S
/qemu/tests/tcg/tricore/asm/test_fadd.S
/qemu/tests/tcg/tricore/asm/test_fmul.S
/qemu/tests/tcg/tricore/asm/test_ftoi.S
/qemu/tests/tcg/tricore/asm/test_imask.S
/qemu/tests/tcg/tricore/asm/test_insert.S
/qemu/tests/tcg/tricore/asm/test_ld_bu.S
/qemu/tests/tcg/tricore/asm/test_ld_h.S
/qemu/tests/tcg/tricore/asm/test_madd.S
/qemu/tests/tcg/tricore/asm/test_msub.S
/qemu/tests/tcg/tricore/asm/test_muls.S
/qemu/tests/tcg/tricore/c/crt0-tc2x.S
/qemu/tests/tcg/tricore/c/test_boot_to_main.c
/qemu/tests/tcg/tricore/c/test_context_save_areas.c
/qemu/tests/tcg/tricore/c/testdev_assert.h
/qemu/tests/tcg/tricore/link.ld
/qemu/ui/vnc-ws.c
bf6903f619-May-2023 Paolo Bonzini <pbonzini@redhat.com>

pc-bios/s390-ccw: always build network bootloader

In the beginning, the network bootloader was considered experimental and
thus optional, but it is well established nowadays and configure always
che

pc-bios/s390-ccw: always build network bootloader

In the beginning, the network bootloader was considered experimental and
thus optional, but it is well established nowadays and configure always
checks for roms/SLOF before compiling pc-bios/s390-ccw.

Therefore, it makes sense to always build it together with the other
part of the s390-ccw bios.

Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...

b11f9bd919-May-2023 Paolo Bonzini <pbonzini@redhat.com>

configure: move SLOF submodule handling to pc-bios/s390-ccw

Move the handling of the roms/SLOF submodule out of the main Makefile,
since we are going to remove submodules from the build process of Q

configure: move SLOF submodule handling to pc-bios/s390-ccw

Move the handling of the roms/SLOF submodule out of the main Makefile,
since we are going to remove submodules from the build process of QEMU.

Acked-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...


/qemu/.git-blame-ignore-revs
/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/cirrus.yml
/qemu/.gitlab-ci.d/cirrus/freebsd-13.vars
/qemu/.gitlab-ci.d/cirrus/macos-12.vars
/qemu/.gitlab-ci.d/container-template.yml
/qemu/.gitlab-ci.d/custom-runners.yml
/qemu/.gitlab-ci.d/custom-runners/centos-stream-8-x86_64.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
/qemu/.gitlab-ci.d/opensbi.yml
/qemu/.gitlab-ci.d/qemu-project.yml
/qemu/.gitlab-ci.d/windows.yml
/qemu/.gitmodules
/qemu/.mailmap
/qemu/.travis.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/VERSION
/qemu/accel/accel-softmmu.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/atomic_common.c.inc
/qemu/accel/tcg/atomic_template.h
/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/ldst_atomicity.c.inc
/qemu/accel/tcg/ldst_common.c.inc
/qemu/accel/tcg/monitor.c
/qemu/accel/tcg/perf.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tb-hash.h
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/tcg-accel-ops-icount.c
/qemu/accel/tcg/tcg-accel-ops-icount.h
/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/tcg-runtime-gvec.c
/qemu/accel/tcg/tcg-runtime.c
/qemu/accel/tcg/tcg-runtime.h
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/accel/xen/xen-all.c
/qemu/audio/audio.c
/qemu/audio/audio_legacy.c
/qemu/audio/audio_template.h
/qemu/audio/meson.build
/qemu/audio/pwaudio.c
/qemu/audio/trace-events
/qemu/backends/hostmem-file.c
/qemu/backends/tpm/tpm_backend.c
/qemu/block.c
/qemu/block/amend.c
/qemu/block/blkdebug.c
/qemu/block/blkio.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/commit.c
/qemu/block/copy-before-write.c
/qemu/block/copy-on-read.c
/qemu/block/coroutines.h
/qemu/block/create.c
/qemu/block/crypto.c
/qemu/block/curl.c
/qemu/block/dmg-lzfse.c
/qemu/block/dmg.c
/qemu/block/dmg.h
/qemu/block/export/export.c
/qemu/block/export/fuse.c
/qemu/block/export/vduse-blk.c
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/export/virtio-blk-handler.c
/qemu/block/file-posix.c
/qemu/block/file-win32.c
/qemu/block/filter-compress.c
/qemu/block/gluster.c
/qemu/block/graph-lock.c
/qemu/block/io.c
/qemu/block/io_uring.c
/qemu/block/iscsi.c
/qemu/block/linux-aio.c
/qemu/block/meson.build
/qemu/block/mirror.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/nvme.c
/qemu/block/parallels.c
/qemu/block/plug.c
/qemu/block/preallocate.c
/qemu/block/qapi-sysemu.c
/qemu/block/qapi.c
/qemu/block/qcow.c
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2-refcount.c
/qemu/block/qcow2-snapshot.c
/qemu/block/qcow2-threads.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/qed.c
/qemu/block/quorum.c
/qemu/block/raw-format.c
/qemu/block/replication.c
/qemu/block/ssh.c
/qemu/block/stream.c
/qemu/block/trace-events
/qemu/block/vdi.c
/qemu/block/vhdx-log.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/block/vvfat.c
/qemu/block/win32-aio.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bsd-user/elfload.c
/qemu/bsd-user/freebsd/os-syscall.c
/qemu/bsd-user/main.c
/qemu/bsd-user/mmap.c
/qemu/chardev/char-file.c
/qemu/chardev/char.c
/qemu/configs/devices/aarch64-softmmu/default.mak
/qemu/configs/devices/arm-softmmu/default.mak
/qemu/configs/targets/alpha-linux-user.mak
/qemu/configs/targets/alpha-softmmu.mak
/qemu/configs/targets/hexagon-linux-user.mak
/qemu/configs/targets/hppa-linux-user.mak
/qemu/configs/targets/hppa-softmmu.mak
/qemu/configs/targets/mips-linux-user.mak
/qemu/configs/targets/mips-softmmu.mak
/qemu/configs/targets/mips64-linux-user.mak
/qemu/configs/targets/mips64-softmmu.mak
/qemu/configs/targets/mips64el-linux-user.mak
/qemu/configs/targets/mips64el-softmmu.mak
/qemu/configs/targets/mipsel-linux-user.mak
/qemu/configs/targets/mipsel-softmmu.mak
/qemu/configs/targets/mipsn32-linux-user.mak
/qemu/configs/targets/mipsn32el-linux-user.mak
/qemu/configs/targets/nios2-softmmu.mak
/qemu/configs/targets/s390x-linux-user.mak
/qemu/configs/targets/s390x-softmmu.mak
/qemu/configs/targets/sh4-linux-user.mak
/qemu/configs/targets/sh4-softmmu.mak
/qemu/configs/targets/sh4eb-linux-user.mak
/qemu/configs/targets/sh4eb-softmmu.mak
/qemu/configs/targets/sparc-linux-user.mak
/qemu/configs/targets/sparc-softmmu.mak
/qemu/configs/targets/sparc32plus-linux-user.mak
/qemu/configs/targets/sparc64-linux-user.mak
/qemu/configs/targets/sparc64-softmmu.mak
/qemu/configure
/qemu/contrib/elf2dmp/addrspace.c
/qemu/contrib/elf2dmp/main.c
/qemu/contrib/elf2dmp/pe.h
/qemu/contrib/gitdm/domain-map
/qemu/contrib/gitdm/group-map-alibaba
/qemu/contrib/gitdm/group-map-amd
/qemu/contrib/gitdm/group-map-individuals
/qemu/contrib/ivshmem-server/main.c
/qemu/contrib/plugins/Makefile
/qemu/cpu.c
/qemu/cpus-common.c
/qemu/disas/disas-internal.h
/qemu/disas/disas-mon.c
/qemu/disas/disas.c
/qemu/disas/meson.build
/qemu/disas/riscv.c
/qemu/docs/COLO-FT.txt
/qemu/docs/about/build-platforms.rst
/qemu/docs/about/deprecated.rst
/qemu/docs/about/emulation.rst
/qemu/docs/conf.py
/qemu/docs/devel/acpi-bits.rst
/qemu/docs/devel/atomics.rst
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/decodetree.rst
/qemu/docs/devel/index-api.rst
/qemu/docs/devel/kconfig.rst
/qemu/docs/devel/loads-stores.rst
/qemu/docs/devel/multiple-iothreads.txt
/qemu/docs/devel/qapi-code-gen.rst
/qemu/docs/devel/qom.rst
/qemu/docs/devel/style.rst
/qemu/docs/devel/tcg-ops.rst
/qemu/docs/devel/testing.rst
/qemu/docs/devel/zoned-storage.rst
/qemu/docs/interop/firmware.json
/qemu/docs/interop/index.rst
/qemu/docs/interop/qcow2.txt
/qemu/docs/interop/qmp-spec.rst
/qemu/docs/interop/vhost-user.rst
/qemu/docs/meson.build
/qemu/docs/pcie_sriov.txt
/qemu/docs/specs/index.rst
/qemu/docs/specs/pci-ids.rst
/qemu/docs/specs/pci-serial.rst
/qemu/docs/specs/pci-testdev.rst
/qemu/docs/specs/tpm.rst
/qemu/docs/sphinx/dbusdomain.py
/qemu/docs/sphinx/fakedbusdoc.py
/qemu/docs/sphinx/qapidoc.py
/qemu/docs/sphinx/qmp_lexer.py
/qemu/docs/system/arm/cpu-features.rst
/qemu/docs/system/arm/cubieboard.rst
/qemu/docs/system/arm/emulation.rst
/qemu/docs/system/arm/orangepi.rst
/qemu/docs/system/arm/sbsa.rst
/qemu/docs/system/device-emulation.rst
/qemu/docs/system/devices/cxl.rst
/qemu/docs/system/devices/igb.rst
/qemu/docs/system/devices/ivshmem.rst
/qemu/docs/system/devices/net.rst
/qemu/docs/system/devices/usb-u2f.rst
/qemu/docs/system/devices/usb.rst
/qemu/docs/system/gdb.rst
/qemu/docs/system/guest-loader.rst
/qemu/docs/system/introduction.rst
/qemu/docs/system/keys.rst
/qemu/docs/system/linuxboot.rst
/qemu/docs/system/qemu-block-drivers.rst.inc
/qemu/docs/system/target-i386.rst
/qemu/docs/user/main.rst
/qemu/dump/dump.c
/qemu/dump/win_dump.c
/qemu/fpu/softfloat.c
/qemu/gdb-xml/aarch64-pauth.xml
/qemu/gdb-xml/hexagon-core.xml
/qemu/gdb-xml/hexagon-hvx.xml
/qemu/gdb-xml/s390-virt-kvm.xml
/qemu/gdb-xml/s390-virt.xml
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/internals.h
/qemu/gdbstub/meson.build
/qemu/gdbstub/softmmu.c
/qemu/gdbstub/user.c
/qemu/gitdm.config
/qemu/hmp-commands.hx
/qemu/host/include/aarch64/host/atomic128-cas.h
/qemu/host/include/aarch64/host/atomic128-ldst.h
/qemu/host/include/aarch64/host/cpuinfo.h
/qemu/host/include/aarch64/host/load-extract-al16-al8.h
/qemu/host/include/aarch64/host/store-insert-al16.h
/qemu/host/include/generic/host/atomic128-cas.h
/qemu/host/include/generic/host/atomic128-ldst.h
/qemu/host/include/generic/host/cpuinfo.h
/qemu/host/include/generic/host/load-extract-al16-al8.h
/qemu/host/include/generic/host/store-insert-al16.h
/qemu/host/include/i386/host/cpuinfo.h
/qemu/host/include/x86_64/host/atomic128-ldst.h
/qemu/host/include/x86_64/host/cpuinfo.h
/qemu/host/include/x86_64/host/load-extract-al16-al8.h
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/9p.h
/qemu/hw/9pfs/codir.c
/qemu/hw/9pfs/coth.c
/qemu/hw/9pfs/trace-events
/qemu/hw/9pfs/xen-9p-backend.c
/qemu/hw/acpi/cxl.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/alpha/dp264.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/allwinner-h3.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/bcm2835_peripherals.c
/qemu/hw/arm/bcm2836.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/fsl-imx6.c
/qemu/hw/arm/fsl-imx6ul.c
/qemu/hw/arm/fsl-imx7.c
/qemu/hw/arm/mcimx6ul-evk.c
/qemu/hw/arm/mcimx7d-sabre.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmu-internal.h
/qemu/hw/arm/smmuv3-internal.h
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/trace-events
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/block/dataplane/virtio-blk.c
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/dataplane/xen-block.h
/qemu/hw/block/fdc.c
/qemu/hw/block/nand.c
/qemu/hw/block/onenand.c
/qemu/hw/block/tc58128.c
/qemu/hw/block/trace-events
/qemu/hw/block/virtio-blk-common.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/cadence_uart.c
/qemu/hw/char/meson.build
/qemu/hw/char/omap_uart.c
/qemu/hw/char/parallel-isa.c
/qemu/hw/char/parallel.c
/qemu/hw/char/riscv_htif.c
/qemu/hw/char/serial-pci-multi.c
/qemu/hw/char/serial-pci.c
/qemu/hw/char/virtio-serial-bus.c
/qemu/hw/char/xen_console.c
/qemu/hw/core/cpu-common.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine-smp.c
/qemu/hw/core/machine.c
/qemu/hw/core/meson.build
/qemu/hw/core/numa.c
/qemu/hw/core/trace-events
/qemu/hw/cxl/cxl-cdat.c
/qemu/hw/cxl/cxl-component-utils.c
/qemu/hw/cxl/cxl-device-utils.c
/qemu/hw/cxl/cxl-host.c
/qemu/hw/cxl/cxl-mailbox-utils.c
/qemu/hw/display/meson.build
/qemu/hw/display/qxl.c
/qemu/hw/display/sm501.c
/qemu/hw/display/vga.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/hppa/machine.c
/qemu/hw/i2c/allwinner-i2c.c
/qemu/hw/i2c/pmbus_device.c
/qemu/hw/i386/Kconfig
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/amd_iommu.h
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/intel_iommu_internal.h
/qemu/hw/i386/kvm/i8254.c
/qemu/hw/i386/kvm/xen_evtchn.c
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/sgx.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/ahci_internal.h
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/core.c
/qemu/hw/ide/microdrive.c
/qemu/hw/input/virtio-input-hid.c
/qemu/hw/intc/allwinner-a10-pic.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/loongarch_extioi.c
/qemu/hw/intc/loongarch_ipi.c
/qemu/hw/intc/riscv_aplic.c
/qemu/hw/intc/trace-events
/qemu/hw/isa/Kconfig
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-superio.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix3.c
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/q800.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/memory-device.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/mips/malta.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/misc/imx_rngc.c
/qemu/hw/misc/lasi.c
/qemu/hw/misc/macio/mac_dbdma.c
/qemu/hw/net/Kconfig
/qemu/hw/net/allwinner-sun8i-emac.c
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/e1000e_core.h
/qemu/hw/net/e1000x_common.c
/qemu/hw/net/e1000x_common.h
/qemu/hw/net/e1000x_regs.h
/qemu/hw/net/igb.c
/qemu/hw/net/igb_common.h
/qemu/hw/net/igb_core.c
/qemu/hw/net/igb_core.h
/qemu/hw/net/igb_regs.h
/qemu/hw/net/igbvf.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/meson.build
/qemu/hw/net/msf2-emac.c
/qemu/hw/net/net_rx_pkt.c
/qemu/hw/net/net_rx_pkt.h
/qemu/hw/net/net_tx_pkt.c
/qemu/hw/net/net_tx_pkt.h
/qemu/hw/net/npcm7xx_emc.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/trace-events
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/net/xilinx_ethlite.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/trace-events
/qemu/hw/openrisc/boot.c
/qemu/hw/pci-bridge/Kconfig
/qemu/hw/pci-bridge/cxl_upstream.c
/qemu/hw/pci-bridge/meson.build
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/pci-host/gt64120.c
/qemu/hw/pci-host/i440fx.c
/qemu/hw/pci-host/pam.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci-host/raven.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pci_bridge.c
/qemu/hw/pci/pcie_aer.c
/qemu/hw/ppc/Kconfig
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/e500plat.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/mpc8544ds.c
/qemu/hw/ppc/pegasos2.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/ppc4xx_sdram.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_caps.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/ppc/spapr_softmmu.c
/qemu/hw/rdma/Kconfig
/qemu/hw/rdma/meson.build
/qemu/hw/rdma/rdma_rm.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/shakti_c.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt-acpi-build.c
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/trace-events
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/allwinner-sdhost.c
/qemu/hw/sh4/r2d.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/i8254.c
/qemu/hw/timer/i8254_common.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/tpm/Kconfig
/qemu/hw/tpm/meson.build
/qemu/hw/tpm/tpm_tis.h
/qemu/hw/tpm/tpm_tis_common.c
/qemu/hw/tpm/tpm_tis_i2c.c
/qemu/hw/tpm/trace-events
/qemu/hw/usb/Kconfig
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/hcd-dwc2.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/imx-usb-phy.c
/qemu/hw/usb/redirect.c
/qemu/hw/usb/xen-usb.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/igd.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/virtio/vhost-shadow-virtqueue.c
/qemu/hw/virtio/vhost-shadow-virtqueue.h
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-input-pci.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio-qmp.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/Kconfig
/qemu/hw/watchdog/allwinner-wdt.c
/qemu/hw/watchdog/meson.build
/qemu/hw/watchdog/trace-events
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xenpv/xen_machine_pv.c
/qemu/hw/xtensa/virt.c
/qemu/include/block/accounting.h
/qemu/include/block/aio-wait.h
/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/blockjob_int.h
/qemu/include/block/export.h
/qemu/include/block/graph-lock.h
/qemu/include/block/qapi.h
/qemu/include/block/raw-aio.h
/qemu/include/block/thread-pool.h
/qemu/include/disas/disas.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/helper-gen-common.h
/qemu/include/exec/helper-gen.h
/qemu/include/exec/helper-gen.h.inc
/qemu/include/exec/helper-head.h
/qemu/include/exec/helper-info.c.inc
/qemu/include/exec/helper-proto-common.h
/qemu/include/exec/helper-proto.h
/qemu/include/exec/helper-proto.h.inc
/qemu/include/exec/memop.h
/qemu/include/exec/memory.h
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/poison.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/ramblock.h
/qemu/include/exec/target_page.h
/qemu/include/exec/tlb-common.h
/qemu/include/exec/translation-block.h
/qemu/include/exec/translator.h
/qemu/include/exec/tswap.h
/qemu/include/exec/user/guest-base.h
/qemu/include/hw/acpi/tpm.h
/qemu/include/hw/arm/allwinner-a10.h
/qemu/include/hw/arm/allwinner-h3.h
/qemu/include/hw/arm/boot.h
/qemu/include/hw/arm/fsl-imx6.h
/qemu/include/hw/arm/fsl-imx6ul.h
/qemu/include/hw/arm/fsl-imx7.h
/qemu/include/hw/arm/omap.h
/qemu/include/hw/arm/smmu-common.h
/qemu/include/hw/arm/smmuv3.h
/qemu/include/hw/block/flash.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/parallel.h
/qemu/include/hw/char/riscv_htif.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/cxl/cxl.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/i2c/aspeed_i2c.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/ide/internal.h
/qemu/include/hw/intc/loongarch_extioi.h
/qemu/include/hw/intc/loongarch_ipi.h
/qemu/include/hw/loongarch/virt.h
/qemu/include/hw/misc/bcm2835_property.h
/qemu/include/hw/misc/lasi.h
/qemu/include/hw/net/imx_fec.h
/qemu/include/hw/pci-host/pam.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pci_bridge.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/s390x/pv.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/southbridge/ich9.h
/qemu/include/hw/southbridge/piix.h
/qemu/include/hw/virtio/vhost-vdpa.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/hw/virtio/virtio-input.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/hw/watchdog/allwinner-wdt.h
/qemu/include/io/channel.h
/qemu/include/migration/colo.h
/qemu/include/migration/global_state.h
/qemu/include/migration/misc.h
/qemu/include/migration/qemu-file-types.h
/qemu/include/monitor/hmp.h
/qemu/include/monitor/monitor.h
/qemu/include/net/eth.h
/qemu/include/qapi/qmp/dispatch.h
/qemu/include/qemu/atomic.h
/qemu/include/qemu/atomic128.h
/qemu/include/qemu/bitops.h
/qemu/include/qemu/cpuid.h
/qemu/include/qemu/crc32c.h
/qemu/include/qemu/cutils.h
/qemu/include/qemu/help-texts.h
/qemu/include/qemu/host-utils.h
/qemu/include/qemu/int128.h
/qemu/include/qemu/iov.h
/qemu/include/qemu/main-loop.h
/qemu/include/qemu/mmap-alloc.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/plugin-event.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/qtree.h
/qemu/include/qemu/rcu.h
/qemu/include/qemu/stats64.h
/qemu/include/qemu/typedefs.h
/qemu/include/qemu/vhost-user-server.h
/qemu/include/qemu/xxhash.h
/qemu/include/standard-headers/drm/drm_fourcc.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/fuse.h
/qemu/include/standard-headers/linux/pci_regs.h
/qemu/include/standard-headers/linux/vhost_types.h
/qemu/include/standard-headers/linux/virtio_blk.h
/qemu/include/sysemu/block-backend-common.h
/qemu/include/sysemu/block-backend-global-state.h
/qemu/include/sysemu/block-backend-io.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/os-win32.h
/qemu/include/sysemu/qtest.h
/qemu/include/sysemu/runstate.h
/qemu/include/sysemu/tpm.h
/qemu/include/tcg/debug-assert.h
/qemu/include/tcg/helper-info.h
/qemu/include/tcg/insn-start-words.h
/qemu/include/tcg/oversized-guest.h
/qemu/include/tcg/tcg-ldst.h
/qemu/include/tcg/tcg-op-common.h
/qemu/include/tcg/tcg-op-gvec-common.h
/qemu/include/tcg/tcg-op-gvec.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg-opc.h
/qemu/include/tcg/tcg.h
/qemu/include/ui/console.h
/qemu/include/ui/input.h
/qemu/include/user/syscall-trace.h
/qemu/io/channel-command.c
/qemu/io/channel-file.c
/qemu/io/channel-socket.c
/qemu/io/channel-tls.c
/qemu/io/channel.c
/qemu/linux-headers/asm-arm64/kvm.h
/qemu/linux-headers/asm-x86/kvm.h
/qemu/linux-headers/linux/const.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/memfd.h
/qemu/linux-headers/linux/nvme_ioctl.h
/qemu/linux-headers/linux/stddef.h
/qemu/linux-headers/linux/vfio.h
/qemu/linux-headers/linux/vhost.h
/qemu/linux-user/arm/target_cpu.h
/qemu/linux-user/elfload.c
/qemu/linux-user/exit.c
/qemu/linux-user/flatload.c
/qemu/linux-user/hexagon/cpu_loop.c
/qemu/linux-user/hexagon/target_elf.h
/qemu/linux-user/loongarch64/signal.c
/qemu/linux-user/main.c
/qemu/linux-user/mips/cpu_loop.c
/qemu/linux-user/mips/target_elf.h
/qemu/linux-user/mmap.c
/qemu/linux-user/ppc/signal.c
/qemu/linux-user/qemu.h
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/linux-user/user-internals.h
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/block.c
/qemu/migration/colo.c
/qemu/migration/dirtyrate.c
/qemu/migration/exec.c
/qemu/migration/global_state.c
/qemu/migration/meson.build
/qemu/migration/migration-hmp-cmds.c
/qemu/migration/migration-stats.c
/qemu/migration/migration-stats.h
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/multifd-zlib.c
/qemu/migration/multifd-zstd.c
/qemu/migration/multifd.c
/qemu/migration/multifd.h
/qemu/migration/options.c
/qemu/migration/options.h
/qemu/migration/postcopy-ram.c
/qemu/migration/postcopy-ram.h
/qemu/migration/qemu-file.c
/qemu/migration/qemu-file.h
/qemu/migration/ram-compress.c
/qemu/migration/ram-compress.h
/qemu/migration/ram.c
/qemu/migration/ram.h
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/socket.c
/qemu/migration/tls.c
/qemu/migration/tls.h
/qemu/migration/trace-events
/qemu/migration/vmstate.c
/qemu/migration/xbzrle.c
/qemu/migration/xbzrle.h
/qemu/monitor/hmp.c
/qemu/monitor/monitor-internal.h
/qemu/monitor/monitor.c
/qemu/monitor/qmp.c
/qemu/nbd/server.c
/qemu/net/eth.c
/qemu/net/meson.build
/qemu/net/vhost-vdpa.c
/qemu/os-posix.c
s390-ccw/Makefile
/qemu/plugins/core.c
/qemu/python/Makefile
/qemu/python/qemu/machine/machine.py
/qemu/python/qemu/qmp/legacy.py
/qemu/python/qemu/qmp/models.py
/qemu/python/qemu/qmp/protocol.py
/qemu/python/qemu/qmp/qmp_client.py
/qemu/python/scripts/mkvenv.py
/qemu/python/scripts/vendor.py
/qemu/python/setup.cfg
/qemu/python/tests/flake8.sh
/qemu/python/tests/isort.sh
/qemu/python/tests/minreqs.txt
/qemu/python/tests/mypy.sh
/qemu/python/tests/pylint.sh
/qemu/python/wheels/meson-0.63.3-py3-none-any.whl
/qemu/qapi/acpi.json
/qemu/qapi/audio.json
/qemu/qapi/authz.json
/qemu/qapi/block-core.json
/qemu/qapi/block-export.json
/qemu/qapi/block.json
/qemu/qapi/char.json
/qemu/qapi/common.json
/qemu/qapi/compat.json
/qemu/qapi/control.json
/qemu/qapi/crypto.json
/qemu/qapi/cryptodev.json
/qemu/qapi/cxl.json
/qemu/qapi/dump.json
/qemu/qapi/error.json
/qemu/qapi/introspect.json
/qemu/qapi/job.json
/qemu/qapi/machine-target.json
/qemu/qapi/machine.json
/qemu/qapi/migration.json
/qemu/qapi/misc-target.json
/qemu/qapi/misc.json
/qemu/qapi/net.json
/qemu/qapi/opts-visitor.c
/qemu/qapi/pci.json
/qemu/qapi/qapi-schema.json
/qemu/qapi/qdev.json
/qemu/qapi/qmp-dispatch.c
/qemu/qapi/qom.json
/qemu/qapi/rdma.json
/qemu/qapi/replay.json
/qemu/qapi/rocker.json
/qemu/qapi/run-state.json
/qemu/qapi/sockets.json
/qemu/qapi/stats.json
/qemu/qapi/tpm.json
/qemu/qapi/trace.json
/qemu/qapi/transaction.json
/qemu/qapi/ui.json
/qemu/qapi/virtio.json
/qemu/qapi/yank.json
/qemu/qemu-img.c
/qemu/qemu-io-cmds.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/commands-posix.c
/qemu/qga/commands-win32.c
/qemu/qga/commands.c
/qemu/qga/meson.build
/qemu/qga/qapi-schema.json
/qemu/qga/vss-win32/install.cpp
/qemu/qobject/json-lexer.c
/qemu/replay/replay-input.c
/qemu/replay/replay.c
/qemu/scripts/archive-source.sh
/qemu/scripts/block-coroutine-wrapper.py
/qemu/scripts/checkpatch.pl
/qemu/scripts/ci/gitlab-kubernetes-runners/values.yaml
/qemu/scripts/ci/org.centos/stream/8/build-environment.yml
/qemu/scripts/ci/org.centos/stream/8/x86_64/configure
/qemu/scripts/ci/org.centos/stream/8/x86_64/test-avocado
/qemu/scripts/ci/setup/build-environment.yml
/qemu/scripts/ci/setup/gitlab-runner.yml
/qemu/scripts/coverage/compare_gcov_json.py
/qemu/scripts/coverity-scan/COMPONENTS.md
/qemu/scripts/coverity-scan/coverity-scan.docker
/qemu/scripts/decodetree.py
/qemu/scripts/device-crash-test
/qemu/scripts/git-submodule.sh
/qemu/scripts/make-config-poison.sh
/qemu/scripts/make-release
/qemu/scripts/meson-buildoptions.py
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/modinfo-collect.py
/qemu/scripts/modinfo-generate.py
/qemu/scripts/mtest2make.py
/qemu/scripts/probe-gdb-support.py
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/expr.py
/qemu/scripts/qapi/gen.py
/qemu/scripts/qapi/main.py
/qemu/scripts/qapi/mypy.ini
/qemu/scripts/qapi/parser.py
/qemu/scripts/qapi/schema.py
/qemu/scripts/qapi/visit.py
/qemu/scripts/symlink-install-tree.py
/qemu/scripts/tracetool/backend/ftrace.py
/qemu/scripts/tracetool/backend/log.py
/qemu/scripts/tracetool/backend/syslog.py
/qemu/scripts/tracetool/format/c.py
/qemu/scripts/tracetool/format/h.py
/qemu/scripts/update-linux-headers.sh
/qemu/scripts/vmstate-static-checker.py
/qemu/scsi/pr-manager.c
/qemu/scsi/qemu-pr-helper.c
/qemu/softmmu/cpus.c
/qemu/softmmu/dirtylimit.c
/qemu/softmmu/globals.c
/qemu/softmmu/ioport.c
/qemu/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/qtest.c
/qemu/softmmu/runstate-hmp-cmds.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/softmmu/watchpoint.c
/qemu/storage-daemon/qapi/qapi-schema.json
/qemu/stubs/colo-compare.c
/qemu/stubs/colo.c
/qemu/stubs/meson.build
/qemu/stubs/trace-control.c
/qemu/subprojects/.gitignore
/qemu/subprojects/dtc.wrap
/qemu/subprojects/keycodemapdb.wrap
/qemu/subprojects/libvfio-user.wrap
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/subprojects/slirp.wrap
/qemu/target/alpha/translate.c
/qemu/target/arm/Kconfig
/qemu/target/arm/cortex-regs.c
/qemu/target/arm/cpregs.h
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/debug_helper.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/helper.c
/qemu/target/arm/helper.h
/qemu/target/arm/hvf/hvf.c
/qemu/target/arm/internals.h
/qemu/target/arm/kvm-consts.h
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/kvm_arm.h
/qemu/target/arm/meson.build
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg/a64.decode
/qemu/target/arm/tcg/arm_ldst.h
/qemu/target/arm/tcg/cpu32.c
/qemu/target/arm/tcg/cpu64.c
/qemu/target/arm/tcg/helper-a64.h
/qemu/target/arm/tcg/helper-mve.h
/qemu/target/arm/tcg/helper-sme.h
/qemu/target/arm/tcg/helper-sve.h
/qemu/target/arm/tcg/m_helper.c
/qemu/target/arm/tcg/meson.build
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/arm/tcg/pauth_helper.c
/qemu/target/arm/tcg/sve_helper.c
/qemu/target/arm/tcg/sve_ldst_internal.h
/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-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/helper.c
/qemu/target/avr/translate.c
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hexagon/README
/qemu/target/hexagon/arch.c
/qemu/target/hexagon/attribs_def.h.inc
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/decode.c
/qemu/target/hexagon/dectree.py
/qemu/target/hexagon/gdbstub.c
/qemu/target/hexagon/gen_analyze_funcs.py
/qemu/target/hexagon/gen_helper_funcs.py
/qemu/target/hexagon/gen_helper_protos.py
/qemu/target/hexagon/gen_idef_parser_funcs.py
/qemu/target/hexagon/gen_op_attribs.py
/qemu/target/hexagon/gen_op_regs.py
/qemu/target/hexagon/gen_opcodes_def.py
/qemu/target/hexagon/gen_printinsn.py
/qemu/target/hexagon/gen_shortcode.py
/qemu/target/hexagon/gen_tcg.h
/qemu/target/hexagon/gen_tcg_func_table.py
/qemu/target/hexagon/gen_tcg_funcs.py
/qemu/target/hexagon/gen_tcg_hvx.h
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/genptr.h
/qemu/target/hexagon/helper.h
/qemu/target/hexagon/hex_common.py
/qemu/target/hexagon/iclass.c
/qemu/target/hexagon/idef-parser/idef-parser.lex
/qemu/target/hexagon/idef-parser/idef-parser.y
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/idef-parser/parser-helpers.h
/qemu/target/hexagon/imported/branch.idef
/qemu/target/hexagon/imported/encode_pp.def
/qemu/target/hexagon/imported/ldst.idef
/qemu/target/hexagon/imported/mmvec/encode_ext.def
/qemu/target/hexagon/imported/mmvec/ext.idef
/qemu/target/hexagon/internal.h
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/mmvec/decode_ext_mmvec.c
/qemu/target/hexagon/mmvec/macros.h
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/op_helper.h
/qemu/target/hexagon/translate.c
/qemu/target/hexagon/translate.h
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/helper.c
/qemu/target/i386/host-cpu.c
/qemu/target/i386/kvm/xen-emu.c
/qemu/target/i386/ops_sse.h
/qemu/target/i386/sev.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/translate.c
/qemu/target/i386/whpx/whpx-apic.c
/qemu/target/loongarch/cpu.c
/qemu/target/loongarch/cpu.h
/qemu/target/loongarch/csr_helper.c
/qemu/target/loongarch/disas.c
/qemu/target/loongarch/fpu_helper.c
/qemu/target/loongarch/gdbstub.c
/qemu/target/loongarch/helper.h
/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_lsx.c.inc
/qemu/target/loongarch/insn_trans/trans_privileged.c.inc
/qemu/target/loongarch/insns.decode
/qemu/target/loongarch/internals.h
/qemu/target/loongarch/iocsr_helper.c
/qemu/target/loongarch/lsx_helper.c
/qemu/target/loongarch/machine.c
/qemu/target/loongarch/meson.build
/qemu/target/loongarch/op_helper.c
/qemu/target/loongarch/translate.c
/qemu/target/loongarch/translate.h
/qemu/target/m68k/translate.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/cpu.c
/qemu/target/mips/tcg/micromips_translate.c.inc
/qemu/target/mips/tcg/mips16e_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/octeon_translate.c
/qemu/target/mips/tcg/rel6_translate.c
/qemu/target/mips/tcg/translate.c
/qemu/target/mips/tcg/translate.h
/qemu/target/mips/tcg/translate_addr_const.c
/qemu/target/mips/tcg/tx79_translate.c
/qemu/target/mips/tcg/vr54xx_translate.c
/qemu/target/nios2/translate.c
/qemu/target/openrisc/cpu.c
/qemu/target/openrisc/fpu_helper.c
/qemu/target/openrisc/sys_helper.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/cpu-models.c
/qemu/target/ppc/cpu-models.h
/qemu/target/ppc/cpu.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/helper.h
/qemu/target/ppc/helper_regs.c
/qemu/target/ppc/insn32.decode
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/mem_helper.c
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/power8-pmu-regs.c.inc
/qemu/target/ppc/power8-pmu.c
/qemu/target/ppc/ppc-qmp-cmds.c
/qemu/target/ppc/spr_common.h
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/branch-impl.c.inc
/qemu/target/ppc/translate/fixedpoint-impl.c.inc
/qemu/target/ppc/translate/fp-impl.c.inc
/qemu/target/ppc/translate/vmx-impl.c.inc
/qemu/target/riscv/arch_dump.c
/qemu/target/riscv/cpu-qom.h
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/cpu_vendorid.h
/qemu/target/riscv/csr.c
/qemu/target/riscv/debug.c
/qemu/target/riscv/fpu_helper.c
/qemu/target/riscv/gdbstub.c
/qemu/target/riscv/helper.h
/qemu/target/riscv/insn16.decode
/qemu/target/riscv/insn_trans/trans_privileged.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_rvv.c.inc
/qemu/target/riscv/insn_trans/trans_rvzce.c.inc
/qemu/target/riscv/insn_trans/trans_rvzicond.c.inc
/qemu/target/riscv/insn_trans/trans_xthead.c.inc
/qemu/target/riscv/insn_trans/trans_xventanacondops.c.inc
/qemu/target/riscv/internals.h
/qemu/target/riscv/m128_helper.c
/qemu/target/riscv/machine.c
/qemu/target/riscv/meson.build
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/pmp.h
/qemu/target/riscv/pmu.c
/qemu/target/riscv/riscv-qmp-cmds.c
/qemu/target/riscv/sbi_ecall_interface.h
/qemu/target/riscv/time_helper.c
/qemu/target/riscv/time_helper.h
/qemu/target/riscv/translate.c
/qemu/target/riscv/vector_helper.c
/qemu/target/riscv/zce_helper.c
/qemu/target/rx/cpu.c
/qemu/target/rx/op_helper.c
/qemu/target/rx/translate.c
/qemu/target/s390x/cpu-sysemu.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/diag.c
/qemu/target/s390x/gdbstub.c
/qemu/target/s390x/helper.h
/qemu/target/s390x/s390x-internal.h
/qemu/target/s390x/tcg/insn-data.h.inc
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu.c
/qemu/target/tricore/translate.c
/qemu/target/xtensa/translate.c
/qemu/tcg/aarch64/tcg-target-con-set.h
/qemu/tcg/aarch64/tcg-target-con-str.h
/qemu/tcg/aarch64/tcg-target-reg-bits.h
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/aarch64/tcg-target.h
/qemu/tcg/arm/tcg-target-con-set.h
/qemu/tcg/arm/tcg-target-con-str.h
/qemu/tcg/arm/tcg-target-reg-bits.h
/qemu/tcg/arm/tcg-target.c.inc
/qemu/tcg/arm/tcg-target.h
/qemu/tcg/i386/tcg-target-reg-bits.h
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/i386/tcg-target.h
/qemu/tcg/loongarch64/tcg-target-con-set.h
/qemu/tcg/loongarch64/tcg-target-con-str.h
/qemu/tcg/loongarch64/tcg-target-reg-bits.h
/qemu/tcg/loongarch64/tcg-target.c.inc
/qemu/tcg/loongarch64/tcg-target.h
/qemu/tcg/meson.build
/qemu/tcg/mips/tcg-target-con-set.h
/qemu/tcg/mips/tcg-target-con-str.h
/qemu/tcg/mips/tcg-target-reg-bits.h
/qemu/tcg/mips/tcg-target.c.inc
/qemu/tcg/mips/tcg-target.h
/qemu/tcg/optimize.c
/qemu/tcg/ppc/tcg-target-con-set.h
/qemu/tcg/ppc/tcg-target-con-str.h
/qemu/tcg/ppc/tcg-target-reg-bits.h
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/ppc/tcg-target.h
/qemu/tcg/region.c
/qemu/tcg/riscv/tcg-target-con-set.h
/qemu/tcg/riscv/tcg-target-con-str.h
/qemu/tcg/riscv/tcg-target-reg-bits.h
/qemu/tcg/riscv/tcg-target.c.inc
/qemu/tcg/riscv/tcg-target.h
/qemu/tcg/s390x/tcg-target-con-set.h
/qemu/tcg/s390x/tcg-target-con-str.h
/qemu/tcg/s390x/tcg-target-reg-bits.h
/qemu/tcg/s390x/tcg-target.c.inc
/qemu/tcg/s390x/tcg-target.h
/qemu/tcg/sparc64/tcg-target-con-set.h
/qemu/tcg/sparc64/tcg-target-con-str.h
/qemu/tcg/sparc64/tcg-target-reg-bits.h
/qemu/tcg/sparc64/tcg-target.c.inc
/qemu/tcg/sparc64/tcg-target.h
/qemu/tcg/tcg-internal.h
/qemu/tcg/tcg-ldst.c.inc
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg-op-ldst.c
/qemu/tcg/tcg-op-vec.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/README
/qemu/tcg/tci/tcg-target-reg-bits.h
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/avocado/acpi-bits.py
/qemu/tests/avocado/avocado_qemu/__init__.py
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/kvm_xen_guest.py
/qemu/tests/avocado/linux_ssh_mips_malta.py
/qemu/tests/avocado/machine_aarch64_sbsaref.py
/qemu/tests/avocado/machine_aarch64_virt.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/avocado/machine_loongarch.py
/qemu/tests/avocado/migration.py
/qemu/tests/avocado/multiprocess.py
/qemu/tests/avocado/netdev-ethtool.py
/qemu/tests/avocado/replay_kernel.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/avocado/virtio-gpu.py
/qemu/tests/bench/meson.build
/qemu/tests/bench/qtree-bench.c
/qemu/tests/data/acpi/microvm/APIC
/qemu/tests/data/acpi/microvm/APIC.ioapic2
/qemu/tests/data/acpi/microvm/APIC.pcie
/qemu/tests/data/acpi/pc/APIC
/qemu/tests/data/acpi/pc/APIC.acpihmat
/qemu/tests/data/acpi/pc/APIC.cphp
/qemu/tests/data/acpi/pc/APIC.dimmpxm
/qemu/tests/data/acpi/q35/APIC
/qemu/tests/data/acpi/q35/APIC.acpihmat
/qemu/tests/data/acpi/q35/APIC.acpihmat-noinitiator
/qemu/tests/data/acpi/q35/APIC.core-count2
/qemu/tests/data/acpi/q35/APIC.cphp
/qemu/tests/data/acpi/q35/APIC.dimmpxm
/qemu/tests/data/acpi/q35/APIC.xapic
/qemu/tests/decode/err_field10.decode
/qemu/tests/decode/err_field7.decode
/qemu/tests/decode/err_field8.decode
/qemu/tests/decode/err_field9.decode
/qemu/tests/decode/meson.build
/qemu/tests/decode/succ_named_field.decode
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/dockerfiles/alpine.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-all-test-cross.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-hexagon-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-mipsel-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-riscv64-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/docker/dockerfiles/debian-tricore-cross.docker
/qemu/tests/docker/dockerfiles/debian-xtensa-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/ubuntu2004.docker
/qemu/tests/docker/dockerfiles/ubuntu2204.docker
/qemu/tests/guest-debug/run-test.py
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/mappings.yml
/qemu/tests/lcitool/projects/qemu.yml
/qemu/tests/lcitool/refresh
/qemu/tests/lcitool/targets/opensuse-leap-15.yml
/qemu/tests/meson.build
/qemu/tests/migration/meson.build
/qemu/tests/qapi-schema/args-if-implicit.err
/qemu/tests/qapi-schema/args-if-implicit.json
/qemu/tests/qapi-schema/args-if-implicit.out
/qemu/tests/qapi-schema/args-if-unboxed.err
/qemu/tests/qapi-schema/args-if-unboxed.json
/qemu/tests/qapi-schema/args-if-unboxed.out
/qemu/tests/qapi-schema/bad-data.err
/qemu/tests/qapi-schema/doc-bad-indent.err
/qemu/tests/qapi-schema/doc-bad-indent.json
/qemu/tests/qapi-schema/doc-good.json
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/doc-interleaved-section.err
/qemu/tests/qapi-schema/event-args-if-unboxed.err
/qemu/tests/qapi-schema/event-args-if-unboxed.json
/qemu/tests/qapi-schema/event-args-if-unboxed.out
/qemu/tests/qapi-schema/event-nest-struct.err
/qemu/tests/qapi-schema/meson.build
/qemu/tests/qapi-schema/nested-struct-data.err
/qemu/tests/qapi-schema/qapi-schema-test.json
/qemu/tests/qapi-schema/qapi-schema-test.out
/qemu/tests/qapi-schema/returns-dict.err
/qemu/tests/qapi-schema/struct-data-typename.err
/qemu/tests/qapi-schema/struct-data-typename.json
/qemu/tests/qapi-schema/struct-data-typename.out
/qemu/tests/qapi-schema/struct-member-invalid.err
/qemu/tests/qapi-schema/test-qapi.py
/qemu/tests/qapi-schema/union-array-branch.err
/qemu/tests/qapi-schema/union-invalid-discriminator.err
/qemu/tests/qapi-schema/union-invalid-discriminator.json
/qemu/tests/qapi-schema/union-invalid-union-subfield.err
/qemu/tests/qapi-schema/union-invalid-union-subfield.json
/qemu/tests/qapi-schema/union-invalid-union-subfield.out
/qemu/tests/qapi-schema/union-invalid-union-subtype.err
/qemu/tests/qapi-schema/union-invalid-union-subtype.json
/qemu/tests/qapi-schema/union-invalid-union-subtype.out
/qemu/tests/qemu-iotests/049.out
/qemu/tests/qemu-iotests/051.out
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/172
/qemu/tests/qemu-iotests/178.out.qcow2
/qemu/tests/qemu-iotests/178.out.raw
/qemu/tests/qemu-iotests/227.out
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/245.out
/qemu/tests/qemu-iotests/256
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/meson.build
/qemu/tests/qemu-iotests/testenv.py
/qemu/tests/qemu-iotests/testrunner.py
/qemu/tests/qemu-iotests/tests/graph-changes-while-io
/qemu/tests/qemu-iotests/tests/graph-changes-while-io.out
/qemu/tests/qemu-iotests/tests/iothreads-create
/qemu/tests/qemu-iotests/tests/iothreads-create.out
/qemu/tests/qemu-iotests/tests/iothreads-resize
/qemu/tests/qemu-iotests/tests/iothreads-resize.out
/qemu/tests/qemu-iotests/tests/iov-padding
/qemu/tests/qemu-iotests/tests/iov-padding.out
/qemu/tests/qemu-iotests/tests/nbd-reconnect-on-open
/qemu/tests/qemu-iotests/tests/nbd-reconnect-on-open.out
/qemu/tests/qemu-iotests/tests/regression-vhdx-log
/qemu/tests/qemu-iotests/tests/regression-vhdx-log.out
/qemu/tests/qemu-iotests/tests/zoned
/qemu/tests/qemu-iotests/tests/zoned.out
/qemu/tests/qtest/ac97-test.c
/qemu/tests/qtest/ahci-test.c
/qemu/tests/qtest/arm-cpu-features.c
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/boot-order-test.c
/qemu/tests/qtest/boot-serial-test.c
/qemu/tests/qtest/cdrom-test.c
/qemu/tests/qtest/cxl-test.c
/qemu/tests/qtest/device-plug-test.c
/qemu/tests/qtest/fdc-test.c
/qemu/tests/qtest/fuzz-lsi53c895a-test.c
/qemu/tests/qtest/ide-test.c
/qemu/tests/qtest/libqos/igb.c
/qemu/tests/qtest/libqos/virtio-9p-client.c
/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/netdev-socket.c
/qemu/tests/qtest/pxe-test.c
/qemu/tests/qtest/qtest_aspeed.c
/qemu/tests/qtest/qtest_aspeed.h
/qemu/tests/qtest/readconfig-test.c
/qemu/tests/qtest/rtl8139-test.c
/qemu/tests/qtest/test-filter-mirror.c
/qemu/tests/qtest/test-filter-redirector.c
/qemu/tests/qtest/test-hmp.c
/qemu/tests/qtest/tpm-crb-swtpm-test.c
/qemu/tests/qtest/tpm-crb-test.c
/qemu/tests/qtest/tpm-tis-device-swtpm-test.c
/qemu/tests/qtest/tpm-tis-i2c-test.c
/qemu/tests/qtest/tpm-tis-swtpm-test.c
/qemu/tests/qtest/tpm-tis-util.c
/qemu/tests/qtest/tpm-tis-util.h
/qemu/tests/qtest/tpm-util.c
/qemu/tests/qtest/tpm-util.h
/qemu/tests/qtest/usb-hcd-ehci-test.c
/qemu/tests/qtest/usb-hcd-uhci-test.c
/qemu/tests/qtest/vhost-user-test.c
/qemu/tests/qtest/virtio-blk-test.c
/qemu/tests/qtest/virtio-ccw-test.c
/qemu/tests/qtest/vmgenid-test.c
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/aarch64/Makefile.softmmu-target
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/arm/Makefile.softmmu-target
/qemu/tests/tcg/arm/Makefile.target
/qemu/tests/tcg/cris/Makefile.target
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/atomics.c
/qemu/tests/tcg/hexagon/brev.c
/qemu/tests/tcg/hexagon/circ.c
/qemu/tests/tcg/hexagon/dual_stores.c
/qemu/tests/tcg/hexagon/fpstuff.c
/qemu/tests/tcg/hexagon/hex_sigsegv.c
/qemu/tests/tcg/hexagon/hex_test.h
/qemu/tests/tcg/hexagon/hvx_misc.c
/qemu/tests/tcg/hexagon/hvx_misc.h
/qemu/tests/tcg/hexagon/invalid-slots.c
/qemu/tests/tcg/hexagon/load_align.c
/qemu/tests/tcg/hexagon/load_unpack.c
/qemu/tests/tcg/hexagon/mem_noshuf.c
/qemu/tests/tcg/hexagon/mem_noshuf_exception.c
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/tcg/hexagon/multi_result.c
/qemu/tests/tcg/hexagon/overflow.c
/qemu/tests/tcg/hexagon/preg_alias.c
/qemu/tests/tcg/hexagon/read_write_overlap.c
/qemu/tests/tcg/hexagon/reg_mut.c
/qemu/tests/tcg/hexagon/usr.c
/qemu/tests/tcg/hexagon/v68_hvx.c
/qemu/tests/tcg/hexagon/v68_scalar.c
/qemu/tests/tcg/hexagon/v69_hvx.c
/qemu/tests/tcg/hexagon/v6mpy_ref.c.inc
/qemu/tests/tcg/hexagon/v73_scalar.c
/qemu/tests/tcg/hppa/Makefile.target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/i386/test-avx.py
/qemu/tests/tcg/multiarch/system/Makefile.softmmu-target
/qemu/tests/tcg/multiarch/system/memory.c
/qemu/tests/tcg/ppc64/Makefile.target
/qemu/tests/tcg/ppc64/vector.c
/qemu/tests/tcg/riscv64/Makefile.softmmu-target
/qemu/tests/tcg/riscv64/Makefile.target
/qemu/tests/tcg/s390x/Makefile.softmmu-target
/qemu/tests/tcg/s390x/Makefile.target
/qemu/tests/tcg/s390x/console.c
/qemu/tests/tcg/s390x/ex-branch.c
/qemu/tests/tcg/s390x/head64.S
/qemu/tests/tcg/tricore/Makefile.softmmu-target
/qemu/tests/tcg/xtensa/Makefile.softmmu-target
/qemu/tests/unit/meson.build
/qemu/tests/unit/ptimer-test-stubs.c
/qemu/tests/unit/test-aio-multithread.c
/qemu/tests/unit/test-aio.c
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-block-iothread.c
/qemu/tests/unit/test-crypto-secret.c
/qemu/tests/unit/test-cutils.c
/qemu/tests/unit/test-nested-aio-poll.c
/qemu/tests/unit/test-qga.c
/qemu/tests/unit/test-qobject-input-visitor.c
/qemu/tests/unit/test-qobject-output-visitor.c
/qemu/tests/unit/test-qtree.c
/qemu/tests/unit/test-thread-pool.c
/qemu/tests/unit/test-xbzrle.c
/qemu/tests/vm/Makefile.include
/qemu/tests/vm/freebsd
/qemu/tests/vm/netbsd
/qemu/tests/vm/openbsd
/qemu/trace-events
/qemu/trace/control-internal.h
/qemu/trace/control-target.c
/qemu/trace/control.c
/qemu/trace/control.h
/qemu/trace/event-internal.h
/qemu/trace/qmp.c
/qemu/trace/trace-hmp-cmds.c
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/cursor.c
/qemu/ui/dbus-listener.c
/qemu/ui/dbus.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk-gl-area.c
/qemu/ui/gtk.c
/qemu/ui/input.c
/qemu/ui/meson.build
/qemu/ui/sdl2-gl.c
/qemu/ui/sdl2.c
/qemu/ui/spice-core.c
/qemu/ui/trace-events
/qemu/ui/ui-hmp-cmds.c
/qemu/ui/ui-qmp-cmds.c
/qemu/ui/vnc.c
/qemu/util/aio-posix.c
/qemu/util/aio-posix.h
/qemu/util/aio-wait.c
/qemu/util/aio-win32.c
/qemu/util/async-teardown.c
/qemu/util/async.c
/qemu/util/bufferiszero.c
/qemu/util/coroutine-windows.c
/qemu/util/cpuinfo-aarch64.c
/qemu/util/cpuinfo-i386.c
/qemu/util/crc32c.c
/qemu/util/cutils.c
/qemu/util/error.c
/qemu/util/fdmon-epoll.c
/qemu/util/fdmon-io_uring.c
/qemu/util/fdmon-poll.c
/qemu/util/guest-random.c
/qemu/util/iov.c
/qemu/util/main-loop.c
/qemu/util/meson.build
/qemu/util/mmap-alloc.c
/qemu/util/oslib-win32.c
/qemu/util/qemu-coroutine-io.c
/qemu/util/qemu-coroutine-lock.c
/qemu/util/qemu-coroutine.c
/qemu/util/qemu-sockets.c
/qemu/util/qsp.c
/qemu/util/qtree.c
/qemu/util/rcu.c
/qemu/util/stats64.c
/qemu/util/systemd.c
/qemu/util/thread-pool.c
/qemu/util/trace-events
/qemu/util/vfio-helpers.c
/qemu/util/vhost-user-server.c
48805df915-Mar-2023 Yeqi Fu <fufuyqqqqqq@gmail.com>

replace TABs with spaces

Bring the files in line with the QEMU coding style, with spaces
for indentation.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/378
Signed-off-by: Yeqi Fu <fufuyqq

replace TABs with spaces

Bring the files in line with the QEMU coding style, with spaces
for indentation.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/378
Signed-off-by: Yeqi Fu <fufuyqqqqqq@gmail.com>
Message-Id: <20230315032649.57568-1-fufuyqqqqqq@gmail.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...


/qemu/MAINTAINERS
/qemu/chardev/baum.c
/qemu/docs/devel/atomics.rst
/qemu/docs/meson.build
/qemu/docs/sphinx/kerneldoc.py
/qemu/hw/char/parallel.c
/qemu/hw/char/serial.c
/qemu/hw/core/loader.c
/qemu/hw/dma/etraxfs_dma.c
/qemu/hw/gpio/max7310.c
/qemu/hw/input/ads7846.c
/qemu/hw/input/ps2.c
/qemu/hw/intc/ioapic.c
/qemu/hw/rtc/m48t59.c
/qemu/hw/rtc/twl92230.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/sd/sd.c
/qemu/hw/watchdog/wdt_ib700.c
/qemu/include/crypto/aes.h
/qemu/include/crypto/desrfb.h
/qemu/include/disas/dis-asm.h
/qemu/include/elf.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/memory.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/pci/pci_bridge.h
/qemu/include/hw/pcmcia.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/sd/sd.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/qemu/bitmap.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/uri.h
/qemu/io/channel-tls.c
/qemu/migration/multifd.c
/qemu/migration/postcopy-ram.c
/qemu/migration/rdma.c
/qemu/migration/target.c
/qemu/migration/xbzrle.c
optionrom/optionrom.h
/qemu/qapi/ui.json
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/vl.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/tcg/excp_helper.c
/qemu/target/s390x/tcg/insn-data.h.inc
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/sh4/translate.c
/qemu/tests/tcg/s390x/Makefile.softmmu-target
/qemu/tests/tcg/s390x/Makefile.target
/qemu/tests/tcg/s390x/br-odd.S
/qemu/tests/tcg/s390x/cgrl-unaligned.S
/qemu/tests/tcg/s390x/clrl-unaligned.S
/qemu/tests/tcg/s390x/crl-unaligned.S
/qemu/tests/tcg/s390x/ex-odd.S
/qemu/tests/tcg/s390x/ex-relative-long.c
/qemu/tests/tcg/s390x/exrl-ssm-early.S
/qemu/tests/tcg/s390x/lgrl-unaligned.S
/qemu/tests/tcg/s390x/llgfrl-unaligned.S
/qemu/tests/tcg/s390x/lpsw.S
/qemu/tests/tcg/s390x/lpswe-early.S
/qemu/tests/tcg/s390x/lpswe-unaligned.S
/qemu/tests/tcg/s390x/lrl-unaligned.S
/qemu/tests/tcg/s390x/pgm-specification-softmmu.S
/qemu/tests/tcg/s390x/pgm-specification-user.c
/qemu/tests/tcg/s390x/pgm-specification.mak
/qemu/tests/tcg/s390x/rxsbg.c
/qemu/tests/tcg/s390x/softmmu.ld
/qemu/tests/tcg/s390x/ssm-early.S
/qemu/tests/tcg/s390x/stgrl-unaligned.S
/qemu/tests/tcg/s390x/stosm-early.S
/qemu/tests/tcg/s390x/strl-unaligned.S
/qemu/tests/tcg/xtensa/Makefile.softmmu-target
/qemu/tests/tcg/xtensaeb/Makefile.softmmu-target
/qemu/tests/unit/test-blockjob.c
/qemu/tests/unit/test-rcu-list.c
/qemu/ui/keycodemapdb
/qemu/util/bitops.c
/qemu/util/envlist.c
86305e8609-Mar-2023 Gerd Hoffmann <kraxel@redhat.com>

edk2: update firmware binaries

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>

9e8a55aa09-Mar-2023 Gerd Hoffmann <kraxel@redhat.com>

edk2: update submodule to edk2-stable202302

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>

d80d761d16-Mar-2023 Gerd Hoffmann <kraxel@redhat.com>

update seabios binaries to 1.16.2

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>


/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/qemu-project.yml
/qemu/.mailmap
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/tcg/plugin-gen.c
/qemu/audio/audio_int.h
/qemu/audio/dbusaudio.c
/qemu/backends/cryptodev-builtin.c
/qemu/backends/cryptodev-hmp-cmds.c
/qemu/backends/cryptodev-lkcf.c
/qemu/backends/cryptodev-vhost-user.c
/qemu/backends/cryptodev-vhost.c
/qemu/backends/cryptodev.c
/qemu/backends/meson.build
/qemu/backends/tpm/tpm_emulator.c
/qemu/block/export/fuse.c
/qemu/block/qed.c
/qemu/chardev/char.c
/qemu/contrib/gitdm/domain-map
/qemu/contrib/gitdm/group-map-facebook
/qemu/contrib/gitdm/group-map-ibm
/qemu/contrib/gitdm/group-map-individuals
/qemu/crypto/afalg.c
/qemu/disas/riscv.c
/qemu/docs/system/device-emulation.rst
/qemu/docs/system/devices/igb.rst
/qemu/ebpf/rss.bpf.skeleton.h
/qemu/gitdm.config
/qemu/hmp-commands-info.hx
/qemu/hmp-commands.hx
/qemu/hw/acpi/acpi-pci-hotplug-stub.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/pci-bridge.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/core/machine.c
/qemu/hw/cxl/cxl-component-utils.c
/qemu/hw/cxl/cxl-host.c
/qemu/hw/display/qxl-render.c
/qemu/hw/display/qxl.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/hyperv/syndbg.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/cxl_type3_stubs.c
/qemu/hw/mem/meson.build
/qemu/hw/net/Kconfig
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000_common.h
/qemu/hw/net/e1000_regs.h
/qemu/hw/net/e1000e.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/e1000e_core.h
/qemu/hw/net/e1000x_common.c
/qemu/hw/net/e1000x_common.h
/qemu/hw/net/e1000x_regs.h
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/fsl_etsec/etsec.h
/qemu/hw/net/fsl_etsec/miim.c
/qemu/hw/net/igb.c
/qemu/hw/net/igb_common.h
/qemu/hw/net/igb_core.c
/qemu/hw/net/igb_core.h
/qemu/hw/net/igb_regs.h
/qemu/hw/net/igbvf.c
/qemu/hw/net/meson.build
/qemu/hw/net/net_rx_pkt.c
/qemu/hw/net/net_rx_pkt.h
/qemu/hw/net/net_tx_pkt.c
/qemu/hw/net/net_tx_pkt.h
/qemu/hw/net/trace-events
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/pci-bridge/cxl_root_port.c
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/pci/pci-internal.h
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie_aer.c
/qemu/hw/pci/pcie_port.c
/qemu/hw/pci/pcie_sriov.c
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vhost-shadow-virtqueue.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio.c
/qemu/include/block/aio.h
/qemu/include/elf.h
/qemu/include/exec/cpu-defs.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/acpi/pcihp.h
/qemu/include/hw/acpi/piix4.h
/qemu/include/hw/cxl/cxl.h
/qemu/include/hw/cxl/cxl_component.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/hotplug.h
/qemu/include/hw/net/mii.h
/qemu/include/hw/pci/pci_bridge.h
/qemu/include/hw/pci/pcie_aer.h
/qemu/include/hw/pci/pcie_port.h
/qemu/include/hw/pci/pcie_regs.h
/qemu/include/hw/pci/pcie_sriov.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/virtio/vhost-backend.h
/qemu/include/hw/virtio/vhost-vdpa.h
/qemu/include/monitor/hmp.h
/qemu/include/net/eth.h
/qemu/include/net/net.h
/qemu/include/qapi/error.h
/qemu/include/qemu/main-loop.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/sockets.h
/qemu/include/sysemu/cryptodev.h
/qemu/include/sysemu/os-posix.h
/qemu/include/sysemu/os-win32.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg-temp-internal.h
/qemu/include/tcg/tcg.h
/qemu/include/ui/console.h
/qemu/include/ui/egl-helpers.h
/qemu/io/channel-socket.c
/qemu/io/channel-watch.c
/qemu/linux-user/alpha/target_mman.h
/qemu/linux-user/elfload.c
/qemu/linux-user/fd-trans.c
/qemu/linux-user/fd-trans.h
/qemu/linux-user/generic/target_mman.h
/qemu/linux-user/generic/target_resource.h
/qemu/linux-user/hppa/target_mman.h
/qemu/linux-user/i386/cpu_loop.c
/qemu/linux-user/main.c
/qemu/linux-user/sparc/cpu_loop.c
/qemu/linux-user/sparc/signal.c
/qemu/linux-user/sparc/target_signal.h
/qemu/linux-user/strace.c
/qemu/linux-user/strace.list
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/meson.build
/qemu/monitor/fds.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/qmp-cmds.c
/qemu/net/dgram.c
/qemu/net/dump.c
/qemu/net/eth.c
/qemu/net/net.c
/qemu/net/slirp.c
/qemu/net/socket.c
/qemu/net/tap.c
/qemu/net/vhost-vdpa.c
bios-256k.bin
bios-microvm.bin
bios.bin
vgabios-ati.bin
vgabios-bochs-display.bin
vgabios-cirrus.bin
vgabios-qxl.bin
vgabios-ramfb.bin
vgabios-stdvga.bin
vgabios-virtio.bin
vgabios-vmware.bin
vgabios.bin
/qemu/qapi/cryptodev.json
/qemu/qapi/cxl.json
/qemu/qapi/meson.build
/qemu/qapi/misc.json
/qemu/qapi/qapi-schema.json
/qemu/qapi/qom.json
/qemu/qapi/stats.json
/qemu/qemu-options.hx
/qemu/qga/installer/qemu-ga.wxs
/qemu/qga/vss-win32/install.cpp
/qemu/qga/vss-win32/qga-vss.def
/qemu/qga/vss-win32/requester.cpp
/qemu/qga/vss-win32/vss-handles.h
/qemu/roms/seabios
/qemu/scripts/ci/org.centos/stream/8/x86_64/test-avocado
/qemu/stats/stats-hmp-cmds.c
/qemu/stats/stats-qmp-cmds.c
/qemu/target/alpha/cpu-param.h
/qemu/target/arm/cpu-param.h
/qemu/target/arm/internals.h
/qemu/target/arm/tcg/translate-a64.c
/qemu/target/arm/tcg/translate-mve.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/arm/vfp_helper.c
/qemu/target/avr/cpu-param.h
/qemu/target/avr/translate.c
/qemu/target/cris/cpu-param.h
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hexagon/README
/qemu/target/hexagon/attribs_def.h.inc
/qemu/target/hexagon/cpu-param.h
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/gen_analyze_funcs.py
/qemu/target/hexagon/gen_helper_funcs.py
/qemu/target/hexagon/gen_helper_protos.py
/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/hex_common.py
/qemu/target/hexagon/idef-parser/idef-parser.h
/qemu/target/hexagon/idef-parser/idef-parser.lex
/qemu/target/hexagon/idef-parser/idef-parser.y
/qemu/target/hexagon/idef-parser/macros.inc
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/meson.build
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/op_helper.h
/qemu/target/hexagon/translate.c
/qemu/target/hexagon/translate.h
/qemu/target/hppa/cpu-param.h
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu-param.h
/qemu/target/i386/tcg/translate.c
/qemu/target/loongarch/cpu-param.h
/qemu/target/m68k/cpu-param.h
/qemu/target/m68k/translate.c
/qemu/target/microblaze/cpu-param.h
/qemu/target/microblaze/cpu.h
/qemu/target/mips/cpu-param.h
/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/octeon_translate.c
/qemu/target/mips/tcg/translate.c
/qemu/target/mips/tcg/translate_addr_const.c
/qemu/target/mips/tcg/tx79_translate.c
/qemu/target/mips/tcg/vr54xx_translate.c
/qemu/target/nios2/cpu-param.h
/qemu/target/openrisc/cpu-param.h
/qemu/target/ppc/cpu-param.h
/qemu/target/ppc/power8-pmu-regs.c.inc
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/fixedpoint-impl.c.inc
/qemu/target/ppc/translate/fp-impl.c.inc
/qemu/target/ppc/translate/vmx-impl.c.inc
/qemu/target/ppc/translate/vsx-impl.c.inc
/qemu/target/riscv/cpu-param.h
/qemu/target/rx/cpu-param.h
/qemu/target/rx/translate.c
/qemu/target/s390x/cpu-param.h
/qemu/target/s390x/tcg/insn-data.h.inc
/qemu/target/s390x/tcg/translate.c
/qemu/target/s390x/tcg/translate_vx.c.inc
/qemu/target/sh4/cpu-param.h
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu-param.h
/qemu/target/sparc/cpu.h
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu-param.h
/qemu/target/tricore/translate.c
/qemu/target/xtensa/cpu-param.h
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg-op-vec.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tests/avocado/igb.py
/qemu/tests/data/acpi/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpierst
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.nohpet
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpierst
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.acpihmat-noinitiator
/qemu/tests/data/acpi/q35/DSDT.applesmc
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.core-count2
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.cxl
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.ipmismbus
/qemu/tests/data/acpi/q35/DSDT.ivrs
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.multi-bridge
/qemu/tests/data/acpi/q35/DSDT.noacpihp
/qemu/tests/data/acpi/q35/DSDT.nohpet
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.pvpanic-isa
/qemu/tests/data/acpi/q35/DSDT.tis.tpm12
/qemu/tests/data/acpi/q35/DSDT.tis.tpm2
/qemu/tests/data/acpi/q35/DSDT.viot
/qemu/tests/data/acpi/q35/DSDT.xapic
/qemu/tests/docker/docker.py
/qemu/tests/qemu-iotests/308
/qemu/tests/qemu-iotests/308.out
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/e1000e-test.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/igb-test.c
/qemu/tests/qtest/libqos/e1000e.c
/qemu/tests/qtest/libqos/e1000e.h
/qemu/tests/qtest/libqos/igb.c
/qemu/tests/qtest/libqos/meson.build
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/libqtest.h
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/microbit-test.c
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/netdev-socket.c
/qemu/tests/qtest/vnc-display-test.c
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/fpstuff.c
/qemu/tests/tcg/hexagon/preg_alias.c
/qemu/tests/tcg/hexagon/scatter_gather.c
/qemu/tests/tcg/s390x/Makefile.target
/qemu/tests/tcg/s390x/chrl.c
/qemu/tests/unit/meson.build
/qemu/tests/unit/socket-helpers.c
/qemu/tests/unit/test-error-report.c
/qemu/tests/unit/test-io-channel-command.c
/qemu/tools/ebpf/Makefile.ebpf
/qemu/tools/ebpf/rss.bpf.c
/qemu/ui/console.c
/qemu/ui/cursor.c
/qemu/ui/dbus-clipboard.c
/qemu/ui/dbus-console.c
/qemu/ui/dbus-listener.c
/qemu/ui/dbus.c
/qemu/ui/egl-headless.c
/qemu/ui/egl-helpers.c
/qemu/ui/meson.build
/qemu/ui/sdl2.c
/qemu/ui/shader/texture-blit-flip.vert
/qemu/ui/shader/texture-blit.frag
/qemu/ui/shader/texture-blit.vert
/qemu/ui/spice-core.c
/qemu/ui/spice-display.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/aio-posix.c
/qemu/util/aio-win32.c
/qemu/util/error.c
/qemu/util/main-loop.c
/qemu/util/oslib-posix.c
/qemu/util/oslib-win32.c
/qemu/util/qemu-sockets.c
e3b27e7906-Mar-2023 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Update s390-ccw.img with the list-directed IPL fix

This update includes the list-directed IPL fix from Jared Rossi.

Signed-off-by: Thomas Huth <thuth@redhat.com>

8af5d14121-Feb-2023 Jared Rossi <jrossi@linux.ibm.com>

pc-bios: Add support for List-Directed IPL from ECKD DASD

Check for a List Directed IPL Boot Record, which would supersede the CCW type
entries. If the record is valid, proceed to use the new style

pc-bios: Add support for List-Directed IPL from ECKD DASD

Check for a List Directed IPL Boot Record, which would supersede the CCW type
entries. If the record is valid, proceed to use the new style pointers
and perform LD-IPL. Each block pointer is interpreted as either an LD-IPL
pointer or a legacy CCW pointer depending on the type of IPL initiated.

In either case CCW- or LD-IPL is transparent to the user and will boot the same
image regardless of which set of pointers is used. Because the interactive boot
menu is only written with the old style pointers, the menu will be disabled for
List Directed IPL from ECKD DASD.

If the LD-IPL fails, retry the IPL using the CCW type pointers.

If no LD-IPL boot record is found, simply perform CCW type IPL as usual.

Signed-off-by: Jared Rossi <jrossi@linux.ibm.com>
Message-Id: <20230221174548.1866861-2-jrossi@linux.ibm.com>
[thuth: Drop some superfluous parantheses]
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...


/qemu/.cirrus.yml
/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/cirrus/build.yml
/qemu/.gitlab-ci.d/cirrus/freebsd-12.vars
/qemu/.gitlab-ci.d/cirrus/freebsd-13.vars
/qemu/.gitlab-ci.d/cirrus/macos-12.vars
/qemu/.gitlab-ci.d/container-template.yml
/qemu/.gitlab-ci.d/containers.yml
/qemu/.gitlab-ci.d/crossbuild-template.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.d/custom-runners.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
/qemu/.gitlab-ci.d/windows.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/kvm/kvm-all.c
/qemu/accel/kvm/kvm-cpus.h
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/internal.h
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/monitor.c
/qemu/accel/tcg/perf.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tb-jmp-cache.h
/qemu/accel/tcg/tb-maint.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/accel/tcg/user-exec-stub.c
/qemu/accel/tcg/user-exec.c
/qemu/accel/xen/xen-all.c
/qemu/audio/alsaaudio.c
/qemu/audio/audio.c
/qemu/audio/audio_int.h
/qemu/audio/audio_template.h
/qemu/audio/mixeng.c
/qemu/audio/mixeng.h
/qemu/audio/rate_template.h
/qemu/backends/vhost-user.c
/qemu/block/vvfat.c
/qemu/bsd-user/freebsd/os-sys.c
/qemu/bsd-user/freebsd/os-syscall.c
/qemu/bsd-user/qemu.h
/qemu/chardev/char-socket.c
/qemu/configs/targets/aarch64-linux-user.mak
/qemu/configs/targets/aarch64-softmmu.mak
/qemu/configs/targets/aarch64_be-linux-user.mak
/qemu/configure
/qemu/contrib/gitdm/filetypes.txt
/qemu/cpu.c
/qemu/cpus-common.c
/qemu/docs/about/build-platforms.rst
/qemu/docs/about/deprecated.rst
/qemu/docs/config/mach-virt-graphical.cfg
/qemu/docs/config/mach-virt-serial.cfg
/qemu/docs/config/q35-emulated.cfg
/qemu/docs/config/q35-virtio-graphical.cfg
/qemu/docs/config/q35-virtio-serial.cfg
/qemu/docs/devel/tcg-ops.rst
/qemu/docs/devel/testing.rst
/qemu/docs/interop/vhost-user.rst
/qemu/docs/meson.build
/qemu/docs/system/arm/aspeed.rst
/qemu/docs/system/i386/xen.rst
/qemu/docs/system/loongarch/virt.rst
/qemu/docs/system/target-i386.rst
/qemu/dump/dump-hmp-cmds.c
/qemu/dump/dump.c
/qemu/dump/meson.build
/qemu/dump/win_dump.c
/qemu/dump/win_dump.h
/qemu/gdb-xml/aarch64-pauth.xml
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/internals.h
/qemu/gdbstub/softmmu.c
/qemu/gdbstub/user.c
/qemu/hmp-commands.hx
/qemu/hw/Kconfig
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/ich9_tco.c
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/allwinner-h3.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_eeprom.c
/qemu/hw/arm/aspeed_eeprom.h
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/fby35.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/stellaris.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/ac97.h
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/sb16.c
/qemu/hw/block/fdc-isa.c
/qemu/hw/char/pl011.c
/qemu/hw/char/xilinx_uartlite.c
/qemu/hw/core/irq.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/or-irq.c
/qemu/hw/core/ptimer.c
/qemu/hw/core/qdev.c
/qemu/hw/cxl/cxl-device-utils.c
/qemu/hw/cxl/cxl-mailbox-utils.c
/qemu/hw/display/sm501.c
/qemu/hw/dma/i82374.c
/qemu/hw/gpio/max7310.c
/qemu/hw/hppa/machine.c
/qemu/hw/i2c/allwinner-i2c.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/core.c
/qemu/hw/i2c/smbus_ich9.c
/qemu/hw/i386/Kconfig
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/ioapic.c
/qemu/hw/i386/kvm/meson.build
/qemu/hw/i386/kvm/trace-events
/qemu/hw/i386/kvm/trace.h
/qemu/hw/i386/kvm/xen-stubs.c
/qemu/hw/i386/kvm/xen_evtchn.c
/qemu/hw/i386/kvm/xen_evtchn.h
/qemu/hw/i386/kvm/xen_gnttab.c
/qemu/hw/i386/kvm/xen_gnttab.h
/qemu/hw/i386/kvm/xen_overlay.c
/qemu/hw/i386/kvm/xen_overlay.h
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/kvm/xen_xenstore.h
/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/i386/xen/meson.build
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/atapi.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/core.c
/qemu/hw/ide/ich.c
/qemu/hw/ide/ioport.c
/qemu/hw/ide/isa.c
/qemu/hw/ide/macio.c
/qemu/hw/ide/microdrive.c
/qemu/hw/ide/mmio.c
/qemu/hw/ide/pci.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/qdev.c
/qemu/hw/ide/sii3112.c
/qemu/hw/ide/trace-events
/qemu/hw/ide/via.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/ioapic_common.c
/qemu/hw/intc/ioapic_internal.h
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/microblaze/petalogix_s3adsp1800_mmu.c
/qemu/hw/mips/jazz.c
/qemu/hw/misc/i2c-echo.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/meson.build
/qemu/hw/net/virtio-net.c
/qemu/hw/nubus/nubus-device.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/nvme.h
/qemu/hw/nvme/subsys.c
/qemu/hw/nvme/trace-events
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/pci-bridge/cxl_downstream.c
/qemu/hw/pci-bridge/i82801b11.c
/qemu/hw/pci-host/pnv_phb.c
/qemu/hw/pci-host/pnv_phb4_pec.c
/qemu/hw/pci-host/raven.c
/qemu/hw/pci/msi.c
/qemu/hw/pci/msix.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie.c
/qemu/hw/pci/shpc.c
/qemu/hw/pci/trace-events
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/m48t59-isa.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/scsi/viosrp.h
/qemu/hw/sh4/r2d.c
/qemu/hw/sh4/sh7750_regs.h
/qemu/hw/smbios/smbios.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/timer/hpet.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-ohci.h
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-uhci.h
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/trace-events
/qemu/hw/usb/u2f.h
/qemu/hw/virtio/vhost-shadow-virtqueue.c
/qemu/hw/virtio/vhost-user-gpio.c
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost-user-rng.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/virtio-qmp.c
/qemu/hw/xen/Kconfig
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xen/xen_pt.h
/qemu/hw/xen/xen_pt_config_init.c
/qemu/hw/xen/xen_pt_stub.c
/qemu/hw/xenpv/xen_machine_pv.c
/qemu/include/block/nvme.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/gen-icount.h
/qemu/include/exec/helper-head.h
/qemu/include/exec/memory.h
/qemu/include/exec/replay-core.h
/qemu/include/exec/translator.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/arm/allwinner-a10.h
/qemu/include/hw/arm/allwinner-h3.h
/qemu/include/hw/arm/armsse.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/arm/bcm2835_peripherals.h
/qemu/include/hw/arm/exynos4210.h
/qemu/include/hw/arm/raspi_platform.h
/qemu/include/hw/arm/stm32f205_soc.h
/qemu/include/hw/arm/stm32f405_soc.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/char/cmsdk-apb-uart.h
/qemu/include/hw/char/pl011.h
/qemu/include/hw/char/xilinx_uartlite.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/i2c/allwinner-i2c.h
/qemu/include/hw/i2c/i2c.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/ide.h
/qemu/include/hw/ide/internal.h
/qemu/include/hw/ide/isa.h
/qemu/include/hw/ide/mmio.h
/qemu/include/hw/ide/pci.h
/qemu/include/hw/intc/i8259.h
/qemu/include/hw/intc/ioapic.h
/qemu/include/hw/isa/i8259_internal.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/isa/superio.h
/qemu/include/hw/loader.h
/qemu/include/hw/loongarch/virt.h
/qemu/include/hw/nvram/fw_cfg.h
/qemu/include/hw/or-irq.h
/qemu/include/hw/pci-host/ls7a.h
/qemu/include/hw/pci-host/pnv_phb4.h
/qemu/include/hw/pci/msi.h
/qemu/include/hw/pci/pcie.h
/qemu/include/hw/pci/pcie_regs.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/riscv/sifive_u.h
/qemu/include/hw/rtc/mc146818rtc.h
/qemu/include/hw/southbridge/ich9.h
/qemu/include/hw/timer/cmsdk-apb-timer.h
/qemu/include/hw/timer/i8254.h
/qemu/include/hw/timer/i8254_internal.h
/qemu/include/hw/virtio/vhost-user-gpio.h
/qemu/include/hw/xen/interface/arch-arm.h
/qemu/include/hw/xen/interface/arch-x86/cpuid.h
/qemu/include/hw/xen/interface/arch-x86/xen-x86_32.h
/qemu/include/hw/xen/interface/arch-x86/xen-x86_64.h
/qemu/include/hw/xen/interface/arch-x86/xen.h
/qemu/include/hw/xen/interface/event_channel.h
/qemu/include/hw/xen/interface/features.h
/qemu/include/hw/xen/interface/grant_table.h
/qemu/include/hw/xen/interface/hvm/hvm_op.h
/qemu/include/hw/xen/interface/hvm/params.h
/qemu/include/hw/xen/interface/io/blkif.h
/qemu/include/hw/xen/interface/io/console.h
/qemu/include/hw/xen/interface/io/fbif.h
/qemu/include/hw/xen/interface/io/kbdif.h
/qemu/include/hw/xen/interface/io/netif.h
/qemu/include/hw/xen/interface/io/ring.h
/qemu/include/hw/xen/interface/io/usbif.h
/qemu/include/hw/xen/interface/io/xenbus.h
/qemu/include/hw/xen/interface/io/xs_wire.h
/qemu/include/hw/xen/interface/memory.h
/qemu/include/hw/xen/interface/physdev.h
/qemu/include/hw/xen/interface/sched.h
/qemu/include/hw/xen/interface/trace.h
/qemu/include/hw/xen/interface/vcpu.h
/qemu/include/hw/xen/interface/version.h
/qemu/include/hw/xen/interface/xen-compat.h
/qemu/include/hw/xen/interface/xen.h
/qemu/include/hw/xen/xen-legacy-backend.h
/qemu/include/hw/xen/xen.h
/qemu/include/monitor/hmp.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/cpuid.h
/qemu/include/qemu/typedefs.h
/qemu/include/qemu/uri.h
/qemu/include/qemu/uuid.h
/qemu/include/sysemu/accel-ops.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/kvm_xen.h
/qemu/include/sysemu/replay.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg.h
/qemu/iothread.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/exec.c
/qemu/monitor/hmp.c
s390-ccw/bootmap.c
s390-ccw/bootmap.h
/qemu/qapi/machine.json
/qemu/qapi/misc-target.json
/qemu/qemu-options.hx
/qemu/qom/object_interfaces.c
/qemu/scripts/checkpatch.pl
/qemu/scripts/make-config-poison.sh
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/tracetool/__init__.py
/qemu/semihosting/uaccess.c
/qemu/softmmu/globals.c
/qemu/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/softmmu/watchpoint.c
/qemu/stubs/replay.c
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/target/alpha/cpu.h
/qemu/target/alpha/translate.c
/qemu/target/arm/arm-powerctl.c
/qemu/target/arm/arm-qmp-cmds.c
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/debug_helper.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/machine.c
/qemu/target/arm/meson.build
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg-stubs.c
/qemu/target/arm/tcg/a32-uncond.decode
/qemu/target/arm/tcg/a32.decode
/qemu/target/arm/tcg/crypto_helper.c
/qemu/target/arm/tcg/helper-a64.c
/qemu/target/arm/tcg/hflags.c
/qemu/target/arm/tcg/iwmmxt_helper.c
/qemu/target/arm/tcg/m-nocp.decode
/qemu/target/arm/tcg/m_helper.c
/qemu/target/arm/tcg/meson.build
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/arm/tcg/mve.decode
/qemu/target/arm/tcg/mve_helper.c
/qemu/target/arm/tcg/neon-dp.decode
/qemu/target/arm/tcg/neon-ls.decode
/qemu/target/arm/tcg/neon-shared.decode
/qemu/target/arm/tcg/neon_helper.c
/qemu/target/arm/tcg/op_helper.c
/qemu/target/arm/tcg/pauth_helper.c
/qemu/target/arm/tcg/psci.c
/qemu/target/arm/tcg/sme-fa64.decode
/qemu/target/arm/tcg/sme.decode
/qemu/target/arm/tcg/sme_helper.c
/qemu/target/arm/tcg/sve.decode
/qemu/target/arm/tcg/sve_helper.c
/qemu/target/arm/tcg/t16.decode
/qemu/target/arm/tcg/t32.decode
/qemu/target/arm/tcg/tlb_helper.c
/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/arm/tcg/vec_helper.c
/qemu/target/arm/tcg/vec_internal.h
/qemu/target/arm/tcg/vfp-uncond.decode
/qemu/target/arm/tcg/vfp.decode
/qemu/target/avr/cpu.c
/qemu/target/avr/translate.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/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/README.rst
/qemu/target/hexagon/idef-parser/idef-parser.h
/qemu/target/hexagon/idef-parser/idef-parser.y
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/idef-parser/parser-helpers.h
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/meson.build
/qemu/target/hexagon/translate.c
/qemu/target/hppa/cpu.c
/qemu/target/hppa/cpu.h
/qemu/target/hppa/fpu_helper.c
/qemu/target/hppa/meson.build
/qemu/target/hppa/op_helper.c
/qemu/target/hppa/sys_helper.c
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu-dump.c
/qemu/target/i386/cpu-param.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hax/hax-i386.h
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/kvm/kvm_i386.h
/qemu/target/i386/kvm/meson.build
/qemu/target/i386/kvm/trace-events
/qemu/target/i386/kvm/xen-compat.h
/qemu/target/i386/kvm/xen-emu.c
/qemu/target/i386/kvm/xen-emu.h
/qemu/target/i386/machine.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_arith.c.inc
/qemu/target/loongarch/insn_trans/trans_atomic.c.inc
/qemu/target/loongarch/insn_trans/trans_bit.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_shift.c.inc
/qemu/target/loongarch/loongarch-qmp-cmds.c
/qemu/target/loongarch/meson.build
/qemu/target/loongarch/translate.c
/qemu/target/loongarch/translate.h
/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/tcg/exception.c
/qemu/target/mips/tcg/mips16e_translate.c.inc
/qemu/target/mips/tcg/nanomips_translate.c.inc
/qemu/target/mips/tcg/sysemu/special_helper.c
/qemu/target/mips/tcg/translate.c
/qemu/target/mips/tcg/vr54xx_translate.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-qom.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/dfp_helper.c
/qemu/target/ppc/internal.h
/qemu/target/ppc/kvm.c
/qemu/target/ppc/meson.build
/qemu/target/ppc/power8-pmu-regs.c.inc
/qemu/target/ppc/ppc-qmp-cmds.c
/qemu/target/ppc/translate.c
/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/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/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/gdbstub.c
/qemu/target/riscv/insn32.decode
/qemu/target/riscv/insn_trans/trans_rvb.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_rvi.c.inc
/qemu/target/riscv/insn_trans/trans_rvk.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_rvzfh.c.inc
/qemu/target/riscv/insn_trans/trans_rvzicond.c.inc
/qemu/target/riscv/insn_trans/trans_xthead.c.inc
/qemu/target/riscv/machine.c
/qemu/target/riscv/monitor.c
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/translate.c
/qemu/target/riscv/vector_helper.c
/qemu/target/rx/cpu.c
/qemu/target/rx/cpu.h
/qemu/target/rx/helper.c
/qemu/target/rx/translate.c
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/sh4/cpu.c
/qemu/target/sh4/cpu.h
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu.c
/qemu/target/tricore/cpu.h
/qemu/target/tricore/translate.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/cpu.h
/qemu/target/xtensa/translate.c
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/optimize.c
/qemu/tcg/tcg-common.c
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tests/avocado/boot_linux.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/avocado/replay_kernel.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/avocado/version.py
/qemu/tests/data/acpi/q35/DSDT.cxl
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/dockerfiles/alpine.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-all-test-cross.docker
/qemu/tests/docker/dockerfiles/debian-alpha-cross.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-hexagon-cross.docker
/qemu/tests/docker/dockerfiles/debian-hppa-cross.docker
/qemu/tests/docker/dockerfiles/debian-loongarch-cross.docker
/qemu/tests/docker/dockerfiles/debian-m68k-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-mipsel-cross.docker
/qemu/tests/docker/dockerfiles/debian-native.docker
/qemu/tests/docker/dockerfiles/debian-powerpc-test-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-riscv64-cross.docker
/qemu/tests/docker/dockerfiles/debian-riscv64-test-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/docker/dockerfiles/debian-sh4-cross.docker
/qemu/tests/docker/dockerfiles/debian-sparc64-cross.docker
/qemu/tests/docker/dockerfiles/debian-toolchain.docker
/qemu/tests/docker/dockerfiles/debian-tricore-cross.docker
/qemu/tests/docker/dockerfiles/debian-xtensa-cross.docker
/qemu/tests/docker/dockerfiles/fedora-cris-cross.docker
/qemu/tests/docker/dockerfiles/fedora-i386-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/ubuntu2004.docker
/qemu/tests/docker/dockerfiles/ubuntu2204.docker
/qemu/tests/docker/test-tsan
/qemu/tests/fp/berkeley-testfloat-3
/qemu/tests/fp/fp-test.c
/qemu/tests/fp/meson.build
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/mappings.yml
/qemu/tests/lcitool/projects/qemu.yml
/qemu/tests/lcitool/refresh
/qemu/tests/lcitool/targets/centos-stream-8.yml
/qemu/tests/lcitool/targets/opensuse-leap-153.yml
/qemu/tests/qemu-iotests/022
/qemu/tests/qtest/fuzz-lsi53c895a-test.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/qmp-cmd-test.c
/qemu/tests/qtest/readconfig-test.c
/qemu/tests/qtest/rtl8139-test.c
/qemu/tests/qtest/tco-test.c
/qemu/tests/tcg/i386/test-i386-bmi2.c
/qemu/tests/tcg/tricore/Makefile.softmmu-target
/qemu/tests/tcg/tricore/macros.h
/qemu/tests/unit/meson.build
/qemu/tests/unit/ptimer-test-stubs.c
/qemu/tests/unit/rcutorture.c
/qemu/tests/unit/test-io-channel-command.c
/qemu/tests/unit/test-rcu-list.c
/qemu/tests/unit/test-vmstate.c
/qemu/trace/meson.build
/qemu/ui/cocoa.m
/qemu/util/bufferiszero.c
/qemu/util/guest-random.c
/qemu/util/uri.c
fff1aaf407-Mar-2023 Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>

roms/openbios: update OpenBIOS images to af97fd7a built from submodule

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>


/qemu/MAINTAINERS
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/audio/alsaaudio.c
/qemu/audio/audio.c
/qemu/audio/audio_int.h
/qemu/audio/audio_template.h
/qemu/audio/mixeng.c
/qemu/audio/mixeng.h
/qemu/audio/rate_template.h
/qemu/configs/targets/aarch64-linux-user.mak
/qemu/configs/targets/aarch64-softmmu.mak
/qemu/configs/targets/aarch64_be-linux-user.mak
/qemu/docs/devel/tcg-ops.rst
/qemu/gdb-xml/aarch64-pauth.xml
/qemu/hw/arm/allwinner-h3.c
/qemu/hw/arm/boot.c
/qemu/hw/core/loader.c
/qemu/hw/i2c/allwinner-i2c.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/ns.c
/qemu/hw/nvme/nvme.h
/qemu/hw/nvme/subsys.c
/qemu/hw/nvme/trace-events
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/meson.build
/qemu/hw/riscv/virt-acpi-build.c
/qemu/hw/riscv/virt.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xen/xen_pt.h
/qemu/hw/xen/xen_pt_config_init.c
/qemu/hw/xen/xen_pt_stub.c
/qemu/include/block/nvme.h
/qemu/include/exec/gen-icount.h
/qemu/include/exec/translator.h
/qemu/include/hw/arm/allwinner-h3.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/i2c/allwinner-i2c.h
/qemu/include/hw/loader.h
/qemu/include/hw/riscv/virt.h
/qemu/include/qemu/cpuid.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg.h
/qemu/meson.build
openbios-ppc
openbios-sparc32
openbios-sparc64
/qemu/roms/openbios
/qemu/scripts/tracetool/__init__.py
/qemu/softmmu/runstate.c
/qemu/softmmu/watchpoint.c
/qemu/target/alpha/translate.c
/qemu/target/arm/cpu.h
/qemu/target/arm/gdbstub.c
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg/m_helper.c
/qemu/target/arm/tcg/pauth_helper.c
/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/translate.c
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hexagon/README
/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/README.rst
/qemu/target/hexagon/idef-parser/idef-parser.h
/qemu/target/hexagon/idef-parser/idef-parser.y
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/idef-parser/parser-helpers.h
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/translate.c
/qemu/target/hppa/translate.c
/qemu/target/i386/tcg/decode-new.c.inc
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/i386/tcg/translate.c
/qemu/target/loongarch/insn_trans/trans_arith.c.inc
/qemu/target/loongarch/insn_trans/trans_atomic.c.inc
/qemu/target/loongarch/insn_trans/trans_bit.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_shift.c.inc
/qemu/target/loongarch/translate.c
/qemu/target/loongarch/translate.h
/qemu/target/m68k/translate.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/tcg/mips16e_translate.c.inc
/qemu/target/mips/tcg/vr54xx_translate.c
/qemu/target/nios2/translate.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/power8-pmu-regs.c.inc
/qemu/target/ppc/translate.c
/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/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/csr.c
/qemu/target/riscv/insn_trans/trans_rvb.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_rvi.c.inc
/qemu/target/riscv/insn_trans/trans_rvk.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_rvzfh.c.inc
/qemu/target/riscv/insn_trans/trans_xthead.c.inc
/qemu/target/riscv/translate.c
/qemu/target/rx/translate.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/translate.c
/qemu/target/tricore/translate.c
/qemu/target/xtensa/translate.c
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/util/bufferiszero.c
7c71736703-Mar-2023 Bin Meng <bmeng@tinylab.org>

roms/opensbi: Upgrade from v1.1 to v1.2

Upgrade OpenSBI from v1.1 to v1.2 and the pre-built bios images.

The v1.2 release includes the following commits:

994c8cf lib: sbi_timer: Added a conditiona

roms/opensbi: Upgrade from v1.1 to v1.2

Upgrade OpenSBI from v1.1 to v1.2 and the pre-built bios images.

The v1.2 release includes the following commits:

994c8cf lib: sbi_timer: Added a conditional wait function which can timeout
caa5eea lib: sbi: add check for ipi device for hsm start
0374ccf lib: sbi_hart: Shorten the code to set MPV bit
4e21cca lib: utils/serial: Update Shakti UART based on latest implementation
88b790f lib: sbi: Fix sbi_snprintf
1545afd lib: sbi: Fix counter index sanity check
83db3af lib: sbi: Add the bound check for events during config match
860a376 lib: sbi: Fix possible buffer overrun in counter validation
11c0008 lib: sbi: Fix fw_event_map initialization
8e86b23 lib: utils/fdt: Factor out common uart node code
7d28d3b lib: utils/serial: Initialize platform_uart_data to zero
7198e1d lib: serial: Clean up coding style in sifive-uart.c
f272035 lib: utils/serial: Ensure baudrate is non-zero before using
b9edf49 lib: sbi: Fix printf handling of long long
422f0e0 scripts: Add Kconfiglib v14.1.0 under scripts directory
662e631 Makefile: Add initial kconfig support for each platform
de80e93 Makefile: Compile lib/utils sources separately for each platform
26bbff5 lib: utils/serial: Use kconfig for enabling/disabling drivers
2adc94b lib: utils/reset: Use kconfig for enabling/disabling drivers
3e76a60 lib: utils/sys: Use kconfig for enabling/disabling drivers
013dbb3 lib: utils/timer: Use kconfig for enabling/disabling drivers
76af9d4 lib: utils/ipi: Use kconfig for enabling/disabling drivers
0b1cf2f lib: utils/irqchip: Use kconfig for enabling/disabling drivers
b126ce4 lib: utils/i2c: Use kconfig for enabling/disabling drivers
5616aa4 lib: utils/gpio: Use kconfig for enabling/disabling drivers
68d7b85 lib: utils/fdt: Use kconfig for enabling/disabling
d514a8f platform: generic: Use kconfig for enabling/disabling overrides
bc317a3 platform: generic: Use kconfig to set platform version and default name
eccb9df platform: Remove redundant config.mk from all platforms
0723bab docs: Update documentation for kconfig support
a6a8557 Makefile: Fix typo related to object.mk
9529e36 include: Add mstatus[h].GVA encodings
1fbe777 lib: sbi_trap: Save mstatus[h].GVA in trap->gva
1c4ce74 lib: sbi: Set gva when creating sbi_trap_info
5a0ca09 lib: sbi_trap: Set hypervisor CSRs for HS-mode
a69eb6c lib: sbi_trap: Set hstatus.GVA when going to HS-mode
111afc1 lib: sbi_illegal_insn: Fix FENCE.TSO emulation infinite trap loop
adf44b5 lib: sbi: Use the official extension name for AIA M-mode CSRs
cbaa9b0 lib: utils: serial: Add Cadence UART driver
622cc5f include: Remove sideleg and sedeleg
a90cf6b lib: sbi_pmu: Remove "event_idx" member from struct sbi_pmu_fw_event
1664d0e lib: sbi_pmu: Replace sbi_pmu_ctr_read() with sbi_pmu_ctr_fw_read()
e238459 lib: sbi_pmu: Firmware counters are always 64 bits wide
c9b388d lib: sbi_pmu: Simplify FW counters to reduce memory usage
d10c1f4 lib: sbi_pmu: Add custom PMU device operations
ee69f8e lib: sbi: Print platform PMU device at boot-time
5019fd1 include: sbi: Reduce includes in sbi_pmu.h
d32b0a9 docs: pmu: fix Unmatched example typo
19664f6 docs: pmu: extend bindings example for Unmatched
37a0d83 lib: sbi_trap: Add helper to get GVA in sbi_trap_regs
46e744a lib: sbi_misaligned_ldst: Set GVA if not emulating
8ce486a lib: utils/fdt: Fix DT parsing in fdt_pmu_setup()
49372f2 lib: sbi: Fix sbi_strnlen wrong count decrement
7f09fba lib: utils/serial: add semihosting support
7105c18 docs/firmware: Update FW_JUMP documentation
3f3d401 docs: Fix some typos
e54cb32 lib: sbi_pmu: move pmu irq information into pmu itself
c316fa3 lib: sbi_hart: move hart_features struct to a public location
4f2acb5 lib: sbi_platform: expose hart_features to extension_init callback
2f63f24 platform: generic: add extensions_init handler and platform-override
b6e520b platform: generic: allwinner: add support for c9xx pmu
98aa127 include: sbi: Fix typo in comment
11d14ae lib: sbi: Fix typo in comment
60b78fe include: sbi: Fix grammar in comment
dcdaf30 lib: sbi: Add sbi_domain_root_add_memrange() API
bd7ef41 platform: andes/ae350: Remove enabling cache from an350_final_init
9899b59 platform: andes/ae350: Use kconfig to set platform version and default name
88f58a3 platform: andes/ae350: Use fdt serial driver
ef9f02e lib: utils/timer: Add Andes fdt timer support
8234fc1 lib: utils/reset: Add Andes fdt reset driver support
127a3f2 platform: andes/ae350: Use fdt irqchip driver
6f3258e platform: andes/ae350: Add fw_platform_init for platform initialization
ce7c490 lib: utils/ipi: Add Andes fdt ipi driver support
c8683c5 platform: andes/ae350: Add AE350 domain support
d682a0a docs: andes-ae350.md: Update ae350 documentation for fdt driver support
0fee0bf Makefile: Add cscope support
51acd49 docs/firmware: update the document
9d54f43 Makefile: Add rules for carray sources in lib/sbi
56bed1a lib: sbi_ecall: Generate extensions list with carray
22f38ee lib: sbi_ecall: Add Kconfig option for each extension
85cf56c lib: utils/fdt: Remove redundant code
21ba418 lib: utils/fdt: Simplified code
8e9966c docs: fix some typos
7b29264 lib: utils/serial: Fix semihosting compile error using LLVM
14f5c4c lib: sbi_ecall: Split up sbi_ecall_replace
8e63716 firmware: payloads: Optimize usage of "ALIGN"
1b0d71b platform: generic/allwinner: Remove unused header files
9a740f5 platform: generic/allwinner: Remove ghostly type cast
ba32021 Makefile: replace `echo` with `printf` for compatibility
49b0e35 Makefile: bugfix for handling platform paths
74e2029 lib: sbi: Simplified mmio match checking
fc82e84 lib: sbi: Fix is_region_valid()
f8eec91 lib: simplify fdt_parse_plmt_node()
cc54184 lib: simplify fdt_parse_plicsw_node()
e9bc7f1 lib: fix fdt_parse_plmt_node()
5daa0ef lib: fix fdt_parse_plicsw_node()
1f6866e lib: simplify fdt_translate_address()
ad2ac29 lib: fix fdt_parse_aclint_node()
cfbabb9 firmware: Minor optimization for relocate
a36d455 platform: generic/andes: Enable generic platform support for AE350
6cd4b9b docs: platform: Update AE350 and generic platform documentation
d3fcff7 docs: andes-ae350.md: fix watchdog nodename in dts example
4640d04 scripts/create-binary-archive.sh: remove andes/ae350 build directory
e977512 lib: utils: Add fdt_fixup_node() helper function
e1a0cb0 gitignore: add vim swap files
ed8b8f5 platform: generic: Make use of fdt_match_node()
8b00be6 lib: fix is_region_valid()
c2be214 lib: fix __fdt_parse_region()
7b08778 lib: fix irqchip_plic_update_hartid_table
cb568b9 lib: sbi: Synchronize PMP settings with virtual memory system
506928a scripts: use env to invoke bash
64e8b9f lib: utils: serial: Add Renesas SCIF driver
0021b43 lib: utils: serial: Add FDT driver for Renesas SCIF
6840902 lib: utils/irqchip: Add compatible string for Andestech NCEPLIC100
8b1617d platform: generic: Add Renesas RZ/Five initial support
7a3354a docs: platform: Add documentation for Renesas RZ/Five SoC
34da663 lib: utils/irqchip: plic: Fix the off-by-one error in priority save/restore helpers
8509e46 lib: utils/irqchip: plic: Ensure no out-of-bound access in priority save/restore helpers
91c8a7d lib: utils/irqchip: plic: Fix the off-by-one error in plic_context_init()
fabbc00 lib: utils/irqchip: plic: Fix the off-by-one error in context save/restore helpers
9a2eeb4 lib: utils/irqchip: plic: Ensure no out-of-bound access in context save/restore helpers
a8ee82c lib: utils/ipi: mswi: add T-Head C9xx CLINT compatible
ca7810a lib: utils/timer: mtimer: add a quirk for lacking mtime register
b848d87 lib: utils/timer: mtimer: add T-Head C9xx CLINT compatible
391ec85 docs: pmu: fix binding example
0412460 docs: pmu: update a reference to a deprecated property name
d5d12a9 docs: pmu: Update the pmu doc with removal of mcountinhbit restriction
6b5188c include: Bump-up version to 1.2

Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-id: <20230207044003.3669059-1-bmeng@tinylab.org>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Message-ID: <20230303202448.11911-3-palmer@rivosinc.com>
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>

show more ...


/qemu/.cirrus.yml
/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/cirrus/build.yml
/qemu/.gitlab-ci.d/cirrus/freebsd-12.vars
/qemu/.gitlab-ci.d/cirrus/freebsd-13.vars
/qemu/.gitlab-ci.d/cirrus/macos-12.vars
/qemu/.gitlab-ci.d/container-template.yml
/qemu/.gitlab-ci.d/containers.yml
/qemu/.gitlab-ci.d/crossbuild-template.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.d/custom-runners.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
/qemu/.gitlab-ci.d/opensbi.yml
/qemu/.gitlab-ci.d/opensbi/Dockerfile
/qemu/.gitlab-ci.d/windows.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/kvm/kvm-all.c
/qemu/accel/kvm/kvm-cpus.h
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/internal.h
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/monitor.c
/qemu/accel/tcg/perf.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tb-jmp-cache.h
/qemu/accel/tcg/tb-maint.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/accel/tcg/user-exec-stub.c
/qemu/accel/tcg/user-exec.c
/qemu/accel/xen/xen-all.c
/qemu/backends/vhost-user.c
/qemu/block/vvfat.c
/qemu/bsd-user/freebsd/os-sys.c
/qemu/bsd-user/freebsd/os-syscall.c
/qemu/bsd-user/qemu.h
/qemu/chardev/char-socket.c
/qemu/configure
/qemu/contrib/gitdm/filetypes.txt
/qemu/cpu.c
/qemu/cpus-common.c
/qemu/disas/riscv.c
/qemu/docs/about/deprecated.rst
/qemu/docs/devel/tcg-ops.rst
/qemu/docs/devel/testing.rst
/qemu/docs/interop/vhost-user.rst
/qemu/docs/meson.build
/qemu/docs/system/arm/aspeed.rst
/qemu/docs/system/i386/xen.rst
/qemu/docs/system/loongarch/virt.rst
/qemu/docs/system/target-i386.rst
/qemu/dump/dump-hmp-cmds.c
/qemu/dump/dump.c
/qemu/dump/meson.build
/qemu/dump/win_dump.c
/qemu/dump/win_dump.h
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/internals.h
/qemu/gdbstub/softmmu.c
/qemu/gdbstub/user.c
/qemu/hmp-commands.hx
/qemu/hw/Kconfig
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/ich9_tco.c
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_eeprom.c
/qemu/hw/arm/aspeed_eeprom.h
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/fby35.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/stellaris.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/ac97.h
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/sb16.c
/qemu/hw/block/fdc-isa.c
/qemu/hw/char/pl011.c
/qemu/hw/char/xilinx_uartlite.c
/qemu/hw/core/irq.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/or-irq.c
/qemu/hw/core/ptimer.c
/qemu/hw/core/qdev.c
/qemu/hw/cxl/cxl-device-utils.c
/qemu/hw/cxl/cxl-mailbox-utils.c
/qemu/hw/display/sm501.c
/qemu/hw/dma/i82374.c
/qemu/hw/gpio/max7310.c
/qemu/hw/hppa/machine.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/core.c
/qemu/hw/i2c/smbus_ich9.c
/qemu/hw/i386/Kconfig
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/ioapic.c
/qemu/hw/i386/kvm/meson.build
/qemu/hw/i386/kvm/trace-events
/qemu/hw/i386/kvm/trace.h
/qemu/hw/i386/kvm/xen-stubs.c
/qemu/hw/i386/kvm/xen_evtchn.c
/qemu/hw/i386/kvm/xen_evtchn.h
/qemu/hw/i386/kvm/xen_gnttab.c
/qemu/hw/i386/kvm/xen_gnttab.h
/qemu/hw/i386/kvm/xen_overlay.c
/qemu/hw/i386/kvm/xen_overlay.h
/qemu/hw/i386/kvm/xen_xenstore.c
/qemu/hw/i386/kvm/xen_xenstore.h
/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/i386/xen/meson.build
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/atapi.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/core.c
/qemu/hw/ide/ich.c
/qemu/hw/ide/ioport.c
/qemu/hw/ide/isa.c
/qemu/hw/ide/macio.c
/qemu/hw/ide/microdrive.c
/qemu/hw/ide/mmio.c
/qemu/hw/ide/pci.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/qdev.c
/qemu/hw/ide/sii3112.c
/qemu/hw/ide/trace-events
/qemu/hw/ide/via.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/ioapic_common.c
/qemu/hw/intc/ioapic_internal.h
/qemu/hw/intc/riscv_aclint.c
/qemu/hw/intc/riscv_aplic.c
/qemu/hw/intc/riscv_imsic.c
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/microblaze/petalogix_s3adsp1800_mmu.c
/qemu/hw/mips/jazz.c
/qemu/hw/misc/i2c-echo.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/meson.build
/qemu/hw/net/virtio-net.c
/qemu/hw/nubus/nubus-device.c
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/pci-bridge/cxl_downstream.c
/qemu/hw/pci-bridge/i82801b11.c
/qemu/hw/pci-host/pnv_phb.c
/qemu/hw/pci-host/pnv_phb4_pec.c
/qemu/hw/pci-host/raven.c
/qemu/hw/pci/msi.c
/qemu/hw/pci/msix.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie.c
/qemu/hw/pci/shpc.c
/qemu/hw/pci/trace-events
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/m48t59-isa.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/scsi/viosrp.h
/qemu/hw/sh4/r2d.c
/qemu/hw/sh4/sh7750_regs.h
/qemu/hw/smbios/smbios.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/timer/hpet.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-ohci.h
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-uhci.h
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/trace-events
/qemu/hw/usb/u2f.h
/qemu/hw/virtio/vhost-shadow-virtqueue.c
/qemu/hw/virtio/vhost-user-gpio.c
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost-user-rng.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/virtio-qmp.c
/qemu/hw/xen/Kconfig
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xenpv/xen_machine_pv.c
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/gen-icount.h
/qemu/include/exec/helper-head.h
/qemu/include/exec/memory.h
/qemu/include/exec/replay-core.h
/qemu/include/exec/translator.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/arm/allwinner-a10.h
/qemu/include/hw/arm/armsse.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/arm/bcm2835_peripherals.h
/qemu/include/hw/arm/exynos4210.h
/qemu/include/hw/arm/raspi_platform.h
/qemu/include/hw/arm/stm32f205_soc.h
/qemu/include/hw/arm/stm32f405_soc.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/char/cmsdk-apb-uart.h
/qemu/include/hw/char/pl011.h
/qemu/include/hw/char/xilinx_uartlite.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/i2c/i2c.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/ide.h
/qemu/include/hw/ide/internal.h
/qemu/include/hw/ide/isa.h
/qemu/include/hw/ide/mmio.h
/qemu/include/hw/ide/pci.h
/qemu/include/hw/intc/i8259.h
/qemu/include/hw/intc/ioapic.h
/qemu/include/hw/isa/i8259_internal.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/isa/superio.h
/qemu/include/hw/loongarch/virt.h
/qemu/include/hw/nvram/fw_cfg.h
/qemu/include/hw/or-irq.h
/qemu/include/hw/pci-host/ls7a.h
/qemu/include/hw/pci-host/pnv_phb4.h
/qemu/include/hw/pci/msi.h
/qemu/include/hw/pci/pcie.h
/qemu/include/hw/pci/pcie_regs.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/riscv/sifive_u.h
/qemu/include/hw/rtc/mc146818rtc.h
/qemu/include/hw/southbridge/ich9.h
/qemu/include/hw/timer/cmsdk-apb-timer.h
/qemu/include/hw/timer/i8254.h
/qemu/include/hw/timer/i8254_internal.h
/qemu/include/hw/virtio/vhost-user-gpio.h
/qemu/include/hw/xen/interface/arch-arm.h
/qemu/include/hw/xen/interface/arch-x86/cpuid.h
/qemu/include/hw/xen/interface/arch-x86/xen-x86_32.h
/qemu/include/hw/xen/interface/arch-x86/xen-x86_64.h
/qemu/include/hw/xen/interface/arch-x86/xen.h
/qemu/include/hw/xen/interface/event_channel.h
/qemu/include/hw/xen/interface/features.h
/qemu/include/hw/xen/interface/grant_table.h
/qemu/include/hw/xen/interface/hvm/hvm_op.h
/qemu/include/hw/xen/interface/hvm/params.h
/qemu/include/hw/xen/interface/io/blkif.h
/qemu/include/hw/xen/interface/io/console.h
/qemu/include/hw/xen/interface/io/fbif.h
/qemu/include/hw/xen/interface/io/kbdif.h
/qemu/include/hw/xen/interface/io/netif.h
/qemu/include/hw/xen/interface/io/ring.h
/qemu/include/hw/xen/interface/io/usbif.h
/qemu/include/hw/xen/interface/io/xenbus.h
/qemu/include/hw/xen/interface/io/xs_wire.h
/qemu/include/hw/xen/interface/memory.h
/qemu/include/hw/xen/interface/physdev.h
/qemu/include/hw/xen/interface/sched.h
/qemu/include/hw/xen/interface/trace.h
/qemu/include/hw/xen/interface/vcpu.h
/qemu/include/hw/xen/interface/version.h
/qemu/include/hw/xen/interface/xen-compat.h
/qemu/include/hw/xen/interface/xen.h
/qemu/include/hw/xen/xen-legacy-backend.h
/qemu/include/hw/xen/xen.h
/qemu/include/monitor/hmp.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/typedefs.h
/qemu/include/qemu/uri.h
/qemu/include/qemu/uuid.h
/qemu/include/sysemu/accel-ops.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/kvm_xen.h
/qemu/include/sysemu/replay.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg.h
/qemu/iothread.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/exec.c
/qemu/monitor/hmp.c
opensbi-riscv32-generic-fw_dynamic.bin
opensbi-riscv64-generic-fw_dynamic.bin
/qemu/qapi/machine.json
/qemu/qapi/misc-target.json
/qemu/qemu-options.hx
/qemu/qom/object_interfaces.c
/qemu/roms/opensbi
/qemu/scripts/checkpatch.pl
/qemu/scripts/make-config-poison.sh
/qemu/scripts/meson-buildoptions.sh
/qemu/semihosting/uaccess.c
/qemu/softmmu/globals.c
/qemu/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/vl.c
/qemu/softmmu/watchpoint.c
/qemu/stubs/replay.c
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/target/alpha/cpu.h
/qemu/target/alpha/translate.c
/qemu/target/arm/arm-powerctl.c
/qemu/target/arm/arm-qmp-cmds.c
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/debug_helper.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/machine.c
/qemu/target/arm/meson.build
/qemu/target/arm/ptw.c
/qemu/target/arm/tcg-stubs.c
/qemu/target/arm/tcg/a32-uncond.decode
/qemu/target/arm/tcg/a32.decode
/qemu/target/arm/tcg/crypto_helper.c
/qemu/target/arm/tcg/helper-a64.c
/qemu/target/arm/tcg/hflags.c
/qemu/target/arm/tcg/iwmmxt_helper.c
/qemu/target/arm/tcg/m-nocp.decode
/qemu/target/arm/tcg/m_helper.c
/qemu/target/arm/tcg/meson.build
/qemu/target/arm/tcg/mte_helper.c
/qemu/target/arm/tcg/mve.decode
/qemu/target/arm/tcg/mve_helper.c
/qemu/target/arm/tcg/neon-dp.decode
/qemu/target/arm/tcg/neon-ls.decode
/qemu/target/arm/tcg/neon-shared.decode
/qemu/target/arm/tcg/neon_helper.c
/qemu/target/arm/tcg/op_helper.c
/qemu/target/arm/tcg/pauth_helper.c
/qemu/target/arm/tcg/psci.c
/qemu/target/arm/tcg/sme-fa64.decode
/qemu/target/arm/tcg/sme.decode
/qemu/target/arm/tcg/sme_helper.c
/qemu/target/arm/tcg/sve.decode
/qemu/target/arm/tcg/sve_helper.c
/qemu/target/arm/tcg/t16.decode
/qemu/target/arm/tcg/t32.decode
/qemu/target/arm/tcg/tlb_helper.c
/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/arm/tcg/vec_helper.c
/qemu/target/arm/tcg/vec_internal.h
/qemu/target/arm/tcg/vfp-uncond.decode
/qemu/target/arm/tcg/vfp.decode
/qemu/target/avr/cpu.c
/qemu/target/avr/translate.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/gen_tcg.h
/qemu/target/hexagon/gen_tcg_funcs.py
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/idef-parser/README.rst
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/translate.c
/qemu/target/hppa/cpu.c
/qemu/target/hppa/cpu.h
/qemu/target/hppa/fpu_helper.c
/qemu/target/hppa/meson.build
/qemu/target/hppa/op_helper.c
/qemu/target/hppa/sys_helper.c
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu-dump.c
/qemu/target/i386/cpu-param.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hax/hax-i386.h
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/kvm/kvm_i386.h
/qemu/target/i386/kvm/meson.build
/qemu/target/i386/kvm/trace-events
/qemu/target/i386/kvm/xen-compat.h
/qemu/target/i386/kvm/xen-emu.c
/qemu/target/i386/kvm/xen-emu.h
/qemu/target/i386/machine.c
/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/loongarch-qmp-cmds.c
/qemu/target/loongarch/meson.build
/qemu/target/loongarch/translate.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/tcg/exception.c
/qemu/target/mips/tcg/nanomips_translate.c.inc
/qemu/target/mips/tcg/sysemu/special_helper.c
/qemu/target/mips/tcg/translate.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-qom.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/dfp_helper.c
/qemu/target/ppc/internal.h
/qemu/target/ppc/kvm.c
/qemu/target/ppc/meson.build
/qemu/target/ppc/ppc-qmp-cmds.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/spe-impl.c.inc
/qemu/target/ppc/translate/vmx-impl.c.inc
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/gdbstub.c
/qemu/target/riscv/helper.h
/qemu/target/riscv/insn32.decode
/qemu/target/riscv/insn_trans/trans_rvv.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_rvzicond.c.inc
/qemu/target/riscv/insn_trans/trans_xthead.c.inc
/qemu/target/riscv/machine.c
/qemu/target/riscv/monitor.c
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/translate.c
/qemu/target/riscv/vector_helper.c
/qemu/target/rx/cpu.c
/qemu/target/rx/cpu.h
/qemu/target/rx/helper.c
/qemu/target/rx/translate.c
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/sh4/cpu.c
/qemu/target/sh4/cpu.h
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu.c
/qemu/target/tricore/cpu.h
/qemu/target/tricore/translate.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/cpu.h
/qemu/target/xtensa/translate.c
/qemu/tcg/optimize.c
/qemu/tcg/tcg-common.c
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tests/avocado/boot_linux.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/avocado/replay_kernel.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/avocado/version.py
/qemu/tests/data/acpi/q35/DSDT.cxl
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/dockerfiles/alpine.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-all-test-cross.docker
/qemu/tests/docker/dockerfiles/debian-alpha-cross.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-hexagon-cross.docker
/qemu/tests/docker/dockerfiles/debian-hppa-cross.docker
/qemu/tests/docker/dockerfiles/debian-loongarch-cross.docker
/qemu/tests/docker/dockerfiles/debian-m68k-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-mipsel-cross.docker
/qemu/tests/docker/dockerfiles/debian-native.docker
/qemu/tests/docker/dockerfiles/debian-powerpc-test-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-riscv64-cross.docker
/qemu/tests/docker/dockerfiles/debian-riscv64-test-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/docker/dockerfiles/debian-sh4-cross.docker
/qemu/tests/docker/dockerfiles/debian-sparc64-cross.docker
/qemu/tests/docker/dockerfiles/debian-toolchain.docker
/qemu/tests/docker/dockerfiles/debian-tricore-cross.docker
/qemu/tests/docker/dockerfiles/debian-xtensa-cross.docker
/qemu/tests/docker/dockerfiles/fedora-cris-cross.docker
/qemu/tests/docker/dockerfiles/fedora-i386-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/ubuntu2004.docker
/qemu/tests/docker/dockerfiles/ubuntu2204.docker
/qemu/tests/docker/test-tsan
/qemu/tests/fp/berkeley-testfloat-3
/qemu/tests/fp/fp-test.c
/qemu/tests/fp/meson.build
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/mappings.yml
/qemu/tests/lcitool/projects/qemu.yml
/qemu/tests/lcitool/refresh
/qemu/tests/lcitool/targets/centos-stream-8.yml
/qemu/tests/lcitool/targets/opensuse-leap-153.yml
/qemu/tests/qemu-iotests/022
/qemu/tests/qtest/fuzz-lsi53c895a-test.c
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/qmp-cmd-test.c
/qemu/tests/qtest/rtl8139-test.c
/qemu/tests/qtest/tco-test.c
/qemu/tests/tcg/i386/test-i386-bmi2.c
/qemu/tests/tcg/tricore/Makefile.softmmu-target
/qemu/tests/tcg/tricore/macros.h
/qemu/tests/unit/meson.build
/qemu/tests/unit/ptimer-test-stubs.c
/qemu/tests/unit/rcutorture.c
/qemu/tests/unit/test-io-channel-command.c
/qemu/tests/unit/test-rcu-list.c
/qemu/tests/unit/test-vmstate.c
/qemu/trace/meson.build
/qemu/ui/cocoa.m
/qemu/util/guest-random.c
/qemu/util/uri.c
adf4c9bd06-Feb-2023 Steve Sistare <steven.sistare@oracle.com>

meson: fix dependency on qemu-keymap

When qemu-keymap is not available on the host, and enable-xkbcommon
is specified, parallel make fails with:

% make clean
...
% make -j 32
...
FAILED:

meson: fix dependency on qemu-keymap

When qemu-keymap is not available on the host, and enable-xkbcommon
is specified, parallel make fails with:

% make clean
...
% make -j 32
...
FAILED: pc-bios/keymaps/is
./qemu-keymap -f pc-bios/keymaps/is -l is
/bin/sh: ./qemu-keymap: No such file or directory
... many similar messages ...

The code always runs find_program, rather than waiting to build
qemu-keymap, because it looks for CONFIG_XKBCOMMON in config_host
rather than config_host_data. Making serially succeeds, by soft
linking files from pc-bios/keymaps, but that is not the desired
result for enable-xkbcommon.

Examining all occurrences of 'in config_host' for similar bugs shows one
instance in the docs, which is also fixed here.

Fixes: 4113f4cfee ("meson: move xkbcommon to meson")

Signed-off-by: Steve Sistare <steven.sistare@oracle.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <1675708442-74966-1-git-send-email-steven.sistare@oracle.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...


/qemu/.gitlab-ci.d/static_checks.yml
/qemu/MAINTAINERS
/qemu/accel/tcg/translator.c
/qemu/authz/listfile.c
/qemu/backends/cryptodev-vhost.c
/qemu/backends/rng.c
/qemu/backends/vhost-user.c
/qemu/block.c
/qemu/block/backup.c
/qemu/block/blkdebug.c
/qemu/block/blklogwrites.c
/qemu/block/blkreplay.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/block-copy.c
/qemu/block/bochs.c
/qemu/block/commit.c
/qemu/block/copy-before-write.c
/qemu/block/copy-on-read.c
/qemu/block/coroutines.h
/qemu/block/create.c
/qemu/block/crypto.c
/qemu/block/curl.c
/qemu/block/dirty-bitmap.c
/qemu/block/file-posix.c
/qemu/block/file-win32.c
/qemu/block/filter-compress.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/meson.build
/qemu/block/mirror.c
/qemu/block/parallels.c
/qemu/block/preallocate.c
/qemu/block/qcow.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/qed-check.c
/qemu/block/qed-table.c
/qemu/block/qed.c
/qemu/block/qed.h
/qemu/block/quorum.c
/qemu/block/raw-format.c
/qemu/block/rbd.c
/qemu/block/replication.c
/qemu/block/snapshot-access.c
/qemu/block/stream.c
/qemu/block/throttle.c
/qemu/block/vdi.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/bsd-user/qemu.h
/qemu/configs/targets/microblaze-linux-user.mak
/qemu/configs/targets/microblaze-softmmu.mak
/qemu/configs/targets/microblazeel-linux-user.mak
/qemu/configs/targets/microblazeel-softmmu.mak
/qemu/configure
/qemu/cpus-common.c
/qemu/crypto/tlssession.c
/qemu/docs/about/build-platforms.rst
/qemu/docs/about/deprecated.rst
/qemu/docs/about/removed-features.rst
/qemu/docs/conf.py
/qemu/docs/devel/fuzzing.rst
/qemu/docs/devel/kconfig.rst
/qemu/docs/devel/qapi-code-gen.rst
/qemu/docs/devel/vfio-migration.rst
/qemu/docs/meson.build
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/tools/index.rst
/qemu/dump/dump.c
/qemu/gdb-xml/microblaze-core.xml
/qemu/gdb-xml/microblaze-stack-protect.xml
/qemu/hw/acpi/acpi-stub.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmuv3-internal.h
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/virt.c
/qemu/hw/char/ibex_uart.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/nmi.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-udmabuf.c
/qemu/hw/display/virtio-gpu-virgl.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/x86.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/misc/applesmc.c
/qemu/hw/misc/xlnx-zynqmp-apu-ctrl.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/rocker/qmp-norocker.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/pci-host/mv64361.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/pegasos2.c
/qemu/hw/s390x/event-facility.c
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/sensor/dps310.c
/qemu/hw/smbios/smbios-stub.c
/qemu/hw/ssi/ibex_spi_host.c
/qemu/hw/ssi/meson.build
/qemu/hw/ssi/npcm_pspi.c
/qemu/hw/ssi/trace-events
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/trace-events
/qemu/include/block/block-common.h
/qemu/include/block/block-copy.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/dirty-bitmap.h
/qemu/include/crypto/tlssession.h
/qemu/include/disas/dis-asm.h
/qemu/include/exec/exec-all.h
/qemu/include/hw/arm/allwinner-a10.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/arm/smmu-common.h
/qemu/include/hw/arm/smmuv3.h
/qemu/include/hw/char/ibex_uart.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/intc/armv7m_nvic.h
/qemu/include/hw/s390x/pv.h
/qemu/include/hw/ssi/ibex_spi_host.h
/qemu/include/hw/ssi/npcm_pspi.h
/qemu/include/hw/tricore/tricore_testdevice.h
/qemu/include/hw/vfio/vfio-common.h
/qemu/include/hw/virtio/virtio-scsi.h
/qemu/include/migration/register.h
/qemu/include/net/net.h
/qemu/include/qapi/qmp/qerror.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/envlist.h
/qemu/include/qemu/hbitmap.h
/qemu/include/qemu/rcu.h
/qemu/include/qemu/rcu_queue.h
/qemu/include/qemu/thread.h
/qemu/include/qemu/uri.h
/qemu/include/qemu/vhost-user-server.h
/qemu/include/standard-headers/drm/drm_fourcc.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/fuse.h
/qemu/include/standard-headers/linux/input-event-codes.h
/qemu/include/standard-headers/linux/pci_regs.h
/qemu/include/standard-headers/linux/virtio_bt.h
/qemu/include/standard-headers/linux/virtio_net.h
/qemu/include/sysemu/block-backend-global-state.h
/qemu/include/sysemu/block-backend-io.h
/qemu/include/sysemu/os-win32.h
/qemu/include/sysemu/replay.h
/qemu/include/ui/console.h
/qemu/io/channel-tls.c
/qemu/linux-headers/asm-arm64/kvm.h
/qemu/linux-headers/asm-riscv/kvm.h
/qemu/linux-headers/asm-x86/kvm.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/psci.h
/qemu/linux-headers/linux/vfio.h
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/main.c
/qemu/linux-user/microblaze/cpu_loop.c
/qemu/linux-user/sparc/cpu_loop.c
/qemu/linux-user/syscall.c
/qemu/linux-user/user-internals.h
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/block.c
/qemu/migration/colo-failover.c
/qemu/migration/colo.c
/qemu/migration/migration-hmp-cmds.c
/qemu/migration/migration.c
/qemu/migration/qemu-file.c
/qemu/migration/qemu-file.h
/qemu/migration/ram.c
/qemu/migration/savevm.c
/qemu/migration/savevm.h
/qemu/migration/trace-events
/qemu/net/l2tpv3.c
/qemu/net/net.c
/qemu/net/stream.c
/qemu/net/vhost-vdpa.c
/qemu/net/vmnet-common.m
/qemu/net/vmnet_int.h
keymaps/meson.build
/qemu/python/.gitignore
/qemu/python/Makefile
/qemu/python/README.rst
/qemu/python/qemu/qmp/protocol.py
/qemu/python/qemu/qmp/qmp_client.py
/qemu/python/qemu/utils/qemu_ga_client.py
/qemu/python/setup.cfg
/qemu/python/tests/minreqs.txt
/qemu/qapi/block-core.json
/qemu/qapi/net.json
/qemu/qemu-img.c
/qemu/qemu-keymap.c
/qemu/qemu-options.hx
/qemu/qga/commands.c
/qemu/qga/main.c
/qemu/replay/replay.c
/qemu/replay/stubs-system.c
/qemu/scripts/block-coroutine-wrapper.py
/qemu/scripts/ci/org.centos/stream/8/x86_64/configure
/qemu/scripts/ci/org.centos/stream/8/x86_64/test-avocado
/qemu/scripts/coverity-scan/COMPONENTS.md
/qemu/scripts/meson-buildoptions.py
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/qapi/.flake8
/qemu/scripts/qapi/expr.py
/qemu/scripts/qapi/parser.py
/qemu/scripts/qapi/pylintrc
/qemu/scripts/qapi/schema.py
/qemu/softmmu/dma-helpers.c
/qemu/softmmu/qtest.c
/qemu/softmmu/rtc.c
/qemu/softmmu/vl.c
/qemu/stubs/meson.build
/qemu/target/arm/cpregs.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/m_helper.c
/qemu/target/arm/machine.c
/qemu/target/i386/gdbstub.c
/qemu/target/i386/monitor.c
/qemu/target/i386/sev-sysemu-stub.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/microblaze/cpu.c
/qemu/target/microblaze/cpu.h
/qemu/target/microblaze/gdbstub.c
/qemu/target/s390x/arch_dump.c
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/s390x/tcg/translate_vx.c.inc
/qemu/tests/avocado/avocado_qemu/__init__.py
/qemu/tests/avocado/boot_linux.py
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/machine_aarch64_virt.py
/qemu/tests/avocado/reverse_debugging.py
/qemu/tests/docker/dockerfiles/python.docker
/qemu/tests/qemu-iotests/186
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test
/qemu/tests/qtest/arm-cpu-features.c
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/device-plug-test.c
/qemu/tests/qtest/drive_del-test.c
/qemu/tests/qtest/fuzz-lsi53c895a-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/fuzz/fuzz.h
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/i440fx_fuzz.c
/qemu/tests/qtest/fuzz/meson.build
/qemu/tests/qtest/fuzz/virtio_blk_fuzz.c
/qemu/tests/qtest/fuzz/virtio_net_fuzz.c
/qemu/tests/qtest/fuzz/virtio_scsi_fuzz.c
/qemu/tests/qtest/hd-geo-test.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/netdev-socket.c
/qemu/tests/qtest/pxe-test.c
/qemu/tests/qtest/rtl8139-test.c
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/i386/test-i386-adcox.c
/qemu/tests/tcg/i386/test-i386-bmi2.c
/qemu/tests/tcg/s390x/Makefile.softmmu-target
/qemu/tests/tcg/s390x/bal.S
/qemu/tests/tcg/s390x/sam.S
/qemu/tests/tcg/x86_64/Makefile.target
/qemu/tests/tcg/x86_64/adox.c
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-block-iothread.c
/qemu/tools/meson.build
/qemu/ui/console.c
/qemu/ui/dbus-clipboard.c
/qemu/ui/dbus-console.c
/qemu/ui/dbus-listener.c
/qemu/ui/dbus.c
/qemu/ui/egl-headless.c
/qemu/ui/gtk.c
/qemu/ui/spice-app.c
/qemu/ui/spice-core.c
/qemu/ui/spice-display.c
/qemu/ui/udmabuf.c
/qemu/ui/vdagent.c
/qemu/util/cacheflush.c
/qemu/util/hbitmap.c
/qemu/util/qemu-config.c
/qemu/util/qemu-thread-posix.c
/qemu/util/vhost-user-server.c
b482fb4309-Feb-2023 Thomas Huth <thuth@redhat.com>

hw/misc/sga: Remove the deprecated "sga" device

It's been deprecated since QEMU v6.2, so it should be OK to
finally remove this now.

Message-Id: <20230209161540.1054669-1-thuth@redhat.com>
Reviewed

hw/misc/sga: Remove the deprecated "sga" device

It's been deprecated since QEMU v6.2, so it should be OK to
finally remove this now.

Message-Id: <20230209161540.1054669-1-thuth@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...


/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/cirrus.yml
/qemu/.gitlab-ci.d/cirrus/freebsd-12.vars
/qemu/.gitlab-ci.d/cirrus/freebsd-13.vars
/qemu/.gitlab-ci.d/cirrus/macos-12.vars
/qemu/.gitlab-ci.d/container-cross.yml
/qemu/.gitlab-ci.d/crossbuild-template.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.d/custom-runners.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-20.04-s390x.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
/qemu/.gitlab-ci.d/windows.yml
/qemu/.gitlab/issue_templates/bug.md
/qemu/.gitmodules
/qemu/.mailmap
/qemu/.travis.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/VERSION
/qemu/accel/accel-blocker.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/meson.build
/qemu/accel/tcg/atomic_common.c.inc
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/debuginfo.c
/qemu/accel/tcg/debuginfo.h
/qemu/accel/tcg/internal.h
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/perf.c
/qemu/accel/tcg/perf.h
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/plugin-helpers.h
/qemu/accel/tcg/tb-jmp-cache.h
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/tcg-runtime.h
/qemu/accel/tcg/trace-events
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/audio/alsaaudio.c
/qemu/audio/audio-hmp-cmds.c
/qemu/audio/audio.c
/qemu/audio/audio_legacy.c
/qemu/audio/audio_template.h
/qemu/audio/meson.build
/qemu/audio/ossaudio.c
/qemu/audio/paaudio.c
/qemu/audio/sndioaudio.c
/qemu/audio/wavaudio.c
/qemu/backends/cryptodev-vhost.c
/qemu/backends/hostmem-epc.c
/qemu/backends/hostmem.c
/qemu/backends/tpm/tpm_emulator.c
/qemu/backends/tpm/tpm_ioctl.h
/qemu/backends/tpm/tpm_passthrough.c
/qemu/backends/vhost-user.c
/qemu/block.c
/qemu/block/amend.c
/qemu/block/backup.c
/qemu/block/blkdebug.c
/qemu/block/blkio.c
/qemu/block/blklogwrites.c
/qemu/block/blkreplay.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/block-copy.c
/qemu/block/block-gen.h
/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/coroutines.h
/qemu/block/crypto.c
/qemu/block/curl.c
/qemu/block/dirty-bitmap.c
/qemu/block/dmg.c
/qemu/block/export/export.c
/qemu/block/export/fuse.c
/qemu/block/export/vduse-blk.c
/qemu/block/file-posix.c
/qemu/block/file-win32.c
/qemu/block/filter-compress.c
/qemu/block/gluster.c
/qemu/block/graph-lock.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/meson.build
/qemu/block/mirror.c
/qemu/block/monitor/bitmap-qmp-cmds.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/null.c
/qemu/block/nvme.c
/qemu/block/parallels-ext.c
/qemu/block/parallels.c
/qemu/block/preallocate.c
/qemu/block/progress_meter.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-threads.c
/qemu/block/qcow2.c
/qemu/block/qed-check.c
/qemu/block/qed-table.c
/qemu/block/qed.c
/qemu/block/quorum.c
/qemu/block/raw-format.c
/qemu/block/rbd.c
/qemu/block/replication.c
/qemu/block/ssh.c
/qemu/block/stream.c
/qemu/block/throttle.c
/qemu/block/vdi.c
/qemu/block/vhdx-log.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/block/vvfat.c
/qemu/block/win32-aio.c
/qemu/block/write-threshold.c
/qemu/blockdev-nbd.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bsd-user/arm/signal.c
/qemu/bsd-user/arm/target_arch_cpu.c
/qemu/bsd-user/bsd-proc.h
/qemu/bsd-user/elfload.c
/qemu/bsd-user/freebsd/os-sys.c
/qemu/bsd-user/i386/signal.c
/qemu/bsd-user/i386/target_arch_cpu.c
/qemu/bsd-user/main.c
/qemu/bsd-user/qemu.h
/qemu/bsd-user/strace.c
/qemu/bsd-user/x86_64/signal.c
/qemu/bsd-user/x86_64/target_arch_cpu.c
/qemu/chardev/char-fd.c
/qemu/chardev/char-file.c
/qemu/chardev/char-hmp-cmds.c
/qemu/chardev/char-parallel.c
/qemu/chardev/char-pipe.c
/qemu/chardev/char-pty.c
/qemu/chardev/char-socket.c
/qemu/chardev/char-udp.c
/qemu/chardev/char.c
/qemu/chardev/meson.build
/qemu/chardev/spice.c
/qemu/common-user/host/ppc/safe-syscall.inc.S
/qemu/configs/devices/arm-softmmu/default.mak
/qemu/configs/devices/mips-softmmu/common.mak
/qemu/configs/targets/nios2-softmmu.mak
/qemu/configure
/qemu/contrib/plugins/cache.c
/qemu/contrib/vhost-user-blk/vhost-user-blk.c
/qemu/cpu.c
/qemu/crypto/block-luks-priv.h
/qemu/crypto/block-luks.c
/qemu/disas.c
/qemu/disas/meson.build
/qemu/disas/riscv.c
/qemu/docs/about/deprecated.rst
/qemu/docs/about/emulation.rst
/qemu/docs/about/index.rst
/qemu/docs/about/removed-features.rst
/qemu/docs/conf.py
/qemu/docs/devel/acpi-bits.rst
/qemu/docs/devel/atomics.rst
/qemu/docs/devel/block-coroutine-wrapper.rst
/qemu/docs/devel/index-tcg.rst
/qemu/docs/devel/migration.rst
/qemu/docs/devel/qapi-code-gen.rst
/qemu/docs/devel/style.rst
/qemu/docs/devel/tcg-ops.rst
/qemu/docs/devel/tcg-plugins.rst
/qemu/docs/devel/tcg.rst
/qemu/docs/devel/vfio-migration.rst
/qemu/docs/devel/writing-monitor-commands.rst
/qemu/docs/interop/index.rst
/qemu/docs/interop/live-block-operations.rst
/qemu/docs/interop/qemu-qmp-ref.rst
/qemu/docs/interop/vnc-ledstate-pseudo-encoding.rst
/qemu/docs/pcie.txt
/qemu/docs/qdev-device-use.txt
/qemu/docs/system/arm/cubieboard.rst
/qemu/docs/system/arm/emulation.rst
/qemu/docs/system/arm/orangepi.rst
/qemu/docs/system/arm/stm32.rst
/qemu/docs/system/arm/virt.rst
/qemu/docs/system/index.rst
/qemu/docs/system/introduction.rst
/qemu/docs/system/multi-process.rst
/qemu/docs/system/ppc/ppce500.rst
/qemu/docs/system/s390x/pcidevices.rst
/qemu/docs/system/target-s390x.rst
/qemu/docs/tools/index.rst
/qemu/docs/user/index.rst
/qemu/dump/dump.c
/qemu/fsdev/p9array.h
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p-local.c
/qemu/hw/9pfs/9p-synth.c
/qemu/hw/9pfs/9p-util.h
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/codir.c
/qemu/hw/9pfs/cofile.c
/qemu/hw/9pfs/cofs.c
/qemu/hw/9pfs/coth.h
/qemu/hw/9pfs/coxattr.c
/qemu/hw/acpi/Kconfig
/qemu/hw/acpi/acpi-qmp-cmds.c
/qemu/hw/acpi/acpi-x86-stub.c
/qemu/hw/acpi/acpi_interface.c
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/core.c
/qemu/hw/acpi/cpu.c
/qemu/hw/acpi/cpu_hotplug.c
/qemu/hw/acpi/erst.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/ich9_tco.c
/qemu/hw/acpi/memory_hotplug.c
/qemu/hw/acpi/meson.build
/qemu/hw/acpi/pci-bridge-stub.c
/qemu/hw/acpi/pci-bridge.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/trace-events
/qemu/hw/alpha/alpha_sys.h
/qemu/hw/alpha/dp264.c
/qemu/hw/alpha/pci.c
/qemu/hw/alpha/typhoon.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/allwinner-h3.c
/qemu/hw/arm/armsse.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast10x0.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_eeprom.c
/qemu/hw/arm/aspeed_eeprom.h
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/bcm2836.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/fsl-imx6ul.c
/qemu/hw/arm/fsl-imx7.c
/qemu/hw/arm/gumstix.c
/qemu/hw/arm/mainstone.c
/qemu/hw/arm/meson.build
/qemu/hw/arm/msf2-som.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/olimex-stm32-h405.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/pxa2xx.c
/qemu/hw/arm/realview.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/stm32f405_soc.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/tosa.c
/qemu/hw/arm/versatilepb.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/intel-hda.c
/qemu/hw/audio/via-ac97.c
/qemu/hw/block/block.c
/qemu/hw/block/dataplane/virtio-blk.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/m25p80_sfdp.c
/qemu/hw/block/m25p80_sfdp.h
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/char/digic-uart.c
/qemu/hw/char/etraxfs_ser.c
/qemu/hw/char/omap_uart.c
/qemu/hw/char/pl011.c
/qemu/hw/char/riscv_htif.c
/qemu/hw/char/serial-pci-multi.c
/qemu/hw/char/serial-pci.c
/qemu/hw/char/sifive_uart.c
/qemu/hw/core/cpu-common.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-hmp-cmds.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine-smp.c
/qemu/hw/core/machine.c
/qemu/hw/core/numa.c
/qemu/hw/core/qdev-clock.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/core/qdev.c
/qemu/hw/core/sysbus.c
/qemu/hw/core/trace-events
/qemu/hw/cpu/meson.build
/qemu/hw/cxl/cxl-cdat.c
/qemu/hw/cxl/cxl-host.c
/qemu/hw/display/Kconfig
/qemu/hw/display/ati_int.h
/qemu/hw/display/bochs-display.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/display/g364fb.c
/qemu/hw/display/meson.build
/qemu/hw/display/next-fb.c
/qemu/hw/display/omap_dss.c
/qemu/hw/display/omap_lcdc.c
/qemu/hw/display/qxl-logger.c
/qemu/hw/display/qxl-render.c
/qemu/hw/display/qxl.c
/qemu/hw/display/qxl.h
/qemu/hw/display/sm501.c
/qemu/hw/display/trace-events
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vga.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-udmabuf.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/display/virtio-vga.h
/qemu/hw/display/vmware_vga.c
/qemu/hw/dma/etraxfs_dma.c
/qemu/hw/dma/omap_dma.c
/qemu/hw/dma/pl330.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/dma/xlnx_csu_dma.c
/qemu/hw/gpio/omap_gpio.c
/qemu/hw/hppa/machine.c
/qemu/hw/hyperv/syndbg.c
/qemu/hw/hyperv/vmbus.c
/qemu/hw/i2c/Kconfig
/qemu/hw/i2c/allwinner-i2c.c
/qemu/hw/i2c/arm_sbcon_i2c.c
/qemu/hw/i2c/bitbang_i2c.c
/qemu/hw/i2c/meson.build
/qemu/hw/i2c/mpc_i2c.c
/qemu/hw/i2c/pmbus_device.c
/qemu/hw/i2c/smbus_ich9.c
/qemu/hw/i2c/trace-events
/qemu/hw/i386/Kconfig
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/acpi-microvm.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/i8259.c
/qemu/hw/i386/kvm/ioapic.c
/qemu/hw/i386/microvm.c
/qemu/hw/i386/multiboot.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/sgx.c
/qemu/hw/i386/x86.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/i386/xen/xen-mapcache.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/i386/xen/xen_pvdevice.c
/qemu/hw/ide/ahci_internal.h
/qemu/hw/ide/core.c
/qemu/hw/ide/qdev.c
/qemu/hw/input/adb.c
/qemu/hw/input/ps2.c
/qemu/hw/input/tsc2005.c
/qemu/hw/input/tsc210x.c
/qemu/hw/intc/Kconfig
/qemu/hw/intc/apic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/arm_gic_common.c
/qemu/hw/intc/arm_gic_kvm.c
/qemu/hw/intc/arm_gicv3_common.c
/qemu/hw/intc/arm_gicv3_cpuif.c
/qemu/hw/intc/arm_gicv3_dist.c
/qemu/hw/intc/arm_gicv3_its.c
/qemu/hw/intc/arm_gicv3_its_common.c
/qemu/hw/intc/arm_gicv3_its_kvm.c
/qemu/hw/intc/arm_gicv3_kvm.c
/qemu/hw/intc/arm_gicv3_redist.c
/qemu/hw/intc/exynos4210_combiner.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/kvm_irqcount.c
/qemu/hw/intc/loongarch_pch_msi.c
/qemu/hw/intc/loongarch_pch_pic.c
/qemu/hw/intc/meson.build
/qemu/hw/intc/omap_intc.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/pnv_xive2.c
/qemu/hw/intc/sifive_plic.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xics.c
/qemu/hw/intc/xilinx_intc.c
/qemu/hw/ipack/tpci200.c
/qemu/hw/ipmi/pci_ipmi_bt.c
/qemu/hw/ipmi/pci_ipmi_kcs.c
/qemu/hw/isa/Kconfig
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix3.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/trace-events
/qemu/hw/loongarch/Kconfig
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/mips/Kconfig
/qemu/hw/mips/bootloader.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/malta.c
/qemu/hw/mips/meson.build
/qemu/hw/mips/mips_int.c
/qemu/hw/mips/trace-events
/qemu/hw/misc/Kconfig
/qemu/hw/misc/allwinner-a10-ccm.c
/qemu/hw/misc/allwinner-a10-dramc.c
/qemu/hw/misc/aspeed_hace.c
/qemu/hw/misc/aspeed_sdmc.c
/qemu/hw/misc/auxbus.c
/qemu/hw/misc/axp209.c
/qemu/hw/misc/imx6_src.c
/qemu/hw/misc/imx6ul_ccm.c
/qemu/hw/misc/imx7_ccm.c
/qemu/hw/misc/iotkit-sysctl.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/macio/cuda.c
/qemu/hw/misc/macio/mac_dbdma.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/mchp_pfsoc_ioscb.c
/qemu/hw/misc/mchp_pfsoc_sysreg.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/mst_fpga.c
/qemu/hw/misc/omap_gpmc.c
/qemu/hw/misc/omap_l4.c
/qemu/hw/misc/omap_sdrc.c
/qemu/hw/misc/omap_tap.c
/qemu/hw/misc/pci-testdev.c
/qemu/hw/misc/pvpanic-pci.c
/qemu/hw/misc/sbsa_ec.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/misc/trace-events
/qemu/hw/net/Kconfig
/qemu/hw/net/allwinner-sun8i-emac.c
/qemu/hw/net/allwinner_emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/can/can_kvaser_pci.c
/qemu/hw/net/can/can_mioe3680_pci.c
/qemu/hw/net/can/can_pcm3680_pci.c
/qemu/hw/net/can/ctucan_pci.c
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000x_common.c
/qemu/hw/net/eepro100.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/meson.build
/qemu/hw/net/ne2000-pci.c
/qemu/hw/net/net_tx_pkt.c
/qemu/hw/net/pcnet-pci.c
/qemu/hw/net/pcnet.c
/qemu/hw/net/rocker/rocker-hmp-cmds.c
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rocker/rocker_desc.c
/qemu/hw/net/rocker/rocker_of_dpa.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/sungem.c
/qemu/hw/net/sunhme.c
/qemu/hw/net/tulip.c
/qemu/hw/net/vhost_net-stub.c
/qemu/hw/net/vhost_net.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3_defs.h
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/net/xilinx_ethlite.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/nvme.h
/qemu/hw/nvme/trace-events
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/nvram/mac_nvram.c
/qemu/hw/pci-bridge/cxl_downstream.c
/qemu/hw/pci-bridge/cxl_root_port.c
/qemu/hw/pci-bridge/cxl_upstream.c
/qemu/hw/pci-bridge/gen_pcie_root_port.c
/qemu/hw/pci-bridge/i82801b11.c
/qemu/hw/pci-bridge/meson.build
/qemu/hw/pci-bridge/pci_bridge_dev.c
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/pci-bridge/pcie_pci_bridge.c
/qemu/hw/pci-bridge/pcie_root_port.c
/qemu/hw/pci-bridge/simba.c
/qemu/hw/pci-bridge/xio3130_downstream.c
/qemu/hw/pci-bridge/xio3130_upstream.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/dino.c
/qemu/hw/pci-host/grackle.c
/qemu/hw/pci-host/gt64120.c
/qemu/hw/pci-host/i440fx.c
/qemu/hw/pci-host/meson.build
/qemu/hw/pci-host/mv64361.c
/qemu/hw/pci-host/pnv_phb.c
/qemu/hw/pci-host/pnv_phb.h
/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-host/pnv_phb4_pec.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci-host/raven.c
/qemu/hw/pci-host/sh_pci.c
/qemu/hw/pci-host/trace-events
/qemu/hw/pci-host/uninorth.c
/qemu/hw/pci-host/versatile.c
/qemu/hw/pci-host/xilinx-pcie.c
/qemu/hw/pci/meson.build
/qemu/hw/pci/msi.c
/qemu/hw/pci/pci-hmp-cmds.c
/qemu/hw/pci/pci-internal.h
/qemu/hw/pci/pci-qmp-cmds.c
/qemu/hw/pci/pci-stub.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pci_bridge.c
/qemu/hw/pci/pci_host.c
/qemu/hw/pci/pcie.c
/qemu/hw/pci/pcie_aer.c
/qemu/hw/pci/pcie_host.c
/qemu/hw/pci/pcie_port.c
/qemu/hw/pci/pcie_sriov.c
/qemu/hw/pci/shpc.c
/qemu/hw/pci/slotid_cap.c
/qemu/hw/ppc/Kconfig
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/e500.h
/qemu/hw/ppc/e500plat.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/pegasos2.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_homer.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc405_uc.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/ppc440_pcix.c
/qemu/hw/ppc/ppc4xx_pci.c
/qemu/hw/ppc/ppc4xx_sdram.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_pci_vfio.c
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/rdma/rdma_utils.c
/qemu/hw/rdma/rdma_utils.h
/qemu/hw/rdma/vmw/pvrdma.h
/qemu/hw/rdma/vmw/pvrdma_cmd.c
/qemu/hw/rdma/vmw/pvrdma_dev_ring.c
/qemu/hw/rdma/vmw/pvrdma_qp_ops.c
/qemu/hw/remote/machine.c
/qemu/hw/remote/proxy-memory-listener.c
/qemu/hw/remote/remote-obj.c
/qemu/hw/remote/vfio-user-obj.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/numa.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/exynos4210_rtc.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/rtc/meson.build
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/virtio-ccw-serial.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/mptsas.h
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/vhost-scsi-common.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/sd/omap_mmc.c
/qemu/hw/sd/sdhci-internal.h
/qemu/hw/sd/sdhci.c
/qemu/hw/sensor/adm1272.c
/qemu/hw/sh4/sh7750.c
/qemu/hw/smbios/smbios.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/ssi/omap_spi.c
/qemu/hw/ssi/sifive_spi.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/timer/digic-timer.c
/qemu/hw/timer/etraxfs_timer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/timer/imx_gpt.c
/qemu/hw/timer/omap_gptimer.c
/qemu/hw/timer/omap_synctimer.c
/qemu/hw/timer/xilinx_timer.c
/qemu/hw/tpm/meson.build
/qemu/hw/usb/ccid-card-emulated.c
/qemu/hw/usb/dev-storage-bot.c
/qemu/hw/usb/dev-storage-classic.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/hcd-ehci.h
/qemu/hw/usb/hcd-ohci-pci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-uhci.h
/qemu/hw/usb/hcd-xhci-pci.c
/qemu/hw/usb/hcd-xhci-pci.h
/qemu/hw/usb/hcd-xhci-sysbus.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/meson.build
/qemu/hw/usb/redirect.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/trace-events
/qemu/hw/virtio/Kconfig
/qemu/hw/virtio/meson.build
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vdpa-dev-pci.c
/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-fs.c
/qemu/hw/virtio/vhost-user-gpio.c
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost-user-rng.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost-vsock-common.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-config-io.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-hmp-cmds.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem-pci.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio-qmp.c
/qemu/hw/virtio/virtio-qmp.h
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/trace-events
/qemu/hw/watchdog/watchdog.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/hw/watchdog/wdt_i6300esb.c
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xen/xen_pt.h
/qemu/hw/xen/xen_pvdev.c
/qemu/include/block/aio.h
/qemu/include/block/aio_task.h
/qemu/include/block/block-common.h
/qemu/include/block/block-copy.h
/qemu/include/block/block-global-state.h
/qemu/include/block/block-hmp-cmds.h
/qemu/include/block/block-io.h
/qemu/include/block/block.h
/qemu/include/block/block_backup.h
/qemu/include/block/block_int-common.h
/qemu/include/block/block_int-global-state.h
/qemu/include/block/block_int-io.h
/qemu/include/block/block_int.h
/qemu/include/block/blockjob.h
/qemu/include/block/blockjob_int.h
/qemu/include/block/dirty-bitmap.h
/qemu/include/block/graph-lock.h
/qemu/include/block/nbd.h
/qemu/include/block/qapi.h
/qemu/include/block/raw-aio.h
/qemu/include/block/thread-pool.h
/qemu/include/block/throttle-groups.h
/qemu/include/block/write-threshold.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/helper-head.h
/qemu/include/exec/helper-proto.h
/qemu/include/exec/hwaddr.h
/qemu/include/exec/memory-internal.h
/qemu/include/exec/memory.h
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/poison.h
/qemu/include/exec/translate-all.h
/qemu/include/hw/acpi/acpi_aml_interface.h
/qemu/include/hw/acpi/acpi_dev_interface.h
/qemu/include/hw/acpi/erst.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/acpi/ich9_tco.h
/qemu/include/hw/acpi/pci.h
/qemu/include/hw/acpi/piix4.h
/qemu/include/hw/adc/npcm7xx_adc.h
/qemu/include/hw/arm/allwinner-a10.h
/qemu/include/hw/arm/allwinner-h3.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/arm/fsl-imx6ul.h
/qemu/include/hw/arm/fsl-imx7.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/arm/omap.h
/qemu/include/hw/arm/pxa.h
/qemu/include/hw/arm/smmu-common.h
/qemu/include/hw/arm/smmuv3.h
/qemu/include/hw/arm/stm32f405_soc.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/block/swim.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/cmsdk-apb-uart.h
/qemu/include/hw/char/goldfish_tty.h
/qemu/include/hw/char/pl011.h
/qemu/include/hw/char/riscv_htif.h
/qemu/include/hw/char/xilinx_uartlite.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/cris/etraxfs.h
/qemu/include/hw/cxl/cxl.h
/qemu/include/hw/cxl/cxl_cdat.h
/qemu/include/hw/cxl/cxl_component.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/cxl/cxl_host.h
/qemu/include/hw/cxl/cxl_pci.h
/qemu/include/hw/display/macfb.h
/qemu/include/hw/dma/sifive_pdma.h
/qemu/include/hw/i2c/allwinner-i2c.h
/qemu/include/hw/i2c/arm_sbcon_i2c.h
/qemu/include/hw/i2c/bitbang_i2c.h
/qemu/include/hw/i2c/npcm7xx_smbus.h
/qemu/include/hw/i386/apic.h
/qemu/include/hw/i386/apic_internal.h
/qemu/include/hw/i386/ich9.h
/qemu/include/hw/i386/intel_iommu.h
/qemu/include/hw/i386/ioapic_internal.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/sgx-epc.h
/qemu/include/hw/i386/x86-iommu.h
/qemu/include/hw/ide/internal.h
/qemu/include/hw/ide/pci.h
/qemu/include/hw/input/pl050.h
/qemu/include/hw/input/ps2.h
/qemu/include/hw/input/tsc2xxx.h
/qemu/include/hw/intc/goldfish_pic.h
/qemu/include/hw/intc/i8259.h
/qemu/include/hw/intc/kvm_irqcount.h
/qemu/include/hw/intc/loongarch_pch_msi.h
/qemu/include/hw/intc/loongarch_pch_pic.h
/qemu/include/hw/intc/nios2_vic.h
/qemu/include/hw/intc/sifive_plic.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/loader.h
/qemu/include/hw/loongarch/virt.h
/qemu/include/hw/mips/bootloader.h
/qemu/include/hw/misc/allwinner-a10-ccm.h
/qemu/include/hw/misc/allwinner-a10-dramc.h
/qemu/include/hw/misc/aspeed_lpc.h
/qemu/include/hw/misc/mac_via.h
/qemu/include/hw/misc/macio/cuda.h
/qemu/include/hw/misc/macio/macio.h
/qemu/include/hw/misc/macio/pmu.h
/qemu/include/hw/misc/mchp_pfsoc_dmc.h
/qemu/include/hw/misc/mchp_pfsoc_ioscb.h
/qemu/include/hw/misc/mchp_pfsoc_sysreg.h
/qemu/include/hw/misc/mos6522.h
/qemu/include/hw/misc/npcm7xx_clk.h
/qemu/include/hw/misc/npcm7xx_gcr.h
/qemu/include/hw/misc/npcm7xx_mft.h
/qemu/include/hw/misc/npcm7xx_pwm.h
/qemu/include/hw/misc/npcm7xx_rng.h
/qemu/include/hw/misc/pvpanic.h
/qemu/include/hw/misc/sifive_e_prci.h
/qemu/include/hw/misc/sifive_u_otp.h
/qemu/include/hw/misc/sifive_u_prci.h
/qemu/include/hw/misc/virt_ctrl.h
/qemu/include/hw/misc/xlnx-versal-pmc-iou-slcr.h
/qemu/include/hw/misc/xlnx-zynqmp-apu-ctrl.h
/qemu/include/hw/net/lasi_82596.h
/qemu/include/hw/net/npcm7xx_emc.h
/qemu/include/hw/net/xlnx-zynqmp-can.h
/qemu/include/hw/nvram/eeprom_at24c.h
/qemu/include/hw/nvram/fw_cfg.h
/qemu/include/hw/nvram/mac_nvram.h
/qemu/include/hw/pci-host/bonito.h
/qemu/include/hw/pci-host/designware.h
/qemu/include/hw/pci-host/gpex.h
/qemu/include/hw/pci-host/i440fx.h
/qemu/include/hw/pci-host/ls7a.h
/qemu/include/hw/pci-host/pnv_phb3.h
/qemu/include/hw/pci-host/pnv_phb4.h
/qemu/include/hw/pci-host/q35.h
/qemu/include/hw/pci-host/sabre.h
/qemu/include/hw/pci-host/xilinx-pcie.h
/qemu/include/hw/pci/msi.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pci_bridge.h
/qemu/include/hw/pci/pci_device.h
/qemu/include/hw/pci/pci_ids.h
/qemu/include/hw/pci/pcie.h
/qemu/include/hw/pci/pcie_doe.h
/qemu/include/hw/pci/pcie_port.h
/qemu/include/hw/pci/pcie_sriov.h
/qemu/include/hw/pci/shpc.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/pnv_chip.h
/qemu/include/hw/ppc/pnv_core.h
/qemu/include/hw/ppc/pnv_homer.h
/qemu/include/hw/ppc/pnv_lpc.h
/qemu/include/hw/ppc/pnv_occ.h
/qemu/include/hw/ppc/pnv_pnor.h
/qemu/include/hw/ppc/pnv_psi.h
/qemu/include/hw/ppc/pnv_sbe.h
/qemu/include/hw/ppc/pnv_xive.h
/qemu/include/hw/ppc/pnv_xscom.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/vof.h
/qemu/include/hw/ppc/xics.h
/qemu/include/hw/ppc/xive2.h
/qemu/include/hw/ppc/xive2_regs.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/remote/iohub.h
/qemu/include/hw/remote/proxy.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/riscv/boot_opensbi.h
/qemu/include/hw/riscv/microchip_pfsoc.h
/qemu/include/hw/riscv/numa.h
/qemu/include/hw/riscv/opentitan.h
/qemu/include/hw/riscv/shakti_c.h
/qemu/include/hw/riscv/sifive_e.h
/qemu/include/hw/riscv/sifive_u.h
/qemu/include/hw/riscv/spike.h
/qemu/include/hw/riscv/virt.h
/qemu/include/hw/rtc/mc146818rtc.h
/qemu/include/hw/s390x/s390-pci-bus.h
/qemu/include/hw/sd/npcm7xx_sdhci.h
/qemu/include/hw/sd/sdhci.h
/qemu/include/hw/southbridge/piix.h
/qemu/include/hw/ssi/sifive_spi.h
/qemu/include/hw/timer/imx_epit.h
/qemu/include/hw/timer/imx_gpt.h
/qemu/include/hw/timer/sse-timer.h
/qemu/include/hw/tricore/triboard.h
/qemu/include/hw/usb/hcd-dwc3.h
/qemu/include/hw/usb/hcd-musb.h
/qemu/include/hw/usb/xlnx-usb-subsystem.h
/qemu/include/hw/usb/xlnx-versal-usb2-ctrl-regs.h
/qemu/include/hw/virtio/vdpa-dev.h
/qemu/include/hw/virtio/vhost-backend.h
/qemu/include/hw/virtio/vhost-user-gpio.h
/qemu/include/hw/virtio/vhost-user.h
/qemu/include/hw/virtio/vhost-vdpa.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/hw/virtio/virtio-blk.h
/qemu/include/hw/virtio/virtio-mem.h
/qemu/include/hw/virtio/virtio-mmio.h
/qemu/include/hw/virtio/virtio-pci.h
/qemu/include/hw/virtio/virtio-scsi.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/hw/watchdog/wdt_aspeed.h
/qemu/include/hw/xen/xen-bus-helper.h
/qemu/include/hw/xen/xen-bus.h
/qemu/include/hw/xen/xen_common.h
/qemu/include/io/channel.h
/qemu/include/migration/misc.h
/qemu/include/migration/register.h
/qemu/include/migration/vmstate.h
/qemu/include/monitor/hmp-target.h
/qemu/include/monitor/hmp.h
/qemu/include/monitor/monitor.h
/qemu/include/monitor/qmp-helpers.h
/qemu/include/net/net.h
/qemu/include/net/vhost-user.h
/qemu/include/net/vhost_net.h
/qemu/include/qemu/accel.h
/qemu/include/qemu/async-teardown.h
/qemu/include/qemu/atomic128.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/clang-tsa.h
/qemu/include/qemu/config-file.h
/qemu/include/qemu/coroutine-core.h
/qemu/include/qemu/coroutine.h
/qemu/include/qemu/dbus.h
/qemu/include/qemu/host-utils.h
/qemu/include/qemu/int128.h
/qemu/include/qemu/interval-tree.h
/qemu/include/qemu/lockable.h
/qemu/include/qemu/main-loop.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/plugin-memory.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/progress_meter.h
/qemu/include/qemu/readline.h
/qemu/include/qemu/thread.h
/qemu/include/qemu/typedefs.h
/qemu/include/qemu/userfaultfd.h
/qemu/include/qemu/xattr.h
/qemu/include/scsi/pr-manager.h
/qemu/include/standard-headers/drm/drm_fourcc.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/fuse.h
/qemu/include/standard-headers/linux/input-event-codes.h
/qemu/include/standard-headers/linux/virtio_blk.h
/qemu/include/sysemu/accel-blocker.h
/qemu/include/sysemu/block-backend-io.h
/qemu/include/sysemu/dirtyrate.h
/qemu/include/sysemu/dump.h
/qemu/include/sysemu/event-loop-base.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/stats.h
/qemu/include/sysemu/sysemu.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg.h
/qemu/include/ui/console.h
/qemu/include/ui/qemu-spice.h
/qemu/include/ui/spice-display.h
/qemu/include/user/syscall-trace.h
/qemu/io/channel-buffer.c
/qemu/io/channel-command.c
/qemu/io/channel-file.c
/qemu/io/channel-null.c
/qemu/io/channel-socket.c
/qemu/io/channel-tls.c
/qemu/io/channel-websock.c
/qemu/io/channel.c
/qemu/iothread.c
/qemu/job-qmp.c
/qemu/linux-headers/asm-generic/hugetlb_encode.h
/qemu/linux-headers/asm-generic/mman-common.h
/qemu/linux-headers/asm-mips/mman.h
/qemu/linux-headers/asm-riscv/kvm.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/psci.h
/qemu/linux-headers/linux/userfaultfd.h
/qemu/linux-headers/linux/vfio.h
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/aarch64/signal.c
/qemu/linux-user/aarch64/target_flat.h
/qemu/linux-user/arm/target_flat.h
/qemu/linux-user/elfload.c
/qemu/linux-user/exit.c
/qemu/linux-user/generic/target_flat.h
/qemu/linux-user/hexagon/signal.c
/qemu/linux-user/include/host/ppc/host-signal.h
/qemu/linux-user/m68k/target_flat.h
/qemu/linux-user/main.c
/qemu/linux-user/meson.build
/qemu/linux-user/microblaze/target_flat.h
/qemu/linux-user/mmap.c
/qemu/linux-user/sh4/target_flat.h
/qemu/linux-user/signal.c
/qemu/linux-user/strace.c
/qemu/linux-user/strace.list
/qemu/linux-user/syscall.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/block.c
/qemu/migration/channel-block.c
/qemu/migration/channel.c
/qemu/migration/channel.h
/qemu/migration/colo.c
/qemu/migration/dirtyrate.c
/qemu/migration/meson.build
/qemu/migration/migration-hmp-cmds.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/multifd-zlib.c
/qemu/migration/multifd-zstd.c
/qemu/migration/multifd.c
/qemu/migration/multifd.h
/qemu/migration/postcopy-ram.c
/qemu/migration/postcopy-ram.h
/qemu/migration/ram.c
/qemu/migration/ram.h
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/savevm.h
/qemu/migration/threadinfo.c
/qemu/migration/threadinfo.h
/qemu/migration/tls.c
/qemu/migration/trace-events
/qemu/migration/vmstate.c
/qemu/migration/xbzrle.c
/qemu/migration/xbzrle.h
/qemu/monitor/fds.c
/qemu/monitor/hmp-cmds-target.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/hmp-target.c
/qemu/monitor/hmp.c
/qemu/monitor/meson.build
/qemu/monitor/monitor-internal.h
/qemu/monitor/monitor.c
/qemu/monitor/qmp-cmds-control.c
/qemu/monitor/qmp-cmds.c
/qemu/nbd/client-connection.c
/qemu/nbd/nbd-internal.h
/qemu/nbd/server.c
/qemu/net/announce.c
/qemu/net/colo-compare.c
/qemu/net/hub.c
/qemu/net/l2tpv3.c
/qemu/net/meson.build
/qemu/net/net-hmp-cmds.c
/qemu/net/net.c
/qemu/net/slirp.c
/qemu/net/socket.c
/qemu/net/stream.c
/qemu/net/tap-bsd.c
/qemu/net/tap-linux.c
/qemu/net/tap-solaris.c
/qemu/net/tap-win32.c
/qemu/net/tap.c
/qemu/net/vhost-user.c
/qemu/net/vhost-vdpa.c
/qemu/net/vmnet-host.c
/qemu/net/vmnet-shared.c
/qemu/net/vmnet_int.h
/qemu/os-posix.c
README
meson.build
/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_client.py
/qemu/python/qemu/qmp/qmp_tui.py
/qemu/python/setup.cfg
/qemu/qapi/audio.json
/qemu/qapi/block-core.json
/qemu/qapi/migration.json
/qemu/qapi/misc-target.json
/qemu/qemu-img.c
/qemu/qemu-io-cmds.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/commands-bsd.c
/qemu/qga/commands-posix.c
/qemu/qga/commands-win32.c
/qemu/qga/commands.c
/qemu/qga/cutils.c
/qemu/qga/cutils.h
/qemu/qga/installer/qemu-ga.wxs
/qemu/qga/main.c
/qemu/qga/meson.build
/qemu/qga/messages-win32.mc
/qemu/qom/qom-hmp-cmds.c
/qemu/qom/qom-qmp-cmds.c
/qemu/replay/replay-debugging.c
/qemu/replay/replay-internal.h
/qemu/replay/replay-time.c
/qemu/roms/Makefile
/qemu/scripts/block-coroutine-wrapper.py
/qemu/scripts/ci/org.centos/stream/8/build-environment.yml
/qemu/scripts/ci/org.centos/stream/8/x86_64/configure
/qemu/scripts/ci/setup/build-environment.yml
/qemu/scripts/ci/setup/gitlab-runner.yml
/qemu/scripts/ci/setup/vars.yml.template
/qemu/scripts/clean-includes
/qemu/scripts/coccinelle/return_directly.cocci
/qemu/scripts/git.orderfile
/qemu/scripts/make-release
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/oss-fuzz/lsan_suppressions.txt
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/events.py
/qemu/scripts/qapi/gen.py
/qemu/scripts/qapi/schema.py
/qemu/scripts/qapi/types.py
/qemu/scripts/qapi/visit.py
/qemu/scripts/shaderinclude.py
/qemu/scripts/symlink-install-tree.py
/qemu/scsi/qemu-pr-helper.c
/qemu/semihosting/console.c
/qemu/semihosting/syscalls.c
/qemu/softmmu/cpus.c
/qemu/softmmu/dirtylimit.c
/qemu/softmmu/memory.c
/qemu/softmmu/memory_mapping.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/rtc.c
/qemu/softmmu/runstate-hmp-cmds.c
/qemu/softmmu/runstate.c
/qemu/softmmu/tpm-hmp-cmds.c
/qemu/softmmu/vl.c
/qemu/stats/meson.build
/qemu/stats/stats-hmp-cmds.c
/qemu/stats/stats-qmp-cmds.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/graph-lock.c
/qemu/stubs/meson.build
/qemu/stubs/qdev.c
/qemu/subprojects/libvduse/libvduse.c
/qemu/subprojects/libvduse/meson.build
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/subprojects/libvhost-user/meson.build
/qemu/target/arm/cpregs.h
/qemu/target/arm/cpu-qom.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/debug_helper.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper-a64.h
/qemu/target/arm/helper-sme.h
/qemu/target/arm/helper.c
/qemu/target/arm/helper.h
/qemu/target/arm/hvf/hvf.c
/qemu/target/arm/hvf/trace-events
/qemu/target/arm/internals.h
/qemu/target/arm/kvm-consts.h
/qemu/target/arm/m_helper.c
/qemu/target/arm/machine.c
/qemu/target/arm/monitor.c
/qemu/target/arm/mte_helper.c
/qemu/target/arm/op_helper.c
/qemu/target/arm/ptw.c
/qemu/target/arm/sme_helper.c
/qemu/target/arm/sve_helper.c
/qemu/target/arm/syndrome.h
/qemu/target/arm/tlb_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate.c
/qemu/target/arm/translate.h
/qemu/target/avr/cpu-qom.h
/qemu/target/avr/cpu.c
/qemu/target/avr/cpu.h
/qemu/target/cris/cpu-qom.h
/qemu/target/cris/cpu.c
/qemu/target/hexagon/README
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/decode.c
/qemu/target/hexagon/gen_helper_funcs.py
/qemu/target/hexagon/gen_helper_protos.py
/qemu/target/hexagon/gen_idef_parser_funcs.py
/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/genptr.h
/qemu/target/hexagon/hex_arch_types.h
/qemu/target/hexagon/hex_common.py
/qemu/target/hexagon/hex_regs.h
/qemu/target/hexagon/idef-parser/README.rst
/qemu/target/hexagon/idef-parser/idef-parser.h
/qemu/target/hexagon/idef-parser/idef-parser.lex
/qemu/target/hexagon/idef-parser/idef-parser.y
/qemu/target/hexagon/idef-parser/macros.inc
/qemu/target/hexagon/idef-parser/parser-helpers.c
/qemu/target/hexagon/idef-parser/parser-helpers.h
/qemu/target/hexagon/idef-parser/prepare
/qemu/target/hexagon/insn.h
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/meson.build
/qemu/target/hexagon/mmvec/macros.h
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/op_helper.h
/qemu/target/hexagon/translate.c
/qemu/target/hexagon/translate.h
/qemu/target/hppa/insns.decode
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu-qom.h
/qemu/target/i386/cpu-sysemu.c
/qemu/target/i386/cpu.c
/qemu/target/i386/hax/hax-all.c
/qemu/target/i386/helper.h
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/monitor.c
/qemu/target/i386/ops_sse.h
/qemu/target/i386/tcg/decode-new.c.inc
/qemu/target/i386/tcg/mem_helper.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/sysemu/excp_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_branch.c.inc
/qemu/target/loongarch/insns.decode
/qemu/target/loongarch/meson.build
/qemu/target/loongarch/tlb_helper.c
/qemu/target/loongarch/translate.c
/qemu/target/m68k/cpu-qom.h
/qemu/target/m68k/cpu.c
/qemu/target/m68k/fpu_helper.c
/qemu/target/m68k/translate.c
/qemu/target/microblaze/cpu-qom.h
/qemu/target/microblaze/cpu.c
/qemu/target/microblaze/op_helper.c
/qemu/target/mips/cpu-qom.h
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/internal.h
/qemu/target/mips/kvm.c
/qemu/target/mips/sysemu/addr.c
/qemu/target/mips/sysemu/meson.build
/qemu/target/mips/sysemu/mips-qmp-cmds.c
/qemu/target/mips/sysemu/physaddr.c
/qemu/target/mips/tcg/dsp_helper.c
/qemu/target/mips/tcg/sysemu/tlb_helper.c
/qemu/target/mips/tcg/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/ppc/cpu-qom.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/helper.h
/qemu/target/ppc/helper_regs.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/mem_helper.c
/qemu/target/ppc/mmu-hash32.c
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/mmu_common.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/spr_common.h
/qemu/target/ppc/translate.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/cpu_vendorid.h
/qemu/target/riscv/csr.c
/qemu/target/riscv/debug.c
/qemu/target/riscv/debug.h
/qemu/target/riscv/fpu_helper.c
/qemu/target/riscv/helper.h
/qemu/target/riscv/insn32.decode
/qemu/target/riscv/insn_trans/trans_privileged.c.inc
/qemu/target/riscv/insn_trans/trans_rva.c.inc
/qemu/target/riscv/insn_trans/trans_rvb.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_rvv.c.inc
/qemu/target/riscv/insn_trans/trans_rvzawrs.c.inc
/qemu/target/riscv/insn_trans/trans_rvzfh.c.inc
/qemu/target/riscv/insn_trans/trans_svinval.c.inc
/qemu/target/riscv/insn_trans/trans_xthead.c.inc
/qemu/target/riscv/kvm.c
/qemu/target/riscv/machine.c
/qemu/target/riscv/meson.build
/qemu/target/riscv/monitor.c
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/pmp.h
/qemu/target/riscv/pmu.h
/qemu/target/riscv/time_helper.c
/qemu/target/riscv/translate.c
/qemu/target/riscv/vector_helper.c
/qemu/target/riscv/xthead.decode
/qemu/target/rx/cpu-qom.h
/qemu/target/rx/cpu.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu_features.c
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/cpu_models_sysemu.c
/qemu/target/s390x/helper.h
/qemu/target/s390x/tcg/cc_helper.c
/qemu/target/s390x/tcg/excp_helper.c
/qemu/target/s390x/tcg/fpu_helper.c
/qemu/target/s390x/tcg/insn-data.h.inc
/qemu/target/s390x/tcg/int_helper.c
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/misc_helper.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/sh4/cpu-qom.h
/qemu/target/sh4/cpu.c
/qemu/target/sparc/cpu-qom.h
/qemu/target/sparc/cpu.c
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu-qom.h
/qemu/target/tricore/cpu.c
/qemu/target/tricore/gdbstub.c
/qemu/target/tricore/helper.c
/qemu/target/tricore/translate.c
/qemu/target/xtensa/cpu-qom.h
/qemu/target/xtensa/cpu.c
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/aarch64/tcg-target.h
/qemu/tcg/arm/tcg-target-con-set.h
/qemu/tcg/arm/tcg-target-con-str.h
/qemu/tcg/arm/tcg-target.c.inc
/qemu/tcg/arm/tcg-target.h
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/i386/tcg-target.h
/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/mips/tcg-target.c.inc
/qemu/tcg/mips/tcg-target.h
/qemu/tcg/optimize.c
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/ppc/tcg-target.h
/qemu/tcg/riscv/tcg-target.c.inc
/qemu/tcg/riscv/tcg-target.h
/qemu/tcg/s390x/tcg-target-con-set.h
/qemu/tcg/s390x/tcg-target-con-str.h
/qemu/tcg/s390x/tcg-target.c.inc
/qemu/tcg/s390x/tcg-target.h
/qemu/tcg/sparc64/tcg-target.c.inc
/qemu/tcg/sparc64/tcg-target.h
/qemu/tcg/tcg-internal.h
/qemu/tcg/tcg-op-vec.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/avocado/acpi-bits.py
/qemu/tests/avocado/acpi-bits/bits-tests/smbios.py2
/qemu/tests/avocado/acpi-bits/bits-tests/testacpi.py2
/qemu/tests/avocado/acpi-bits/bits-tests/testcpuid.py2
/qemu/tests/avocado/avocado_qemu/__init__.py
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/machine_arm_canona1100.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/avocado/machine_microblaze.py
/qemu/tests/avocado/machine_mips_malta.py
/qemu/tests/avocado/machine_sparc64_sun4u.py
/qemu/tests/avocado/ppc_mpc8544ds.py
/qemu/tests/avocado/ppc_virtex_ml507.py
/qemu/tests/avocado/replay_kernel.py
/qemu/tests/avocado/riscv_opensbi.py
/qemu/tests/bench/benchmark-crypto-akcipher.c
/qemu/tests/bench/meson.build
/qemu/tests/bench/xbzrle-bench.c
/qemu/tests/data/acpi/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpierst
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.nohpet
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpierst
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.acpihmat-noinitiator
/qemu/tests/data/acpi/q35/DSDT.applesmc
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.core-count2
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.cxl
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.ipmismbus
/qemu/tests/data/acpi/q35/DSDT.ivrs
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.multi-bridge
/qemu/tests/data/acpi/q35/DSDT.nohpet
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.pvpanic-isa
/qemu/tests/data/acpi/q35/DSDT.tis.tpm12
/qemu/tests/data/acpi/q35/DSDT.tis.tpm2
/qemu/tests/data/acpi/q35/DSDT.viot
/qemu/tests/data/acpi/q35/DSDT.xapic
/qemu/tests/data/acpi/virt/APIC.topology
/qemu/tests/data/acpi/virt/DSDT.topology
/qemu/tests/data/acpi/virt/PPTT
/qemu/tests/data/acpi/virt/PPTT.acpihmatvirt
/qemu/tests/data/acpi/virt/PPTT.topology
/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-armel-cross.docker
/qemu/tests/docker/dockerfiles/debian-armhf-cross.docker
/qemu/tests/docker/dockerfiles/debian-hexagon-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-mipsel-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-riscv64-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/docker/dockerfiles/debian-toolchain.docker
/qemu/tests/docker/dockerfiles/debian-tricore-cross.docker
/qemu/tests/docker/dockerfiles/fedora-i386-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/ubuntu2004.docker
/qemu/tests/fp/meson.build
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/projects/qemu.yml
/qemu/tests/lcitool/refresh
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/migration/meson.build
/qemu/tests/qapi-schema/meson.build
/qemu/tests/qemu-iotests/065
/qemu/tests/qemu-iotests/106
/qemu/tests/qemu-iotests/214
/qemu/tests/qemu-iotests/262
/qemu/tests/qemu-iotests/302.out
/qemu/tests/qemu-iotests/308
/qemu/tests/qemu-iotests/312
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/tests/detect-zeroes-registered-buf
/qemu/tests/qemu-iotests/tests/detect-zeroes-registered-buf.out
/qemu/tests/qemu-iotests/tests/qemu-img-close-errors
/qemu/tests/qemu-iotests/tests/qemu-img-close-errors.out
/qemu/tests/qemu-iotests/tests/stream-under-throttle
/qemu/tests/qtest/ahci-test.c
/qemu/tests/qtest/arm-cpu-features.c
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/boot-sector.c
/qemu/tests/qtest/boot-serial-test.c
/qemu/tests/qtest/dbus-display-test.c
/qemu/tests/qtest/display-vga-test.c
/qemu/tests/qtest/e1000e-test.c
/qemu/tests/qtest/erst-test.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/qos_fuzz.c
/qemu/tests/qtest/hexloader-test.c
/qemu/tests/qtest/ide-test.c
/qemu/tests/qtest/ivshmem-test.c
/qemu/tests/qtest/libqmp.c
/qemu/tests/qtest/libqos/e1000e.c
/qemu/tests/qtest/libqos/e1000e.h
/qemu/tests/qtest/libqos/libqos-pc.h
/qemu/tests/qtest/libqos/libqos-spapr.h
/qemu/tests/qtest/libqos/libqos.h
/qemu/tests/qtest/libqos/virtio-9p.c
/qemu/tests/qtest/libqos/virtio-gpio.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/migration-helpers.h
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/netdev-socket.c
/qemu/tests/qtest/npcm7xx_pwm-test.c
/qemu/tests/qtest/pvpanic-pci-test.c
/qemu/tests/qtest/pvpanic-test.c
/qemu/tests/qtest/qmp-cmd-test.c
/qemu/tests/qtest/qom-test.c
/qemu/tests/qtest/readconfig-test.c
/qemu/tests/qtest/rtas-test.c
/qemu/tests/qtest/tco-test.c
/qemu/tests/qtest/test-filter-mirror.c
/qemu/tests/qtest/test-hmp.c
/qemu/tests/qtest/tpm-emu.c
/qemu/tests/qtest/usb-hcd-uhci-test.c
/qemu/tests/qtest/vhost-user-blk-test.c
/qemu/tests/qtest/virtio-ccw-test.c
/qemu/tests/qtest/vnc-display-test.c
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/aarch64/Makefile.softmmu-target
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/sysregs.c
/qemu/tests/tcg/aarch64/system/boot.S
/qemu/tests/tcg/aarch64/system/semiheap.c
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/crt.S
/qemu/tests/tcg/hexagon/hvx_misc.c
/qemu/tests/tcg/hexagon/mem_noshuf.c
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/tcg/hexagon/reg_mut.c
/qemu/tests/tcg/hexagon/signal_context.c
/qemu/tests/tcg/hexagon/test_abs.S
/qemu/tests/tcg/hexagon/test_bitcnt.S
/qemu/tests/tcg/hexagon/test_bitsplit.S
/qemu/tests/tcg/hexagon/test_call.S
/qemu/tests/tcg/hexagon/test_clobber.S
/qemu/tests/tcg/hexagon/test_cmp.S
/qemu/tests/tcg/hexagon/test_dotnew.S
/qemu/tests/tcg/hexagon/test_ext.S
/qemu/tests/tcg/hexagon/test_fibonacci.S
/qemu/tests/tcg/hexagon/test_hl.S
/qemu/tests/tcg/hexagon/test_hwloops.S
/qemu/tests/tcg/hexagon/test_jmp.S
/qemu/tests/tcg/hexagon/test_lsr.S
/qemu/tests/tcg/hexagon/test_mpyi.S
/qemu/tests/tcg/hexagon/test_packet.S
/qemu/tests/tcg/hexagon/test_reorder.S
/qemu/tests/tcg/hexagon/test_round.S
/qemu/tests/tcg/hexagon/test_vavgw.S
/qemu/tests/tcg/hexagon/test_vcmpb.S
/qemu/tests/tcg/hexagon/test_vcmpw.S
/qemu/tests/tcg/hexagon/test_vlsrw.S
/qemu/tests/tcg/hexagon/test_vmaxh.S
/qemu/tests/tcg/hexagon/test_vminh.S
/qemu/tests/tcg/hexagon/test_vpmpyh.S
/qemu/tests/tcg/hexagon/test_vspliceb.S
/qemu/tests/tcg/hexagon/usr.c
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/linux/linux-test.c
/qemu/tests/tcg/multiarch/munmap-pthread.c
/qemu/tests/tcg/multiarch/nop_func.h
/qemu/tests/tcg/multiarch/sha512.c
/qemu/tests/tcg/multiarch/test-vma.c
/qemu/tests/tcg/multiarch/vma-pthread.c
/qemu/tests/tcg/riscv64/Makefile.target
/qemu/tests/tcg/riscv64/test-noc.S
/qemu/tests/tcg/s390x/Makefile.target
/qemu/tests/tcg/s390x/cdsg.c
/qemu/tests/tcg/s390x/clst.c
/qemu/tests/tcg/s390x/div.c
/qemu/tests/tcg/s390x/long-double.c
/qemu/tests/tcg/tricore/Makefile.softmmu-target
/qemu/tests/tcg/tricore/macros.h
/qemu/tests/tcg/tricore/test_dextr.S
/qemu/tests/tcg/tricore/test_imask.S
/qemu/tests/tcg/tricore/test_insert.S
/qemu/tests/tcg/tricore/test_ld_bu.S
/qemu/tests/tcg/tricore/test_ld_h.S
/qemu/tests/unit/meson.build
/qemu/tests/unit/test-aio.c
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-block-iothread.c
/qemu/tests/unit/test-char.c
/qemu/tests/unit/test-coroutine.c
/qemu/tests/unit/test-crypto-block.c
/qemu/tests/unit/test-crypto-tlssession.c
/qemu/tests/unit/test-cutils.c
/qemu/tests/unit/test-interval-tree.c
/qemu/tests/unit/test-io-channel-command.c
/qemu/tests/unit/test-io-channel-socket.c
/qemu/tests/unit/test-io-channel-tls.c
/qemu/tests/unit/test-qmp-cmds.c
/qemu/tests/unit/test-qmp-event.c
/qemu/tests/unit/test-qobject-input-visitor.c
/qemu/tests/unit/test-qobject-output-visitor.c
/qemu/tests/unit/test-seccomp.c
/qemu/tests/unit/test-visitor-serialization.c
/qemu/tests/unit/test-vmstate.c
/qemu/tests/unit/test-xbzrle.c
/qemu/tests/vhost-user-bridge.c
/qemu/tests/vm/basevm.py
/qemu/tests/vm/centos.aarch64
/qemu/tests/vm/freebsd
/qemu/tests/vm/haiku.x86_64
/qemu/tools/virtiofsd/fuse_log.c
/qemu/tools/virtiofsd/fuse_log.h
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/trace-events
/qemu/trace/meson.build
/qemu/trace/trace-hmp-cmds.c
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk-gl-area.c
/qemu/ui/gtk.c
/qemu/ui/input.c
/qemu/ui/meson.build
/qemu/ui/spice-core.c
/qemu/ui/spice-display.c
/qemu/ui/udmabuf.c
/qemu/ui/ui-hmp-cmds.c
/qemu/ui/ui-qmp-cmds.c
/qemu/ui/util.c
/qemu/ui/vdagent.c
/qemu/ui/vnc.c
/qemu/util/aio-posix.c
/qemu/util/async-teardown.c
/qemu/util/async.c
/qemu/util/bufferiszero.c
/qemu/util/cutils.c
/qemu/util/error-report.c
/qemu/util/error.c
/qemu/util/int128.c
/qemu/util/interval-tree.c
/qemu/util/log.c
/qemu/util/main-loop.c
/qemu/util/meson.build
/qemu/util/osdep.c
/qemu/util/oslib-posix.c
/qemu/util/oslib-win32.c
/qemu/util/qemu-config.c
/qemu/util/qemu-coroutine-lock.c
/qemu/util/qemu-coroutine-sleep.c
/qemu/util/qemu-coroutine.c
/qemu/util/qemu-sockets.c
/qemu/util/qht.c
/qemu/util/readline.c
/qemu/util/thread-context.c
/qemu/util/trace-events
/qemu/util/userfaultfd.c
/qemu/util/vfio-helpers.c
/qemu/util/vhost-user-server.c
a704cb5928-Nov-2022 Gerd Hoffmann <kraxel@redhat.com>

update seabios binaries to 1.16.1

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>


/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/cirrus.yml
/qemu/.gitlab-ci.d/cirrus/macos-12.vars
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/chardev/char-win-stdio.c
/qemu/configure
/qemu/docs/devel/acpi-bits.rst
/qemu/docs/devel/code-of-conduct.rst
/qemu/docs/devel/index-process.rst
/qemu/docs/devel/maintainers.rst
/qemu/docs/devel/submitting-a-patch.rst
/qemu/docs/devel/submitting-a-pull-request.rst
/qemu/docs/system/s390x/bootdevices.rst
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix3.c
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/vhost_net.c
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/sd/allwinner-sdhost.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost-user-gpio.c
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost-user-rng.c
/qemu/hw/virtio/vhost-vsock-common.c
/qemu/hw/virtio/virtio.c
/qemu/include/exec/ram_addr.h
/qemu/include/exec/ramblock.h
/qemu/include/hw/sd/allwinner-sdhost.h
/qemu/include/qemu/bitmap.h
/qemu/migration/block.c
/qemu/migration/channel-block.c
/qemu/migration/migration.c
/qemu/migration/multifd.c
/qemu/migration/qemu-file.c
/qemu/migration/ram.c
/qemu/net/vhost-vdpa.c
bios-256k.bin
bios-microvm.bin
bios.bin
vgabios-ati.bin
vgabios-bochs-display.bin
vgabios-cirrus.bin
vgabios-qxl.bin
vgabios-ramfb.bin
vgabios-stdvga.bin
vgabios-virtio.bin
vgabios-vmware.bin
vgabios.bin
/qemu/roms/seabios
/qemu/target/arm/ptw.c
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/tests/avocado/acpi-bits.py
/qemu/tests/avocado/boot_linux.py
/qemu/tests/avocado/machine_aarch64_virt.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/data/acpi/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpierst
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.nohpet
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpierst
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.acpihmat-noinitiator
/qemu/tests/data/acpi/q35/DSDT.applesmc
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.core-count2
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.cxl
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.ipmismbus
/qemu/tests/data/acpi/q35/DSDT.ivrs
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.multi-bridge
/qemu/tests/data/acpi/q35/DSDT.nohpet
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.pvpanic-isa
/qemu/tests/data/acpi/q35/DSDT.tis.tpm12
/qemu/tests/data/acpi/q35/DSDT.tis.tpm2
/qemu/tests/data/acpi/q35/DSDT.viot
/qemu/tests/data/acpi/q35/DSDT.xapic
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/common.rc
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/refresh
/qemu/util/bitmap.c
44ee69ea11-Nov-2022 Thomas Huth <thuth@redhat.com>

s390x: Fix spelling errors

Fix typos (discovered with the 'codespell' utility).
Note: Though "migrateable" still seems to be a valid spelling, we change
it to "migratable" since this is the way more

s390x: Fix spelling errors

Fix typos (discovered with the 'codespell' utility).
Note: Though "migrateable" still seems to be a valid spelling, we change
it to "migratable" since this is the way more common spelling here.

Message-Id: <20221111182828.282251-1-thuth@redhat.com>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...


/qemu/.gitignore
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/cirrus/freebsd-12.vars
/qemu/.gitlab-ci.d/cirrus/freebsd-13.vars
/qemu/.mailmap
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/accel-common.c
/qemu/accel/accel-softmmu.c
/qemu/accel/dummy-cpus.c
/qemu/accel/kvm/kvm-accel-ops.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/kvm/kvm-cpus.h
/qemu/accel/meson.build
/qemu/accel/qtest/meson.build
/qemu/accel/stubs/kvm-stub.c
/qemu/accel/tcg/cpu-exec-common.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/internal.h
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/tb-maint.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/accel/tcg/user-exec.c
/qemu/audio/alsaaudio.c
/qemu/audio/audio.c
/qemu/audio/audio_int.h
/qemu/audio/audio_template.h
/qemu/audio/dbusaudio.c
/qemu/audio/noaudio.c
/qemu/audio/rate_template.h
/qemu/audio/spiceaudio.c
/qemu/audio/wavaudio.c
/qemu/backends/cryptodev-builtin.c
/qemu/backends/cryptodev-lkcf.c
/qemu/backends/cryptodev-vhost-user.c
/qemu/backends/cryptodev.c
/qemu/backends/hostmem.c
/qemu/backends/meson.build
/qemu/backends/rng-egd.c
/qemu/backends/rng-random.c
/qemu/backends/vhost-user.c
/qemu/block.c
/qemu/block/backup.c
/qemu/block/blkdebug.c
/qemu/block/blkio.c
/qemu/block/blklogwrites.c
/qemu/block/blkreplay.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/block-ram-registrar.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/file-posix.c
/qemu/block/filter-compress.c
/qemu/block/gluster.c
/qemu/block/io.c
/qemu/block/io_uring.c
/qemu/block/iscsi.c
/qemu/block/meson.build
/qemu/block/mirror.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/nvme.c
/qemu/block/parallels.c
/qemu/block/preallocate.c
/qemu/block/qcow.c
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2-refcount.c
/qemu/block/qcow2-snapshot.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/qed-table.c
/qemu/block/qed.c
/qemu/block/quorum.c
/qemu/block/raw-format.c
/qemu/block/replication.c
/qemu/block/snapshot-access.c
/qemu/block/snapshot.c
/qemu/block/ssh.c
/qemu/block/throttle.c
/qemu/block/vdi.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/block/vvfat.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bsd-user/host/i386/host-signal.h
/qemu/bsd-user/host/x86_64/host-signal.h
/qemu/bsd-user/mmap.c
/qemu/configs/devices/mips-softmmu/common.mak
/qemu/configs/devices/mips64el-softmmu/default.mak
/qemu/configs/devices/ppc-softmmu/default.mak
/qemu/configure
/qemu/contrib/elf2dmp/main.c
/qemu/contrib/gitdm/domain-map
/qemu/contrib/gitdm/group-map-academics
/qemu/contrib/gitdm/group-map-individuals
/qemu/contrib/plugins/Makefile
/qemu/contrib/plugins/execlog.c
/qemu/cpu.c
/qemu/crypto/akcipher.c
/qemu/crypto/block-luks-priv.h
/qemu/crypto/block-luks.c
/qemu/crypto/der.c
/qemu/crypto/der.h
/qemu/crypto/pbkdf.c
/qemu/crypto/rsakey.c
/qemu/crypto/rsakey.h
/qemu/crypto/tlscredspsk.c
/qemu/disas.c
/qemu/disas/capstone.c
/qemu/disas/meson.build
/qemu/disas/mips.c
/qemu/disas/nanomips.c
/qemu/disas/riscv.c
/qemu/docs/devel/acpi-bits.rst
/qemu/docs/devel/index-build.rst
/qemu/docs/devel/multiple-iothreads.txt
/qemu/docs/devel/reset.rst
/qemu/docs/devel/tcg-plugins.rst
/qemu/docs/devel/testing.rst
/qemu/docs/devel/writing-monitor-commands.rst
/qemu/docs/interop/firmware.json
/qemu/docs/specs/pci-ids.txt
/qemu/docs/system/arm/cpu-features.rst
/qemu/docs/system/arm/emulation.rst
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/devices/can.rst
/qemu/docs/system/loongarch/loongson3.rst
/qemu/docs/system/ppc/ppce500.rst
/qemu/docs/tools/virtiofsd.rst
/qemu/dump/dump.c
/qemu/dump/win_dump.c
/qemu/fpu/softfloat-parts.c.inc
/qemu/fsdev/virtfs-proxy-helper.c
/qemu/gdb-xml/i386-32bit.xml
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/internals.h
/qemu/gdbstub/meson.build
/qemu/gdbstub/softmmu.c
/qemu/gdbstub/trace-events
/qemu/gdbstub/trace.h
/qemu/gdbstub/user.c
/qemu/hmp-commands-info.hx
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/9p.h
/qemu/hw/acpi/aml-build-stub.c
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/erst.c
/qemu/hw/acpi/nvdimm.c
/qemu/hw/alpha/dp264.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/m25p80_sfdp.c
/qemu/hw/block/m25p80_sfdp.h
/qemu/hw/block/meson.build
/qemu/hw/block/trace-events
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/virtio-blk-common.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/char/exynos4210_uart.c
/qemu/hw/char/pl011.c
/qemu/hw/core/machine.c
/qemu/hw/core/numa.c
/qemu/hw/core/qdev.c
/qemu/hw/core/reset.c
/qemu/hw/core/resettable.c
/qemu/hw/core/sysbus-fdt.c
/qemu/hw/cxl/cxl-cdat.c
/qemu/hw/cxl/meson.build
/qemu/hw/display/acpi-vga-stub.c
/qemu/hw/display/acpi-vga.c
/qemu/hw/display/ati_2d.c
/qemu/hw/display/blizzard.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/display/cirrus_vga_isa.c
/qemu/hw/display/meson.build
/qemu/hw/display/omap_dss.c
/qemu/hw/display/pxa2xx_lcd.c
/qemu/hw/display/vga-isa.c
/qemu/hw/display/vga-mmio.c
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vga.c
/qemu/hw/display/vga_int.h
/qemu/hw/display/vga_regs.h
/qemu/hw/display/vmware_vga.c
/qemu/hw/display/xenfb.c
/qemu/hw/dma/pl330.c
/qemu/hw/gpio/Kconfig
/qemu/hw/gpio/meson.build
/qemu/hw/hppa/machine.c
/qemu/hw/hyperv/hyperv.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/e820_memory_layout.c
/qemu/hw/i386/e820_memory_layout.h
/qemu/hw/i386/fw_cfg.c
/qemu/hw/i386/fw_cfg.h
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/intel_iommu_internal.h
/qemu/hw/i386/microvm.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/trace-events
/qemu/hw/i386/x86.c
/qemu/hw/ide/macio.c
/qemu/hw/ide/microdrive.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/via.c
/qemu/hw/intc/arm_gicv3_cpuif.c
/qemu/hw/intc/heathrow_pic.c
/qemu/hw/intc/loongarch_extioi.c
/qemu/hw/intc/loongarch_ipi.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/sifive_plic.c
/qemu/hw/intc/trace-events
/qemu/hw/isa/Kconfig
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix3.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/bootinfo.h
/qemu/hw/m68k/q800.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/mips/bootloader.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/malta.c
/qemu/hw/misc/cbus.c
/qemu/hw/misc/macio/cuda.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/mos6522.c
/qemu/hw/net/can/can_sja1000.c
/qemu/hw/net/can/ctu_can_fd_frame.h
/qemu/hw/net/can/ctu_can_fd_regs.h
/qemu/hw/net/e1000_regs.h
/qemu/hw/net/e1000e.c
/qemu/hw/net/mcf_fec.c
/qemu/hw/net/ne2000.c
/qemu/hw/net/pcnet.c
/qemu/hw/net/pcnet.h
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/tulip.c
/qemu/hw/net/vhost_net-stub.c
/qemu/hw/net/vhost_net.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/net/xen_nic.c
/qemu/hw/nios2/boot.c
/qemu/hw/nios2/meson.build
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/nvme.h
/qemu/hw/nvram/eeprom93xx.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/nvram/mac_nvram.c
/qemu/hw/openrisc/boot.c
/qemu/hw/pci-bridge/cxl_upstream.c
/qemu/hw/pci-host/grackle.c
/qemu/hw/pci-host/pnv_phb.c
/qemu/hw/pci-host/uninorth.c
/qemu/hw/pci/meson.build
/qemu/hw/pci/msix.c
/qemu/hw/pci/pcie_doe.c
/qemu/hw/ppc/Kconfig
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/e500.h
/qemu/hw/ppc/e500plat.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/meson.build
/qemu/hw/ppc/mpc8544ds.c
/qemu/hw/ppc/pegasos2.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc405.h
/qemu/hw/ppc/ppc405_boards.c
/qemu/hw/ppc/ppc405_uc.c
/qemu/hw/ppc/ppc440.h
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/ppc440_uc.c
/qemu/hw/ppc/ppc4xx_devs.c
/qemu/hw/ppc/ppc4xx_sdram.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/ppc/trace-events
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/remote/vfio-user-obj.c
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/ipl.h
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-pci-kvm.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/tod-kvm.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/spapr_vscsi.c
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/sdhci-internal.h
/qemu/hw/sd/sdhci.c
/qemu/hw/smbios/smbios.c
/qemu/hw/smbios/smbios_build.h
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/ibex_spi_host.c
/qemu/hw/ssi/ssi.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/timer/renesas_cmt.c
/qemu/hw/timer/renesas_tmr.c
/qemu/hw/usb/ccid-card-emulated.c
/qemu/hw/usb/dev-hub.c
/qemu/hw/usb/dev-mtp.c
/qemu/hw/usb/dev-network.c
/qemu/hw/usb/dev-wacom.c
/qemu/hw/usb/hcd-musb.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/quirks-pl2303-ids.h
/qemu/hw/usb/vt82c686-uhci-pci.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/migration.c
/qemu/hw/virtio/Kconfig
/qemu/hw/virtio/meson.build
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vhost-shadow-virtqueue.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost-user-gpio-pci.c
/qemu/hw/virtio/vhost-user-gpio.c
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost-user-rng.c
/qemu/hw/virtio/vhost-user-vsock.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost-vsock-common.c
/qemu/hw/virtio/vhost-vsock.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-iommu-pci.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem-pci.c
/qemu/hw/virtio/virtio-rng-pci.c
/qemu/hw/virtio/virtio-stub.c
/qemu/hw/virtio/virtio.c
/qemu/hw/xen/meson.build
/qemu/include/block/aio-wait.h
/qemu/include/block/block-common.h
/qemu/include/block/block-global-state.h
/qemu/include/block/block-hmp-cmds.h
/qemu/include/block/block-io.h
/qemu/include/block/block_int-common.h
/qemu/include/block/blockjob.h
/qemu/include/block/nbd.h
/qemu/include/crypto/akcipher.h
/qemu/include/elf.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/memory.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/translate-all.h
/qemu/include/exec/translator.h
/qemu/include/hw/acpi/acpi_aml_interface.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/sysemu-cpu-ops.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/cxl/cxl_cdat.h
/qemu/include/hw/cxl/cxl_component.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/cxl/cxl_pci.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/firmware/smbios.h
/qemu/include/hw/i2c/aspeed_i2c.h
/qemu/include/hw/i386/intel_iommu.h
/qemu/include/hw/ide/piix.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/loongarch/virt.h
/qemu/include/hw/mips/bootloader.h
/qemu/include/hw/misc/macio/macio.h
/qemu/include/hw/nvram/fw_cfg.h
/qemu/include/hw/nvram/mac_nvram.h
/qemu/include/hw/pci-host/grackle.h
/qemu/include/hw/pci-host/ls7a.h
/qemu/include/hw/pci/msix.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pci_bus.h
/qemu/include/hw/pci/pci_ids.h
/qemu/include/hw/pci/pcie.h
/qemu/include/hw/pci/pcie_doe.h
/qemu/include/hw/pci/pcie_regs.h
/qemu/include/hw/ppc/ppc4xx.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/s390x/pv.h
/qemu/include/hw/s390x/s390-virtio-ccw.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/ssi/ibex_spi_host.h
/qemu/include/hw/ssi/ssi.h
/qemu/include/hw/usb.h
/qemu/include/hw/usb/dwc2-regs.h
/qemu/include/hw/virtio/vhost-user-blk.h
/qemu/include/hw/virtio/vhost-user-gpio.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/hw/virtio/virtio-blk-common.h
/qemu/include/hw/virtio/virtio-blk.h
/qemu/include/hw/virtio/virtio-pci.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/io/channel-command.h
/qemu/include/monitor/hmp.h
/qemu/include/monitor/monitor.h
/qemu/include/net/net.h
/qemu/include/net/vhost_net.h
/qemu/include/qapi/qmp/qerror.h
/qemu/include/qemu/accel.h
/qemu/include/qemu/async-teardown.h
/qemu/include/qemu/atomic.h
/qemu/include/qemu/coroutine.h
/qemu/include/qemu/job.h
/qemu/include/qemu/main-loop.h
/qemu/include/qemu/module.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/sockets.h
/qemu/include/qemu/thread-context.h
/qemu/include/qemu/thread.h
/qemu/include/qemu/typedefs.h
/qemu/include/standard-headers/asm-m68k/bootinfo-virt.h
/qemu/include/standard-headers/asm-m68k/bootinfo.h
/qemu/include/sysemu/accel-ops.h
/qemu/include/sysemu/block-backend-global-state.h
/qemu/include/sysemu/block-ram-registrar.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/cryptodev.h
/qemu/include/sysemu/device_tree.h
/qemu/include/sysemu/dump-arch.h
/qemu/include/sysemu/dump.h
/qemu/include/sysemu/hostmem.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/reset.h
/qemu/io/channel-command.c
/qemu/io/channel-watch.c
/qemu/job-qmp.c
/qemu/job.c
/qemu/libdecnumber/dpd/decimal64.c
/qemu/linux-user/cpu_loop-common.h
/qemu/linux-user/hppa/cpu_loop.c
/qemu/linux-user/i386/cpu_loop.c
/qemu/linux-user/i386/signal.c
/qemu/linux-user/ioctls.h
/qemu/linux-user/main.c
/qemu/linux-user/mmap.c
/qemu/linux-user/strace.c
/qemu/linux-user/strace.list
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/migration.c
/qemu/migration/savevm.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/hmp.c
/qemu/monitor/misc.c
/qemu/monitor/monitor-internal.h
/qemu/monitor/qmp-cmds.c
/qemu/net/clients.h
/qemu/net/dgram.c
/qemu/net/hub.c
/qemu/net/l2tpv3.c
/qemu/net/meson.build
/qemu/net/net.c
/qemu/net/slirp.c
/qemu/net/socket.c
/qemu/net/stream.c
/qemu/net/tap-linux.h
/qemu/net/tap-win32.c
/qemu/net/tap.c
/qemu/net/vde.c
/qemu/net/vhost-user.c
/qemu/net/vhost-vdpa.c
/qemu/os-posix.c
s390-ccw/cio.h
s390-ccw/iplb.h
s390-ccw/start.S
/qemu/plugins/api.c
/qemu/plugins/core.c
/qemu/qapi/block-core.json
/qemu/qapi/machine.json
/qemu/qapi/meson.build
/qemu/qapi/net.json
/qemu/qapi/qapi-schema.json
/qemu/qapi/qom.json
/qemu/qapi/run-state.json
/qemu/qapi/ui.json
/qemu/qapi/virtio.json
/qemu/qemu-edid.c
/qemu/qemu-img.c
/qemu/qemu-options.hx
/qemu/qga/channel-posix.c
/qemu/qga/commands-bsd.c
/qemu/qga/commands-common.h
/qemu/qga/commands-linux.c
/qemu/qga/commands-posix.c
/qemu/qga/main.c
/qemu/qga/meson.build
/qemu/qga/qapi-schema.json
/qemu/qom/object.c
/qemu/scripts/checkpatch.pl
/qemu/scripts/feature_to_c.sh
/qemu/scripts/git-submodule.sh
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/nsis.py
/qemu/scripts/vmstate-static-checker.py
/qemu/semihosting/arm-compat-semi.c
/qemu/softmmu/cpus.c
/qemu/softmmu/device_tree.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qemu-seccomp.c
/qemu/softmmu/qtest.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/stubs/meson.build
/qemu/stubs/physmem.c
/qemu/subprojects/libvduse/libvduse.c
/qemu/target/alpha/cpu.c
/qemu/target/alpha/helper.c
/qemu/target/alpha/mem_helper.c
/qemu/target/alpha/translate.c
/qemu/target/arm/arch_dump.c
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/kvm.c
/qemu/target/arm/m_helper.c
/qemu/target/arm/mte_helper.c
/qemu/target/arm/op_helper.c
/qemu/target/arm/ptw.c
/qemu/target/arm/sve_helper.c
/qemu/target/arm/sve_ldst_internal.h
/qemu/target/arm/tlb_helper.c
/qemu/target/arm/translate-a32.h
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-m-nocp.c
/qemu/target/arm/translate-mve.c
/qemu/target/arm/translate-vfp.c
/qemu/target/arm/translate.c
/qemu/target/arm/translate.h
/qemu/target/avr/cpu.c
/qemu/target/avr/translate.c
/qemu/target/cris/cpu.c
/qemu/target/cris/helper.c
/qemu/target/cris/translate.c
/qemu/target/hexagon/cpu.c
/qemu/target/hppa/cpu.c
/qemu/target/hppa/translate.c
/qemu/target/i386/arch_dump.c
/qemu/target/i386/cpu-param.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/helper.c
/qemu/target/i386/helper.h
/qemu/target/i386/kvm/hyperv.c
/qemu/target/i386/kvm/kvm-stub.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/kvm/kvm_i386.h
/qemu/target/i386/machine.c
/qemu/target/i386/ops_sse.h
/qemu/target/i386/ops_sse_header.h
/qemu/target/i386/tcg/cc_helper.c
/qemu/target/i386/tcg/decode-new.c.inc
/qemu/target/i386/tcg/decode-new.h
/qemu/target/i386/tcg/emit.c.inc
/qemu/target/i386/tcg/fpu_helper.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/sysemu/excp_helper.c
/qemu/target/i386/tcg/sysemu/misc_helper.c
/qemu/target/i386/tcg/sysemu/svm_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_bit.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_privileged.c.inc
/qemu/target/loongarch/iocsr_helper.c
/qemu/target/loongarch/tlb_helper.c
/qemu/target/loongarch/translate.c
/qemu/target/loongarch/translate.h
/qemu/target/m68k/cpu.c
/qemu/target/m68k/op_helper.c
/qemu/target/m68k/qregs.h.inc
/qemu/target/m68k/translate.c
/qemu/target/microblaze/cpu.c
/qemu/target/microblaze/helper.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/cpu-defs.c.inc
/qemu/target/mips/cpu.c
/qemu/target/mips/kvm.c
/qemu/target/mips/tcg/octeon.decode
/qemu/target/mips/tcg/tcg-internal.h
/qemu/target/mips/tcg/translate.c
/qemu/target/nios2/cpu.c
/qemu/target/nios2/op_helper.c
/qemu/target/nios2/translate.c
/qemu/target/openrisc/cpu.c
/qemu/target/openrisc/sys_helper.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/arch_dump.c
/qemu/target/ppc/cpu.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/helper.h
/qemu/target/ppc/helper_regs.c
/qemu/target/ppc/insn32.decode
/qemu/target/ppc/int_helper.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/mmu-radix64.c
/qemu/target/ppc/power8-pmu.c
/qemu/target/ppc/power8-pmu.h
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/processor-ctrl-impl.c.inc
/qemu/target/ppc/translate/vmx-impl.c.inc
/qemu/target/ppc/translate/vmx-ops.c.inc
/qemu/target/ppc/translate/vsx-impl.c.inc
/qemu/target/ppc/translate/vsx-ops.c.inc
/qemu/target/riscv/arch_dump.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/kvm.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/vector_helper.c
/qemu/target/rx/cpu.c
/qemu/target/rx/op_helper.c
/qemu/target/rx/translate.c
/qemu/target/s390x/arch_dump.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu_models.h
/qemu/target/s390x/ioinst.c
/qemu/target/s390x/kvm/kvm.c
/qemu/target/s390x/kvm/kvm_s390x.h
/qemu/target/s390x/kvm/meson.build
/qemu/target/s390x/kvm/stubs.c
/qemu/target/s390x/s390x-internal.h
/qemu/target/s390x/tcg/excp_helper.c
/qemu/target/s390x/tcg/fpu_helper.c
/qemu/target/s390x/tcg/insn-data.h.inc
/qemu/target/s390x/tcg/insn-format.h.inc
/qemu/target/s390x/tcg/misc_helper.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/s390x/tcg/translate_vx.c.inc
/qemu/target/sh4/cpu.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/csfr.h.inc
/qemu/target/tricore/op_helper.c
/qemu/target/tricore/translate.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/helper.c
/qemu/target/xtensa/translate.c
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/loongarch64/tcg-target.c.inc
/qemu/tcg/loongarch64/tcg-target.h
/qemu/tcg/sparc64/tcg-target-con-set.h
/qemu/tcg/sparc64/tcg-target-con-str.h
/qemu/tcg/sparc64/tcg-target.c.inc
/qemu/tcg/sparc64/tcg-target.h
/qemu/tcg/tcg.c
/qemu/tests/avocado/acpi-bits.py
/qemu/tests/avocado/acpi-bits/bits-config/bits-cfg.txt
/qemu/tests/avocado/acpi-bits/bits-tests/smbios.py2
/qemu/tests/avocado/acpi-bits/bits-tests/testacpi.py2
/qemu/tests/avocado/acpi-bits/bits-tests/testcpuid.py2
/qemu/tests/avocado/boot_linux.py
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/info_usernet.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/avocado/ppc_bamboo.py
/qemu/tests/avocado/vnc.py
/qemu/tests/data/acpi/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpierst
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.nohpet
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/pc/SSDT.dimmpxm
/qemu/tests/data/acpi/q35/APIC.acpihmat-noinitiator
/qemu/tests/data/acpi/q35/APIC.core-count2
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpierst
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.acpihmat-noinitiator
/qemu/tests/data/acpi/q35/DSDT.applesmc
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.core-count2
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.cxl
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.ipmismbus
/qemu/tests/data/acpi/q35/DSDT.ivrs
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.multi-bridge
/qemu/tests/data/acpi/q35/DSDT.nohpet
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.pvpanic-isa
/qemu/tests/data/acpi/q35/DSDT.tis.tpm12
/qemu/tests/data/acpi/q35/DSDT.tis.tpm2
/qemu/tests/data/acpi/q35/DSDT.viot
/qemu/tests/data/acpi/q35/DSDT.xapic
/qemu/tests/data/acpi/q35/FACP.core-count2
/qemu/tests/data/acpi/q35/HMAT.acpihmat-noinitiator
/qemu/tests/data/acpi/q35/SRAT.acpihmat-noinitiator
/qemu/tests/data/acpi/q35/SSDT.dimmpxm
/qemu/tests/data/acpi/virt/APIC
/qemu/tests/data/acpi/virt/APIC.acpihmatvirt
/qemu/tests/data/acpi/virt/APIC.memhp
/qemu/tests/data/acpi/virt/APIC.numamem
/qemu/tests/data/acpi/virt/DSDT.acpihmatvirt
/qemu/tests/data/acpi/virt/FACP
/qemu/tests/data/acpi/virt/FACP.memhp
/qemu/tests/data/acpi/virt/FACP.numamem
/qemu/tests/data/acpi/virt/GTDT
/qemu/tests/data/acpi/virt/GTDT.memhp
/qemu/tests/data/acpi/virt/GTDT.numamem
/qemu/tests/data/acpi/virt/HMAT.acpihmatvirt
/qemu/tests/data/acpi/virt/PPTT.acpihmatvirt
/qemu/tests/data/acpi/virt/SRAT.acpihmatvirt
/qemu/tests/data/acpi/virt/SSDT.memhp
/qemu/tests/docker/dockerfiles/alpine.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-all-test-cross.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-hexagon-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-mipsel-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/ubuntu2004.docker
/qemu/tests/docker/test-mingw
/qemu/tests/lcitool/libvirt-ci
/qemu/tests/lcitool/projects/qemu.yml
/qemu/tests/lcitool/refresh
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/qemu-iotests/051
/qemu/tests/qemu-iotests/051.out
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/151
/qemu/tests/qemu-iotests/151.out
/qemu/tests/qemu-iotests/tests/stream-under-throttle
/qemu/tests/qemu-iotests/tests/stream-under-throttle.out
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/cxl-test.c
/qemu/tests/qtest/dbus-vmstate-test.c
/qemu/tests/qtest/device-plug-test.c
/qemu/tests/qtest/drive_del-test.c
/qemu/tests/qtest/e1000e-test.c
/qemu/tests/qtest/fuzz-lsi53c895a-test.c
/qemu/tests/qtest/fuzz-megasas-test.c
/qemu/tests/qtest/fuzz-sb16-test.c
/qemu/tests/qtest/fuzz-sdcard-test.c
/qemu/tests/qtest/fuzz-virtio-scsi-test.c
/qemu/tests/qtest/fuzz-xlnx-dp-test.c
/qemu/tests/qtest/hd-geo-test.c
/qemu/tests/qtest/ivshmem-test.c
/qemu/tests/qtest/libqmp.c
/qemu/tests/qtest/libqos/e1000e.c
/qemu/tests/qtest/libqos/meson.build
/qemu/tests/qtest/libqos/pci-pc.c
/qemu/tests/qtest/libqos/qgraph.h
/qemu/tests/qtest/libqos/virtio-9p-client.c
/qemu/tests/qtest/libqos/virtio-9p-client.h
/qemu/tests/qtest/libqos/virtio-9p.c
/qemu/tests/qtest/libqos/virtio-gpio.c
/qemu/tests/qtest/libqos/virtio-gpio.h
/qemu/tests/qtest/libqos/virtio.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/libqtest.h
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/modules-test.c
/qemu/tests/qtest/qmp-cmd-test.c
/qemu/tests/qtest/qos-test.c
/qemu/tests/qtest/tpm-crb-swtpm-test.c
/qemu/tests/qtest/tpm-tis-device-swtpm-test.c
/qemu/tests/qtest/tpm-tis-swtpm-test.c
/qemu/tests/qtest/tpm-util.c
/qemu/tests/qtest/tpm-util.h
/qemu/tests/qtest/vhost-user-test.c
/qemu/tests/qtest/virtio-9p-test.c
/qemu/tests/qtest/vnc-display-test.c
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/i386/test-avx.c
/qemu/tests/tcg/i386/test-avx.py
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/munmap-pthread.c
/qemu/tests/tcg/nios2/10m50-ghrd.ld
/qemu/tests/tcg/nios2/Makefile.softmmu-target
/qemu/tests/tcg/s390x/Makefile.target
/qemu/tests/tcg/s390x/vistr.c
/qemu/tests/tcg/sh4/Makefile.target
/qemu/tests/tcg/x86_64/Makefile.target
/qemu/tests/tcg/x86_64/cmpxchg.c
/qemu/tests/unit/crypto-tls-psk-helpers.c
/qemu/tests/unit/io-channel-helpers.c
/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-blockjob-txn.c
/qemu/tests/unit/test-blockjob.c
/qemu/tests/unit/test-coroutine.c
/qemu/tests/unit/test-crypto-block.c
/qemu/tests/unit/test-crypto-der.c
/qemu/tests/unit/test-image-locking.c
/qemu/tests/unit/test-io-channel-command.c
/qemu/tests/vm/basevm.py
/qemu/tests/vm/freebsd
/qemu/tests/vm/openbsd
/qemu/trace-events
/qemu/ui/console.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk.c
/qemu/ui/vgafont.h
/qemu/ui/vnc-enc-hextile.c
/qemu/ui/vnc-enc-zywrle-template.c
/qemu/ui/vnc-enc-zywrle.h
/qemu/ui/vnc-jobs.c
/qemu/ui/vnc.c
/qemu/ui/vnc_keysym.h
/qemu/util/aio-win32.c
/qemu/util/async-teardown.c
/qemu/util/iov.c
/qemu/util/log.c
/qemu/util/main-loop.c
/qemu/util/meson.build
/qemu/util/module.c
/qemu/util/osdep.c
/qemu/util/oslib-posix.c
/qemu/util/oslib-win32.c
/qemu/util/qemu-config.c
/qemu/util/qemu-coroutine-lock.c
/qemu/util/qemu-coroutine.c
/qemu/util/qemu-sockets.c
/qemu/util/qemu-thread-posix.c
/qemu/util/qemu-thread-win32.c
/qemu/util/thread-context.c
/qemu/util/vfio-helpers.c

12345678910>>...35