History log of /qemu/net/ (Results 101 – 125 of 1074)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
0b58d36802-Jun-2023 Hawkins Jiawei <yin31149@gmail.com>

vdpa: Add vhost_vdpa_net_load_offloads()

This patch introduces vhost_vdpa_net_load_offloads() to
restore offloads state at device's startup.

Signed-off-by: Hawkins Jiawei <yin31149@gmail.com>
Messa

vdpa: Add vhost_vdpa_net_load_offloads()

This patch introduces vhost_vdpa_net_load_offloads() to
restore offloads state at device's startup.

Signed-off-by: Hawkins Jiawei <yin31149@gmail.com>
Message-Id: <7e2b5cad9c48c917df53d80dec27dbfeb513e1a3.1685704856.git.yin31149@gmail.com>
Tested-by: Lei Yang <leiyang@redhat.com>
Reviewed-by: Eugenio Pérez <eperezma@redhat.com>
Tested-by: Eugenio Pérez <eperezma@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

show more ...

02d3bf0902-Jun-2023 Hawkins Jiawei <yin31149@gmail.com>

vdpa: reuse virtio_vdev_has_feature()

We can use virtio_vdev_has_feature() instead of manually
accessing the features.

Signed-off-by: Hawkins Jiawei <yin31149@gmail.com>
Acked-by: Eugenio Pérez <ep

vdpa: reuse virtio_vdev_has_feature()

We can use virtio_vdev_has_feature() instead of manually
accessing the features.

Signed-off-by: Hawkins Jiawei <yin31149@gmail.com>
Acked-by: Eugenio Pérez <eperezma@redhat.com>
Message-Id: <ff838d30206209fd865511b16ffb34cc0d5e8d8f.1685704856.git.yin31149@gmail.com>
Tested-by: Lei Yang <leiyang@redhat.com>
Reviewed-by: Eugenio Pérez <eperezma@redhat.com>
Tested-by: Eugenio Pérez <eperezma@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

show more ...

babf8b8702-Jun-2023 Eugenio Pérez <eperezma@redhat.com>

vdpa: map shadow vrings with MAP_SHARED

The vdpa devices that use va addresses neeeds these maps shared.
Otherwise, vhost_vdpa checks will refuse to accept the maps.

The mmap call will always retur

vdpa: map shadow vrings with MAP_SHARED

The vdpa devices that use va addresses neeeds these maps shared.
Otherwise, vhost_vdpa checks will refuse to accept the maps.

The mmap call will always return a page aligned address, so removing the
qemu_memalign call. Keeping the ROUND_UP for the size as we still need
to DMA-map them in full.

Not applying fixes tag as it never worked with va devices.

Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Message-Id: <20230602143854.1879091-4-eperezma@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

show more ...

915bf6cc02-Jun-2023 Eugenio Pérez <eperezma@redhat.com>

vdpa: reorder vhost_vdpa_net_cvq_cmd_page_len function

We need to call it from resource cleanup context, as munmap needs the
size of the mappings.

Signed-off-by: Eugenio Pérez <eperezma@redhat.com>

vdpa: reorder vhost_vdpa_net_cvq_cmd_page_len function

We need to call it from resource cleanup context, as munmap needs the
size of the mappings.

Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230602143854.1879091-3-eperezma@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

show more ...

8bc0049e02-Jun-2023 Eugenio Pérez <eperezma@redhat.com>

vdpa: do not block migration if device has cvq and x-svq=on

It was a mistake to forbid in all cases, as SVQ is already able to send
all the CVQ messages before start forwarding data vqs. It actuall

vdpa: do not block migration if device has cvq and x-svq=on

It was a mistake to forbid in all cases, as SVQ is already able to send
all the CVQ messages before start forwarding data vqs. It actually
caused a regression, making impossible to migrate device previously
migratable.

Fixes: 36e4647247f2 ("vdpa: add vhost_vdpa_net_valid_svq_features")
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Message-Id: <20230602143854.1879091-2-eperezma@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Tested-by: Lei Yang <leiyang@redhat.com>

show more ...

152128d626-May-2023 Eugenio Pérez <eperezma@redhat.com>

vdpa: move CVQ isolation check to net_init_vhost_vdpa

Evaluating it at start time instead of initialization time may make the
guest capable of dynamically adding or removing migration blockers.

Als

vdpa: move CVQ isolation check to net_init_vhost_vdpa

Evaluating it at start time instead of initialization time may make the
guest capable of dynamically adding or removing migration blockers.

Also, moving to initialization reduces the number of ioctls in the
migration, reducing failure possibilities.

As a drawback we need to check for CVQ isolation twice: one time with no
MQ negotiated and another one acking it, as long as the device supports
it. This is because Vring ASID / group management is based on vq
indexes, but we don't know the index of CVQ before negotiating MQ.

Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Message-Id: <20230526153143.470745-3-eperezma@redhat.com>
Tested-by: Lei Yang <leiyang@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>

show more ...

0f2bb0bf26-May-2023 Eugenio Pérez <eperezma@redhat.com>

vdpa: return errno in vhost_vdpa_get_vring_group error

We need to tell in the caller, as some errors are expected in a normal
workflow. In particular, parent drivers in recent kernels with
VHOST_BA

vdpa: return errno in vhost_vdpa_get_vring_group error

We need to tell in the caller, as some errors are expected in a normal
workflow. In particular, parent drivers in recent kernels with
VHOST_BACKEND_F_IOTLB_ASID may not support vring groups. In that case,
-ENOTSUP is returned.

This is the case of vp_vdpa in Linux 6.2.

Next patches in this series will use that information to know if it must
abort or not. Also, next patches return properly an errp instead of
printing with error_report.

Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Message-Id: <20230526153143.470745-2-eperezma@redhat.com>
Tested-by: Lei Yang <leiyang@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

show more ...


/qemu/MAINTAINERS
/qemu/accel/tcg/cpu-exec.c
/qemu/backends/cryptodev-vhost-user.c
/qemu/docs/devel/loads-stores.rst
/qemu/hw/block/dataplane/meson.build
/qemu/hw/block/dataplane/virtio-blk.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/m68k/meson.build
/qemu/hw/m68k/q800-glue.c
/qemu/hw/m68k/q800.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/cxl_type3_stubs.c
/qemu/hw/misc/mac_via.c
/qemu/hw/net/dp8393x.c
/qemu/hw/pci/pci.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/virtio/Kconfig
/qemu/hw/virtio/meson.build
/qemu/hw/virtio/vdpa-dev.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/include/exec/cpu-defs.h
/qemu/include/exec/target_page.h
/qemu/include/hw/cxl/cxl.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/cxl/cxl_events.h
/qemu/include/hw/m68k/q800-glue.h
/qemu/include/hw/m68k/q800.h
/qemu/include/hw/net/dp8393x.h
/qemu/include/qemu/bswap.h
vhost-vdpa.c
/qemu/pc-bios/hppa-firmware.img
/qemu/plugins/core.c
/qemu/qapi/cxl.json
/qemu/roms/seabios-hppa
/qemu/softmmu/physmem.c
/qemu/target/tricore/cpu.c
/qemu/target/tricore/cpu.h
/qemu/target/tricore/helper.h
/qemu/target/tricore/op_helper.c
/qemu/target/tricore/translate.c
/qemu/target/tricore/tricore-opcodes.h
de6cd75913-Jun-2023 Philippe Mathieu-Daudé <philmd@linaro.org>

meson: Replace softmmu_ss -> system_ss

We use the user_ss[] array to hold the user emulation sources,
and the softmmu_ss[] array to hold the system emulation ones.
Hold the latter in the 'system_ss[

meson: Replace softmmu_ss -> system_ss

We use the user_ss[] array to hold the user emulation sources,
and the softmmu_ss[] array to hold the system emulation ones.
Hold the latter in the 'system_ss[]' array for parity with user
emulation.

Mechanical change doing:

$ sed -i -e s/softmmu_ss/system_ss/g $(git grep -l softmmu_ss)

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

show more ...


/qemu/MAINTAINERS
/qemu/accel/hvf/hvf-all.c
/qemu/accel/meson.build
/qemu/accel/qtest/meson.build
/qemu/accel/stubs/meson.build
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/internal.h
/qemu/accel/tcg/meson.build
/qemu/audio/meson.build
/qemu/backends/hostmem-file.c
/qemu/backends/meson.build
/qemu/backends/tpm/meson.build
/qemu/block/meson.build
/qemu/block/monitor/meson.build
/qemu/chardev/meson.build
/qemu/disas/meson.build
/qemu/disas/riscv.c
/qemu/docs/devel/build-system.rst
/qemu/docs/system/arm/aspeed.rst
/qemu/docs/system/arm/sbsa.rst
/qemu/docs/system/arm/xenpvh.rst
/qemu/docs/system/riscv/virt.rst
/qemu/docs/system/target-arm.rst
/qemu/dump/meson.build
/qemu/ebpf/meson.build
/qemu/fsdev/meson.build
/qemu/gdbstub/meson.build
/qemu/host/include/x86_64/host/atomic128-ldst.h
/qemu/host/include/x86_64/host/load-extract-al16-al8.h
/qemu/hw/9pfs/meson.build
/qemu/hw/acpi/meson.build
/qemu/hw/adc/meson.build
/qemu/hw/arm/Kconfig
/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/fby35.c
/qemu/hw/arm/meson.build
/qemu/hw/arm/xen_arm.c
/qemu/hw/audio/meson.build
/qemu/hw/block/meson.build
/qemu/hw/char/imx_serial.c
/qemu/hw/char/meson.build
/qemu/hw/char/parallel-isa.c
/qemu/hw/char/parallel.c
/qemu/hw/core/meson.build
/qemu/hw/cpu/meson.build
/qemu/hw/cxl/meson.build
/qemu/hw/display/meson.build
/qemu/hw/dma/meson.build
/qemu/hw/gpio/meson.build
/qemu/hw/i2c/i2c_mux_pca954x.c
/qemu/hw/i2c/meson.build
/qemu/hw/i386/kvm/meson.build
/qemu/hw/i386/meson.build
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/xen/meson.build
/qemu/hw/i386/xen/trace-events
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/meson.build
/qemu/hw/input/meson.build
/qemu/hw/intc/allwinner-a10-pic.c
/qemu/hw/intc/loongarch_ipi.c
/qemu/hw/intc/meson.build
/qemu/hw/intc/riscv_aplic.c
/qemu/hw/ipack/meson.build
/qemu/hw/ipmi/meson.build
/qemu/hw/isa/isa-superio.c
/qemu/hw/isa/meson.build
/qemu/hw/loongarch/Kconfig
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/mem/meson.build
/qemu/hw/misc/aspeed_hace.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/misc/macio/meson.build
/qemu/hw/misc/meson.build
/qemu/hw/net/can/meson.build
/qemu/hw/net/meson.build
/qemu/hw/nubus/meson.build
/qemu/hw/nvme/meson.build
/qemu/hw/nvram/meson.build
/qemu/hw/pci-bridge/meson.build
/qemu/hw/pci-host/meson.build
/qemu/hw/pci/meson.build
/qemu/hw/pcmcia/meson.build
/qemu/hw/rdma/meson.build
/qemu/hw/remote/meson.build
/qemu/hw/riscv/numa.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/meson.build
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/meson.build
/qemu/hw/sd/allwinner-sdhost.c
/qemu/hw/sd/meson.build
/qemu/hw/sensor/meson.build
/qemu/hw/smbios/meson.build
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/meson.build
/qemu/hw/timer/meson.build
/qemu/hw/timer/nrf51_timer.c
/qemu/hw/tpm/meson.build
/qemu/hw/usb/meson.build
/qemu/hw/vfio/common.c
/qemu/hw/vfio/trace-events
/qemu/hw/virtio/meson.build
/qemu/hw/watchdog/meson.build
/qemu/hw/xen/meson.build
/qemu/hw/xen/trace-events
/qemu/hw/xen/xen-hvm-common.c
/qemu/hw/xen/xen-mapcache.c
/qemu/include/disas/dis-asm.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/memory.h
/qemu/include/exec/ram_addr.h
/qemu/include/hw/arm/raspi_platform.h
/qemu/include/hw/arm/xen_arch_hvm.h
/qemu/include/hw/char/imx_serial.h
/qemu/include/hw/char/parallel-isa.h
/qemu/include/hw/char/parallel.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/i386/xen_arch_hvm.h
/qemu/include/hw/misc/raspberrypi-fw-defs.h
/qemu/include/hw/riscv/opentitan.h
/qemu/include/hw/xen/arch_hvm.h
/qemu/include/hw/xen/xen-hvm-common.h
/qemu/include/hw/xen/xen_native.h
/qemu/include/qemu/log.h
/qemu/meson.build
/qemu/migration/meson.build
/qemu/migration/ram.c
/qemu/monitor/meson.build
can/meson.build
meson.build
/qemu/qapi/meson.build
/qemu/qapi/migration.json
/qemu/qom/meson.build
/qemu/replay/meson.build
/qemu/semihosting/meson.build
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/stats/meson.build
/qemu/target/alpha/meson.build
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/hvf/meson.build
/qemu/target/arm/meson.build
/qemu/target/arm/tcg/a64.decode
/qemu/target/arm/tcg/meson.build
/qemu/target/arm/tcg/translate-a64.c
/qemu/target/avr/meson.build
/qemu/target/cris/meson.build
/qemu/target/hppa/int_helper.c
/qemu/target/hppa/meson.build
/qemu/target/i386/cpu.h
/qemu/target/i386/hax/meson.build
/qemu/target/i386/helper.c
/qemu/target/i386/helper.h
/qemu/target/i386/hvf/meson.build
/qemu/target/i386/kvm/meson.build
/qemu/target/i386/meson.build
/qemu/target/i386/nvmm/meson.build
/qemu/target/i386/tcg/cc_helper.c
/qemu/target/i386/tcg/cc_helper_template.h.inc
/qemu/target/i386/tcg/int_helper.c
/qemu/target/i386/tcg/ops_sse_header.h.inc
/qemu/target/i386/tcg/shift_helper_template.h.inc
/qemu/target/i386/tcg/sysemu/meson.build
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/meson.build
/qemu/target/loongarch/cpu.h
/qemu/target/loongarch/meson.build
/qemu/target/loongarch/tlb_helper.c
/qemu/target/m68k/cpu.c
/qemu/target/m68k/helper.c
/qemu/target/m68k/helper.h
/qemu/target/m68k/meson.build
/qemu/target/m68k/translate.c
/qemu/target/microblaze/meson.build
/qemu/target/mips/meson.build
/qemu/target/mips/sysemu/meson.build
/qemu/target/mips/tcg/sysemu/meson.build
/qemu/target/nios2/meson.build
/qemu/target/openrisc/meson.build
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/helper_regs.c
/qemu/target/ppc/meson.build
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_cfg.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/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_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_rvzce.c.inc
/qemu/target/riscv/insn_trans/trans_xthead.c.inc
/qemu/target/riscv/meson.build
/qemu/target/riscv/pmp.c
/qemu/target/riscv/pmp.h
/qemu/target/riscv/translate.c
/qemu/target/riscv/vector_helper.c
/qemu/target/s390x/kvm/meson.build
/qemu/target/s390x/meson.build
/qemu/target/sh4/meson.build
/qemu/target/sparc/meson.build
/qemu/target/tricore/helper.c
/qemu/target/tricore/meson.build
/qemu/target/xtensa/meson.build
/qemu/tcg/meson.build
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tests/qtest/libqtest.c
/qemu/trace/meson.build
/qemu/ui/meson.build
/qemu/util/cacheflush.c
/qemu/util/log.c
f975033d23-Apr-2023 Philippe Mathieu-Daudé <philmd@linaro.org>

cocoa: Fix warnings about invalid prototype declarations

Fix the following Cocoa trivial warnings:

C compiler for the host machine: cc (clang 14.0.0 "Apple clang version 14.0.0 (clang-1400.0.29.2

cocoa: Fix warnings about invalid prototype declarations

Fix the following Cocoa trivial warnings:

C compiler for the host machine: cc (clang 14.0.0 "Apple clang version 14.0.0 (clang-1400.0.29.202)")
Objective-C compiler for the host machine: clang (clang 14.0.0)

[100/334] Compiling Objective-C object libcommon.fa.p/net_vmnet-bridged.m.o
net/vmnet-bridged.m:40:31: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
static char* get_valid_ifnames()
^
void
[742/1436] Compiling Objective-C object libcommon.fa.p/ui_cocoa.m.o
ui/cocoa.m:1937:22: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
static int cocoa_main()
^
void

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-Id: <20230425192820.34063-1-philmd@linaro.org>

show more ...


/qemu/.gitignore
/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/container-template.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.d/opensbi.yml
/qemu/.gitlab-ci.d/qemu-project.yml
/qemu/.gitmodules
/qemu/.mailmap
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/hvf/hvf-accel-ops.c
/qemu/accel/hvf/hvf-all.c
/qemu/accel/tcg/atomic_common.c.inc
/qemu/accel/tcg/atomic_template.h
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/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-mttcg.c
/qemu/accel/tcg/tcg-accel-ops-rr.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/audio/audio_legacy.c
/qemu/backends/hostmem-file.c
/qemu/block.c
/qemu/block/blkio.c
/qemu/block/block-backend.c
/qemu/block/copy-before-write.c
/qemu/block/curl.c
/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/file-posix.c
/qemu/block/gluster.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/nbd.c
/qemu/block/nfs.c
/qemu/block/nvme.c
/qemu/block/parallels.c
/qemu/block/plug.c
/qemu/block/qapi-sysemu.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/raw-format.c
/qemu/block/ssh.c
/qemu/block/trace-events
/qemu/block/win32-aio.c
/qemu/blockdev.c
/qemu/bsd-user/freebsd/os-syscall.c
/qemu/bsd-user/main.c
/qemu/chardev/char-pty.c
/qemu/configs/devices/aarch64-softmmu/default.mak
/qemu/configs/devices/arm-softmmu/default.mak
/qemu/configure
/qemu/contrib/ivshmem-server/main.c
/qemu/disas/riscv.c
/qemu/docs/about/deprecated.rst
/qemu/docs/conf.py
/qemu/docs/devel/acpi-bits.rst
/qemu/docs/devel/atomics.rst
/qemu/docs/devel/decodetree.rst
/qemu/docs/devel/testing.rst
/qemu/docs/interop/qcow2.txt
/qemu/docs/system/arm/bananapi_m2u.rst
/qemu/docs/system/arm/emulation.rst
/qemu/docs/system/arm/sbsa.rst
/qemu/docs/system/arm/xlnx-versal-virt.rst
/qemu/docs/system/devices/igb.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/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-util.h
/qemu/hw/9pfs/9p.c
/qemu/hw/alpha/dp264.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/allwinner-r40.c
/qemu/hw/arm/bananapi_m2u.c
/qemu/hw/arm/fsl-imx6.c
/qemu/hw/arm/meson.build
/qemu/hw/arm/musicpal.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/virt.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-versal.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/virtio-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/omap_uart.c
/qemu/hw/core/cpu-common.c
/qemu/hw/core/machine.c
/qemu/hw/core/numa.c
/qemu/hw/core/trace-events
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/hppa/machine.c
/qemu/hw/i386/kvm/i8254.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/microvm.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/input/virtio-input-hid.c
/qemu/hw/intc/loongarch_extioi.c
/qemu/hw/intc/loongarch_ipi.c
/qemu/hw/intc/pnv_xive2.c
/qemu/hw/intc/pnv_xive2_regs.h
/qemu/hw/intc/xive.c
/qemu/hw/isa/i82378.c
/qemu/hw/isa/piix3.c
/qemu/hw/loongarch/virt.c
/qemu/hw/m68k/q800.c
/qemu/hw/mips/loongson3_virt.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/Kconfig
/qemu/hw/net/can/meson.build
/qemu/hw/net/can/trace-events
/qemu/hw/net/can/xlnx-versal-canfd.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/e1000e_core.h
/qemu/hw/net/igb_common.h
/qemu/hw/net/igb_core.c
/qemu/hw/net/igb_regs.h
/qemu/hw/net/rtl8139.c
/qemu/hw/net/trace-events
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/Kconfig
/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/pnv_occ.c
/qemu/hw/ppc/pnv_sbe.c
/qemu/hw/ppc/ppc.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/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/scsi/lsi53c895a.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/trace-events
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/sd/allwinner-sdhost.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/timer/i8254.c
/qemu/hw/timer/i8254_common.c
/qemu/hw/usb/hcd-ehci-pci.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/vfio/pci.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/virtio-input-pci.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-pmem-pci.c
/qemu/hw/virtio/virtio-qmp.c
/qemu/hw/virtio/virtio.c
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen-operations.c
/qemu/hw/xtensa/virt.c
/qemu/include/block/aio.h
/qemu/include/block/block-common.h
/qemu/include/block/block-io.h
/qemu/include/block/block_int-common.h
/qemu/include/block/export.h
/qemu/include/block/raw-aio.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/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/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/tlb-common.h
/qemu/include/exec/translation-block.h
/qemu/include/exec/translator.h
/qemu/include/hw/arm/allwinner-r40.h
/qemu/include/hw/arm/fsl-imx6.h
/qemu/include/hw/arm/omap.h
/qemu/include/hw/arm/smmu-common.h
/qemu/include/hw/arm/smmuv3.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/intc/loongarch_ipi.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/ppc/openpic.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/sd/allwinner-sdhost.h
/qemu/include/hw/southbridge/piix.h
/qemu/include/hw/virtio/virtio-input.h
/qemu/include/hw/xen/xen.h
/qemu/include/hw/xen/xen_native.h
/qemu/include/migration/global_state.h
/qemu/include/monitor/monitor.h
/qemu/include/qemu/atomic.h
/qemu/include/qemu/atomic128.h
/qemu/include/qemu/cutils.h
/qemu/include/qemu/help-texts.h
/qemu/include/qemu/int128.h
/qemu/include/qemu/iov.h
/qemu/include/qemu/typedefs.h
/qemu/include/qemu/vhost-user-server.h
/qemu/include/qemu/xxhash.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/hvf.h
/qemu/include/sysemu/hvf_int.h
/qemu/include/sysemu/os-win32.h
/qemu/include/sysemu/runstate.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-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/clipboard.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/linux-user/elfload.c
/qemu/linux-user/loader.h
/qemu/linux-user/main.c
/qemu/linux-user/s390x/cpu_loop.c
/qemu/linux-user/syscall.c
/qemu/meson.build
/qemu/migration/fd.c
/qemu/migration/global_state.c
/qemu/migration/meson.build
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/multifd.c
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/xbzrle.c
/qemu/migration/xbzrle.h
/qemu/migration/yank_functions.c
/qemu/monitor/hmp.c
/qemu/monitor/monitor-internal.h
/qemu/monitor/monitor.c
/qemu/monitor/qmp.c
/qemu/nbd/client-connection.c
/qemu/nbd/server.c
vmnet-bridged.m
/qemu/pc-bios/keymaps/meson.build
/qemu/pc-bios/s390-ccw/Makefile
/qemu/python/qemu/machine/machine.py
/qemu/python/qemu/qmp/legacy.py
/qemu/python/qemu/qmp/protocol.py
/qemu/python/scripts/mkvenv.py
/qemu/qapi/block-core.json
/qemu/qapi/cryptodev.json
/qemu/qapi/opts-visitor.c
/qemu/qapi/qom.json
/qemu/qapi/trace.json
/qemu/qapi/ui.json
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/meson.build
/qemu/qga/qapi-schema.json
/qemu/replay/replay-input.c
/qemu/scripts/archive-source.sh
/qemu/scripts/block-coroutine-wrapper.py
/qemu/scripts/ci/gitlab-kubernetes-runners/values.yaml
/qemu/scripts/ci/org.centos/stream/8/x86_64/configure
/qemu/scripts/ci/org.centos/stream/8/x86_64/test-avocado
/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/qapi/gen.py
/qemu/scripts/qom-cast-macro-clean-cocci-gen.py
/qemu/scripts/tracetool/format/c.py
/qemu/scripts/tracetool/format/h.py
/qemu/scripts/xen-detect.c
/qemu/scsi/qemu-pr-helper.c
/qemu/softmmu/cpus.c
/qemu/softmmu/ioport.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/runstate.c
/qemu/stubs/trace-control.c
/qemu/stubs/xen-hw-stub.c
/qemu/subprojects/.gitignore
/qemu/subprojects/berkeley-softfloat-3.wrap
/qemu/subprojects/berkeley-testfloat-3.wrap
/qemu/subprojects/dtc.wrap
/qemu/subprojects/keycodemapdb.wrap
/qemu/subprojects/libvfio-user.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/subprojects/slirp.wrap
/qemu/target/alpha/translate.c
/qemu/target/arm/Kconfig
/qemu/target/arm/cpregs.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/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/m_helper.c
/qemu/target/arm/tcg/mte_helper.c
/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/avr/cpu.c
/qemu/target/avr/helper.c
/qemu/target/avr/translate.c
/qemu/target/cris/translate.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_regs.py
/qemu/target/hexagon/gen_tcg_funcs.py
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/hex_common.py
/qemu/target/hexagon/idef-parser/idef-parser.y
/qemu/target/hexagon/mmvec/decode_ext_mmvec.c
/qemu/target/hexagon/translate.c
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu.c
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/tcg/translate.c
/qemu/target/loongarch/cpu.c
/qemu/target/loongarch/insn_trans/trans_extra.c.inc
/qemu/target/loongarch/insn_trans/trans_lsx.c.inc
/qemu/target/loongarch/insn_trans/trans_privileged.c.inc
/qemu/target/loongarch/op_helper.c
/qemu/target/loongarch/translate.c
/qemu/target/m68k/fpu_helper.c
/qemu/target/m68k/translate.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/tcg/msa_translate.c
/qemu/target/mips/tcg/mxu_translate.c
/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/sys_helper.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/cpu-models.c
/qemu/target/ppc/cpu-models.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/cpu_init.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/helper.h
/qemu/target/ppc/helper_regs.c
/qemu/target/ppc/helper_regs.h
/qemu/target/ppc/insn32.decode
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/machine.c
/qemu/target/ppc/mem_helper.c
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/mmu_common.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/power8-pmu-regs.c.inc
/qemu/target/ppc/power8-pmu.c
/qemu/target/ppc/power8-pmu.h
/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/riscv/cpu_helper.c
/qemu/target/riscv/insn_trans/trans_privileged.c.inc
/qemu/target/riscv/insn_trans/trans_rvi.c.inc
/qemu/target/riscv/translate.c
/qemu/target/rx/cpu.c
/qemu/target/rx/op_helper.c
/qemu/target/rx/translate.c
/qemu/target/s390x/cpu.h
/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/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/cpu.h
/qemu/target/tricore/helper.c
/qemu/target/tricore/op_helper.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-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-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-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-reg-bits.h
/qemu/tcg/s390x/tcg-target.c.inc
/qemu/tcg/s390x/tcg-target.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-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/tcg-target-reg-bits.h
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/Makefile.include
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/netdev-ethtool.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/avocado/virtio-gpu.py
/qemu/tests/bench/meson.build
/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/fp/meson.build
/qemu/tests/meson.build
/qemu/tests/migration/meson.build
/qemu/tests/qemu-iotests/049.out
/qemu/tests/qemu-iotests/051.out
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/178.out.qcow2
/qemu/tests/qemu-iotests/178.out.raw
/qemu/tests/qemu-iotests/194
/qemu/tests/qemu-iotests/194.out
/qemu/tests/qemu-iotests/256
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/tests/iothreads-create
/qemu/tests/qemu-iotests/tests/iothreads-create.out
/qemu/tests/qemu-iotests/tests/iov-padding
/qemu/tests/qemu-iotests/tests/iov-padding.out
/qemu/tests/qtest/ac97-test.c
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/cdrom-test.c
/qemu/tests/qtest/device-plug-test.c
/qemu/tests/qtest/fuzz-lsi53c895a-test.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/rtl8139-test.c
/qemu/tests/qtest/usb-hcd-ehci-test.c
/qemu/tests/qtest/usb-hcd-uhci-test.c
/qemu/tests/qtest/xlnx-canfd-test.c
/qemu/tests/requirements.txt
/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/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/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/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/tests/unit/meson.build
/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-cutils.c
/qemu/tests/unit/test-nested-aio-poll.c
/qemu/tests/unit/test-xbzrle.c
/qemu/tests/vm/Makefile.include
/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/cursor.c
/qemu/ui/dbus-listener.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/trace-events
/qemu/ui/vnc-jobs.c
/qemu/ui/vnc-ws.c
/qemu/ui/vnc.c
/qemu/util/aio-posix.c
/qemu/util/aio-posix.h
/qemu/util/aio-win32.c
/qemu/util/async.c
/qemu/util/bufferiszero.c
/qemu/util/cpuinfo-aarch64.c
/qemu/util/cpuinfo-i386.c
/qemu/util/cutils.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/oslib-win32.c
/qemu/util/qemu-coroutine-io.c
/qemu/util/qemu-coroutine-lock.c
/qemu/util/qemu-sockets.c
/qemu/util/qsp.c
/qemu/util/vfio-helpers.c
/qemu/util/vhost-user-server.c
7e64a9ca23-May-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

igb: Strip the second VLAN tag for extended VLAN

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>

907209e323-May-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

igb: Implement Rx SCTP CSO

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
Signed-off-by: Jason Wang <jasowang@redhat.com>

aaa8a15c23-May-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

net/eth: Always add VLAN tag

It is possible to have another VLAN tag even if the packet is already
tagged.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Signed-off-by: Jason Wang <jasowan

net/eth: Always add VLAN tag

It is possible to have another VLAN tag even if the packet is already
tagged.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>

show more ...

85427bf323-May-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

net/eth: Use void pointers

The uses of uint8_t pointers were misleading as they are never accessed
as an array of octets and it even require more strict alignment to
access as struct eth_header.

Si

net/eth: Use void pointers

The uses of uint8_t pointers were misleading as they are never accessed
as an array of octets and it even require more strict alignment to
access as struct eth_header.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>

show more ...

0b11783023-May-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

net/eth: Rename eth_setup_vlan_headers_ex

The old eth_setup_vlan_headers has no user so remove it and rename
eth_setup_vlan_headers_ex.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Revie

net/eth: Rename eth_setup_vlan_headers_ex

The old eth_setup_vlan_headers has no user so remove it and rename
eth_setup_vlan_headers_ex.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>

show more ...

2f0fa23223-May-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

net/net_rx_pkt: Use iovec for net_rx_pkt_set_protocols()

igb does not properly ensure the buffer passed to
net_rx_pkt_set_protocols() is contiguous for the entire L2/L3/L4 header.
Allow it to pass s

net/net_rx_pkt: Use iovec for net_rx_pkt_set_protocols()

igb does not properly ensure the buffer passed to
net_rx_pkt_set_protocols() is contiguous for the entire L2/L3/L4 header.
Allow it to pass scattered data to net_rx_pkt_set_protocols().

Fixes: 3a977deebe ("Intrdocue igb device emulation")
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
Signed-off-by: Jason Wang <jasowang@redhat.com>

show more ...


/qemu/.gitlab-ci.d/buildtest-template.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/custom-runners.yml
/qemu/.gitmodules
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/block.c
/qemu/block/commit.c
/qemu/block/create.c
/qemu/block/crypto.c
/qemu/block/export/export.c
/qemu/block/graph-lock.c
/qemu/block/mirror.c
/qemu/block/parallels.c
/qemu/block/qcow.c
/qemu/block/qcow2.c
/qemu/block/qed.c
/qemu/block/raw-format.c
/qemu/block/stream.c
/qemu/block/vdi.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/configs/targets/hexagon-linux-user.mak
/qemu/configure
/qemu/contrib/plugins/Makefile
/qemu/docs/about/build-platforms.rst
/qemu/docs/about/deprecated.rst
/qemu/docs/conf.py
/qemu/docs/devel/acpi-bits.rst
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/qapi-code-gen.rst
/qemu/docs/devel/testing.rst
/qemu/docs/interop/index.rst
/qemu/docs/interop/qcow2.txt
/qemu/docs/interop/qmp-spec.rst
/qemu/docs/meson.build
/qemu/docs/sphinx/dbusdomain.py
/qemu/docs/sphinx/fakedbusdoc.py
/qemu/docs/sphinx/qmp_lexer.py
/qemu/docs/system/devices/cxl.rst
/qemu/gdb-xml/hexagon-core.xml
/qemu/gdb-xml/hexagon-hvx.xml
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/internals.h
/qemu/gdbstub/softmmu.c
/qemu/gdbstub/user.c
/qemu/hw/arm/virt.c
/qemu/hw/char/parallel-isa.c
/qemu/hw/char/parallel.c
/qemu/hw/core/machine.c
/qemu/hw/cxl/cxl-cdat.c
/qemu/hw/cxl/cxl-component-utils.c
/qemu/hw/cxl/cxl-device-utils.c
/qemu/hw/cxl/cxl-mailbox-utils.c
/qemu/hw/i386/Kconfig
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/isa/Kconfig
/qemu/hw/isa/isa-superio.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix3.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/e1000x_common.c
/qemu/hw/net/e1000x_common.h
/qemu/hw/net/igb_core.c
/qemu/hw/net/igb_regs.h
/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/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/pci-bridge/Kconfig
/qemu/hw/pci-bridge/cxl_upstream.c
/qemu/hw/pci-bridge/meson.build
/qemu/hw/pci-host/i440fx.c
/qemu/hw/pci-host/pam.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie_aer.c
/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/ppc440_bamboo.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/spapr.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/sh4/r2d.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/virtio/vhost-shadow-virtqueue.c
/qemu/hw/virtio/vhost-shadow-virtqueue.h
/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-mem.c
/qemu/hw/virtio/virtio-pci.c
/qemu/include/block/block-global-state.h
/qemu/include/block/block_int-common.h
/qemu/include/block/blockjob_int.h
/qemu/include/exec/memory.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/parallel.h
/qemu/include/hw/cxl/cxl_device.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/pci-host/pam.h
/qemu/include/hw/pci/pci.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.h
/qemu/include/io/channel.h
/qemu/include/migration/colo.h
/qemu/include/migration/qemu-file-types.h
/qemu/include/net/eth.h
/qemu/include/sysemu/kvm_int.h
/qemu/io/channel.c
/qemu/linux-user/hexagon/cpu_loop.c
/qemu/linux-user/hexagon/target_elf.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/meson.build
/qemu/migration/migration-stats.c
/qemu/migration/migration-stats.h
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/multifd.c
/qemu/migration/options.c
/qemu/migration/options.h
/qemu/migration/qemu-file.c
/qemu/migration/qemu-file.h
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/trace-events
/qemu/nbd/server.c
eth.c
/qemu/python/Makefile
/qemu/python/qemu/qmp/models.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/control.json
/qemu/qapi/qapi-schema.json
/qemu/qemu-img.c
/qemu/qemu-options.hx
/qemu/qga/meson.build
/qemu/qobject/json-lexer.c
/qemu/scripts/archive-source.sh
/qemu/scripts/ci/org.centos/stream/8/x86_64/test-avocado
/qemu/scripts/coverity-scan/COMPONENTS.md
/qemu/scripts/device-crash-test
/qemu/scripts/meson-buildoptions.py
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/modinfo-collect.py
/qemu/scripts/modinfo-generate.py
/qemu/scripts/probe-gdb-support.py
/qemu/scripts/qapi/mypy.ini
/qemu/scripts/qapi/parser.py
/qemu/softmmu/memory.c
/qemu/softmmu/vl.c
/qemu/stubs/colo.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/kvm_arm.h
/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/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_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/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/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/cpu.h
/qemu/target/i386/ops_sse.h
/qemu/target/i386/tcg/decode-new.c.inc
/qemu/target/i386/tcg/emit.c.inc
/qemu/tcg/meson.build
/qemu/tests/Makefile.include
/qemu/tests/avocado/acpi-bits.py
/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/docker/dockerfiles/debian-all-test-cross.docker
/qemu/tests/docker/dockerfiles/debian-hexagon-cross.docker
/qemu/tests/docker/dockerfiles/debian-riscv64-cross.docker
/qemu/tests/docker/dockerfiles/debian-tricore-cross.docker
/qemu/tests/guest-debug/run-test.py
/qemu/tests/qapi-schema/doc-interleaved-section.err
/qemu/tests/qemu-iotests/172
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/245.out
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/meson.build
/qemu/tests/qemu-iotests/tests/graph-changes-while-io
/qemu/tests/qemu-iotests/tests/graph-changes-while-io.out
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/cdrom-test.c
/qemu/tests/qtest/cxl-test.c
/qemu/tests/qtest/device-plug-test.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/readconfig-test.c
/qemu/tests/qtest/usb-hcd-uhci-test.c
/qemu/tests/qtest/virtio-ccw-test.c
/qemu/tests/requirements.txt
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/fpstuff.c
/qemu/tests/tcg/hexagon/hvx_misc.c
/qemu/tests/tcg/hexagon/invalid-slots.c
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/tcg/hexagon/read_write_overlap.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/i386/test-avx.py
/qemu/tests/tcg/multiarch/system/Makefile.softmmu-target
/qemu/tests/unit/meson.build
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-nested-aio-poll.c
/qemu/tests/vm/netbsd
/qemu/util/aio-posix.c
/qemu/util/coroutine-windows.c
/qemu/util/meson.build
6c1e390615-May-2023 Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>

configure: add --disable-colo-proxy option

Add option to not build filter-rewriter and colo-compare when
they are not needed.

Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>

configure: add --disable-colo-proxy option

Add option to not build filter-rewriter and colo-compare when
they are not needed.

Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Zhang Chen <chen.zhang@intel.com>
Message-Id: <20230515130640.46035-2-vsementsov@yandex-team.ru>
Signed-off-by: Juan Quintela <quintela@redhat.com>

show more ...


/qemu/.gitignore
/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/custom-runners/ubuntu-22.04-aarch32.yml
/qemu/.gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
/qemu/.travis.yml
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/tcg/atomic_common.c.inc
/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/monitor.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tb-maint.c
/qemu/accel/tcg/tcg-accel-ops-icount.c
/qemu/accel/tcg/tcg-accel-ops-icount.h
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/tcg-runtime-gvec.c
/qemu/accel/tcg/tcg-runtime.h
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/user-exec.c
/qemu/audio/audio.c
/qemu/audio/audio_template.h
/qemu/audio/meson.build
/qemu/audio/pwaudio.c
/qemu/audio/trace-events
/qemu/backends/tpm/tpm_backend.c
/qemu/block.c
/qemu/block/amend.c
/qemu/block/blkdebug.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/coroutines.h
/qemu/block/crypto.c
/qemu/block/dmg.c
/qemu/block/dmg.h
/qemu/block/export/export.c
/qemu/block/export/vduse-blk.c
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/file-posix.c
/qemu/block/file-win32.c
/qemu/block/graph-lock.c
/qemu/block/io.c
/qemu/block/io_uring.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/parallels.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/trace-events
/qemu/block/vdi.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/block/vvfat.c
/qemu/blockdev.c
/qemu/bsd-user/elfload.c
/qemu/bsd-user/main.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/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/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/deprecated.rst
/qemu/docs/about/emulation.rst
/qemu/docs/devel/atomics.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/vhost-user.rst
/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/qapidoc.py
/qemu/docs/system/arm/cubieboard.rst
/qemu/docs/system/arm/emulation.rst
/qemu/docs/system/arm/orangepi.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/fpu/softfloat.c
/qemu/gdb-xml/aarch64-pauth.xml
/qemu/gdb-xml/s390-virt-kvm.xml
/qemu/gdb-xml/s390-virt.xml
/qemu/hmp-commands.hx
/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/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/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/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/sbsa-ref.c
/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/block/dataplane/virtio-blk.c
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/trace-events
/qemu/hw/block/virtio-blk-common.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/char/meson.build
/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/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/meson.build
/qemu/hw/cxl/cxl-host.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/i386/acpi-build.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/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/ahci_internal.h
/qemu/hw/ide/core.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/loongarch/virt.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/pc-dimm.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/allwinner-sun8i-emac.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/meson.build
/qemu/hw/net/msf2-emac.c
/qemu/hw/net/npcm7xx_emc.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/xilinx_ethlite.c
/qemu/hw/nvme/ctrl.c
/qemu/hw/nvme/trace-events
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/pci-host/raven.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pci_bridge.c
/qemu/hw/ppc/Kconfig
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/rdma/Kconfig
/qemu/hw/rdma/meson.build
/qemu/hw/rdma/rdma_rm.c
/qemu/hw/riscv/spike.c
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/allwinner-sdhost.c
/qemu/hw/sparc64/sun4u.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/Kconfig
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/hcd-dwc2.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/redirect.c
/qemu/hw/usb/xen-usb.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/virtio/vhost-user-i2c.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio-qmp.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_pt.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/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/memop.h
/qemu/include/exec/memory.h
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/poison.h
/qemu/include/exec/target_page.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-imx6ul.h
/qemu/include/hw/arm/fsl-imx7.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/riscv_htif.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/cxl/cxl.h
/qemu/include/hw/i2c/aspeed_i2c.h
/qemu/include/hw/i386/pc.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/pci.h
/qemu/include/hw/pci/pci_bridge.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/s390x/pv.h
/qemu/include/hw/watchdog/allwinner-wdt.h
/qemu/include/io/channel.h
/qemu/include/migration/colo.h
/qemu/include/migration/misc.h
/qemu/include/migration/qemu-file-types.h
/qemu/include/monitor/hmp.h
/qemu/include/qapi/qmp/dispatch.h
/qemu/include/qemu/bitops.h
/qemu/include/qemu/cpuid.h
/qemu/include/qemu/host-utils.h
/qemu/include/qemu/int128.h
/qemu/include/qemu/main-loop.h
/qemu/include/qemu/mmap-alloc.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/rcu.h
/qemu/include/qemu/stats64.h
/qemu/include/qemu/typedefs.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-global-state.h
/qemu/include/sysemu/block-backend-io.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/qtest.h
/qemu/include/sysemu/tpm.h
/qemu/include/tcg/tcg-ldst.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/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/elfload.c
/qemu/linux-user/loongarch64/signal.c
/qemu/linux-user/main.c
/qemu/linux-user/mips/cpu_loop.c
/qemu/linux-user/ppc/signal.c
/qemu/linux-user/qemu.h
/qemu/linux-user/syscall.c
/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/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/monitor/hmp.c
/qemu/monitor/monitor.c
/qemu/nbd/server.c
meson.build
/qemu/os-posix.c
/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/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-options.hx
/qemu/qga/commands-posix.c
/qemu/qga/commands-win32.c
/qemu/qga/commands.c
/qemu/qga/qapi-schema.json
/qemu/replay/replay.c
/qemu/scripts/checkpatch.pl
/qemu/scripts/ci/setup/build-environment.yml
/qemu/scripts/ci/setup/gitlab-runner.yml
/qemu/scripts/coverity-scan/COMPONENTS.md
/qemu/scripts/coverity-scan/coverity-scan.docker
/qemu/scripts/device-crash-test
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/mtest2make.py
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/expr.py
/qemu/scripts/qapi/gen.py
/qemu/scripts/qapi/main.py
/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/update-linux-headers.sh
/qemu/scripts/vmstate-static-checker.py
/qemu/scsi/pr-manager.c
/qemu/scsi/qemu-pr-helper.c
/qemu/softmmu/dirtylimit.c
/qemu/softmmu/globals.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/storage-daemon/qapi/qapi-schema.json
/qemu/stubs/colo-compare.c
/qemu/stubs/colo.c
/qemu/stubs/meson.build
/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.c
/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/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/meson.build
/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.c
/qemu/target/arm/tcg/translate.h
/qemu/target/avr/translate.c
/qemu/target/cris/translate_v10.c.inc
/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/hppa/translate.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/sev.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/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_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/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/translate.c
/qemu/target/loongarch/translate.h
/qemu/target/m68k/translate.c
/qemu/target/mips/tcg/micromips_translate.c.inc
/qemu/target/mips/tcg/mips16e_translate.c.inc
/qemu/target/mips/tcg/mxu_translate.c
/qemu/target/mips/tcg/nanomips_translate.c.inc
/qemu/target/mips/tcg/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.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/ppc-qmp-cmds.c
/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/s390x/cpu.c
/qemu/target/s390x/gdbstub.c
/qemu/target/s390x/tcg/insn-data.h.inc
/qemu/target/s390x/tcg/translate.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/translate.c
/qemu/target/xtensa/translate.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-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/meson.build
/qemu/tcg/mips/tcg-target-con-set.h
/qemu/tcg/mips/tcg-target-con-str.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.c.inc
/qemu/tcg/ppc/tcg-target.h
/qemu/tcg/riscv/tcg-target-con-set.h
/qemu/tcg/riscv/tcg-target-con-str.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-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-internal.h
/qemu/tcg/tcg-ldst.c.inc
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg-op-ldst.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/README
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/Makefile.include
/qemu/tests/avocado/avocado_qemu/__init__.py
/qemu/tests/avocado/boot_linux_console.py
/qemu/tests/avocado/linux_ssh_mips_malta.py
/qemu/tests/avocado/machine_aarch64_sbsaref.py
/qemu/tests/avocado/machine_aspeed.py
/qemu/tests/avocado/machine_loongarch.py
/qemu/tests/avocado/migration.py
/qemu/tests/avocado/replay_kernel.py
/qemu/tests/avocado/tuxrun_baselines.py
/qemu/tests/avocado/virtio-gpu.py
/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-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/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/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/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/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/227.out
/qemu/tests/qemu-iotests/tests/iothreads-resize
/qemu/tests/qemu-iotests/tests/iothreads-resize.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/zoned
/qemu/tests/qemu-iotests/tests/zoned.out
/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/fdc-test.c
/qemu/tests/qtest/ide-test.c
/qemu/tests/qtest/libqos/virtio-9p-client.c
/qemu/tests/qtest/meson.build
/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/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/vhost-user-test.c
/qemu/tests/qtest/virtio-blk-test.c
/qemu/tests/qtest/vmgenid-test.c
/qemu/tests/requirements.txt
/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/hvx_misc.c
/qemu/tests/tcg/hexagon/hvx_misc.h
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/tcg/hppa/Makefile.target
/qemu/tests/tcg/i386/Makefile.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/ptimer-test-stubs.c
/qemu/tests/unit/test-aio-multithread.c
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-crypto-secret.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-thread-pool.c
/qemu/tests/vm/freebsd
/qemu/trace/control-target.c
/qemu/ui/console.c
/qemu/ui/ui-hmp-cmds.c
/qemu/ui/ui-qmp-cmds.c
/qemu/ui/vnc.c
/qemu/util/aio-wait.c
/qemu/util/async-teardown.c
/qemu/util/async.c
/qemu/util/main-loop.c
/qemu/util/mmap-alloc.c
/qemu/util/qemu-coroutine.c
/qemu/util/rcu.c
/qemu/util/stats64.c
/qemu/util/systemd.c
/qemu/util/thread-pool.c
/qemu/util/trace-events
0d74e2b707-Mar-2023 Eugenio Pérez <eperezma@redhat.com>

vdpa: accept VIRTIO_NET_F_SPEED_DUPLEX in SVQ

There is no reason to block it as it has nothing to do with the vrings.
All the support of the feature comes via config space.

Signed-off-by: Eugenio P

vdpa: accept VIRTIO_NET_F_SPEED_DUPLEX in SVQ

There is no reason to block it as it has nothing to do with the vrings.
All the support of the feature comes via config space.

Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Suggested-by: Alvaro Karsz <alvaro.karsz@solid-run.com>
Message-Id: <20230307170018.260557-1-eperezma@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

show more ...


/qemu/.git-blame-ignore-revs
/qemu/.gitlab-ci.d/base.yml
/qemu/.gitlab-ci.d/buildtest.yml
/qemu/.gitlab-ci.d/custom-runners/centos-stream-8-x86_64.yml
/qemu/.gitlab-ci.d/qemu-project.yml
/qemu/.gitlab-ci.d/windows.yml
/qemu/.mailmap
/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/plugin-gen.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/audio/audio_int.h
/qemu/audio/dbusaudio.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/baum.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/disas/riscv.c
/qemu/docs/about/deprecated.rst
/qemu/docs/devel/acpi-bits.rst
/qemu/docs/devel/atomics.rst
/qemu/docs/meson.build
/qemu/docs/sphinx/kerneldoc.py
/qemu/docs/system/arm/cpu-features.rst
/qemu/dump/dump.c
/qemu/dump/win_dump.c
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/meson.build
/qemu/gitdm.config
/qemu/hmp-commands.hx
/qemu/hw/arm/boot.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/palm.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/parallel.c
/qemu/hw/char/serial.c
/qemu/hw/char/xen_console.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-smp.c
/qemu/hw/core/machine.c
/qemu/hw/display/qxl-render.c
/qemu/hw/display/qxl.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/dma/etraxfs_dma.c
/qemu/hw/gpio/max7310.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/sgx.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/core.c
/qemu/hw/ide/microdrive.c
/qemu/hw/input/ads7846.c
/qemu/hw/input/ps2.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/ioapic.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/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/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/openrisc/boot.c
/qemu/hw/pci-host/gt64120.c
/qemu/hw/ppc/ppc4xx_sdram.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/rtc/m48t59.c
/qemu/hw/rtc/twl92230.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/sd/sd.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/usb/imx-usb-phy.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/igd.c
/qemu/hw/vfio/migration.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/wdt_ib700.c
/qemu/hw/xenpv/xen_machine_pv.c
/qemu/include/block/block-io.h
/qemu/include/block/block_int-common.h
/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/cpu-defs.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/memory.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/block/flash.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/ide/internal.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/plugin-event.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/qtree.h
/qemu/include/qemu/sockets.h
/qemu/include/qemu/uri.h
/qemu/include/sysemu/block-backend-io.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/include/user/syscall-trace.h
/qemu/io/channel-tls.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/multifd.c
/qemu/migration/postcopy-ram.c
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/target.c
/qemu/migration/xbzrle.c
/qemu/monitor/fds.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/qmp-cmds.c
/qemu/nbd/server.c
vhost-vdpa.c
/qemu/pc-bios/README
/qemu/pc-bios/bios-256k.bin
/qemu/pc-bios/bios-microvm.bin
/qemu/pc-bios/bios.bin
/qemu/pc-bios/edk2-aarch64-code.fd.bz2
/qemu/pc-bios/edk2-arm-code.fd.bz2
/qemu/pc-bios/edk2-i386-code.fd.bz2
/qemu/pc-bios/edk2-i386-secure-code.fd.bz2
/qemu/pc-bios/edk2-riscv.fd.bz2
/qemu/pc-bios/edk2-x86_64-code.fd.bz2
/qemu/pc-bios/edk2-x86_64-microvm.fd.bz2
/qemu/pc-bios/edk2-x86_64-secure-code.fd.bz2
/qemu/pc-bios/optionrom/optionrom.h
/qemu/pc-bios/vgabios-ati.bin
/qemu/pc-bios/vgabios-bochs-display.bin
/qemu/pc-bios/vgabios-cirrus.bin
/qemu/pc-bios/vgabios-qxl.bin
/qemu/pc-bios/vgabios-ramfb.bin
/qemu/pc-bios/vgabios-stdvga.bin
/qemu/pc-bios/vgabios-virtio.bin
/qemu/pc-bios/vgabios-vmware.bin
/qemu/pc-bios/vgabios.bin
/qemu/plugins/core.c
/qemu/qapi/misc.json
/qemu/qapi/ui.json
/qemu/qemu-options.hx
/qemu/qga/vss-win32/install.cpp
/qemu/roms/Makefile
/qemu/roms/edk2
/qemu/roms/edk2-build.config
/qemu/roms/edk2-build.py
/qemu/roms/seabios
/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/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/vl.c
/qemu/softmmu/watchpoint.c
/qemu/target/alpha/cpu-param.h
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/internals.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/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/cpu-param.h
/qemu/target/hppa/cpu-param.h
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu-param.h
/qemu/target/i386/cpu.c
/qemu/target/i386/host-cpu.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/kvm/xen-emu.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/whpx-apic.c
/qemu/target/loongarch/cpu-param.h
/qemu/target/loongarch/translate.c
/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/cpu.c
/qemu/target/mips/tcg/micromips_translate.c.inc
/qemu/target/mips/tcg/msa_translate.c
/qemu/target/mips/tcg/mxu_translate.c
/qemu/target/mips/tcg/nanomips_translate.c.inc
/qemu/target/mips/tcg/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/excp_helper.c
/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/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/s390x-internal.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/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/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/mips/tcg-target.h
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/region.c
/qemu/tcg/sparc64/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/avocado_qemu/__init__.py
/qemu/tests/avocado/kvm_xen_guest.py
/qemu/tests/avocado/machine_aarch64_virt.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/data/acpi/virt/SRAT.acpihmatvirt
/qemu/tests/data/acpi/virt/SSDT.memhp
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/docker.py
/qemu/tests/docker/dockerfiles/debian-hexagon-cross.docker
/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/libqtest.c
/qemu/tests/qtest/libqtest.h
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/vnc-display-test.c
/qemu/tests/tcg/Makefile.target
/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/chrl.c
/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/meson.build
/qemu/tests/unit/test-blockjob.c
/qemu/tests/unit/test-io-channel-command.c
/qemu/tests/unit/test-qtree.c
/qemu/tests/unit/test-rcu-list.c
/qemu/tests/vm/netbsd
/qemu/tests/vm/openbsd
/qemu/ui/cocoa.m
/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/gtk.c
/qemu/ui/keycodemapdb
/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/bitops.c
/qemu/util/envlist.c
/qemu/util/error.c
/qemu/util/fdmon-epoll.c
/qemu/util/meson.build
/qemu/util/oslib-win32.c
/qemu/util/qtree.c
/qemu/util/vhost-user-server.c
25657fc621-Feb-2023 Marc-André Lureau <marcandre.lureau@redhat.com>

win32: replace closesocket() with close() wrapper

Use a close() wrapper instead, so that we don't need to worry about
closesocket() vs close() anymore, let's hope.

Signed-off-by: Marc-André Lureau

win32: replace closesocket() with close() wrapper

Use a close() wrapper instead, so that we don't need to worry about
closesocket() vs close() anymore, let's hope.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
Message-Id: <20230221124802.4103554-17-marcandre.lureau@redhat.com>

show more ...

fd3c333321-Feb-2023 Marc-André Lureau <marcandre.lureau@redhat.com>

slirp: open-code qemu_socket_(un)select()

We are about to make the QEMU socket API use file-descriptor space only,
but libslirp gives us SOCKET as fd, still.

Signed-off-by: Marc-André Lureau <marca

slirp: open-code qemu_socket_(un)select()

We are about to make the QEMU socket API use file-descriptor space only,
but libslirp gives us SOCKET as fd, still.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
Message-Id: <20230221124802.4103554-14-marcandre.lureau@redhat.com>

show more ...

21ac728421-Feb-2023 Marc-André Lureau <marcandre.lureau@redhat.com>

slirp: unregister the win32 SOCKET

Presumably, this is what should happen when the SOCKET is to be removed.
(it probably worked until now because closesocket() does it implicitly,
but we never now h

slirp: unregister the win32 SOCKET

Presumably, this is what should happen when the SOCKET is to be removed.
(it probably worked until now because closesocket() does it implicitly,
but we never now how the slirp library could use the SOCKET later)

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
Message-Id: <20230221124802.4103554-13-marcandre.lureau@redhat.com>

show more ...

faa4ec1621-Feb-2023 Marc-André Lureau <marcandre.lureau@redhat.com>

main-loop: remove qemu_fd_register(), win32/slirp/socket specific

Open-code the socket registration where it's needed, to avoid
artificially used or unclear generic interface.

Furthermore, the foll

main-loop: remove qemu_fd_register(), win32/slirp/socket specific

Open-code the socket registration where it's needed, to avoid
artificially used or unclear generic interface.

Furthermore, the following patches are going to make socket handling use
FD-only inside QEMU, but we need to handle win32 SOCKET from libslirp.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
Message-Id: <20230221124802.4103554-12-marcandre.lureau@redhat.com>

show more ...

65f474bb23-Feb-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

net/eth: Introduce EthL4HdrProto

igb, a new network device emulation, will need SCTP checksum offloading.
Currently eth_get_protocols() has a bool parameter for each protocol
currently it supports,

net/eth: Introduce EthL4HdrProto

igb, a new network device emulation, will need SCTP checksum offloading.
Currently eth_get_protocols() has a bool parameter for each protocol
currently it supports, but there will be a bit too many parameters if
we add yet another protocol.

Introduce an enum type, EthL4HdrProto to represent all L4 protocols
eth_get_protocols() support with one parameter.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>

show more ...

69ff5ef823-Feb-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

net/eth: Report if headers are actually present

The values returned by eth_get_protocols() are used to perform RSS,
checksumming and segmentation. Even when a packet signals the use of the
protocols

net/eth: Report if headers are actually present

The values returned by eth_get_protocols() are used to perform RSS,
checksumming and segmentation. Even when a packet signals the use of the
protocols which these operations can be applied to, the headers for them
may not be present because of too short packet or fragmentation, for
example. In such a case, the operations cannot be applied safely.

Report the presence of headers instead of whether the use of the
protocols are indicated with eth_get_protocols(). This also makes
corresponding changes to the callers of eth_get_protocols() to match
with its new signature and to remove redundant checks for fragmentation.

Fixes: 75020a7021 ("Common definitions for VMWARE devices")
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>

show more ...

02ef5fdc23-Feb-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

hw/net/net_tx_pkt: Implement TCP segmentation

There was no proper implementation of TCP segmentation before this
change, and net_tx_pkt relied solely on IPv4 fragmentation. Not only
this is not alig

hw/net/net_tx_pkt: Implement TCP segmentation

There was no proper implementation of TCP segmentation before this
change, and net_tx_pkt relied solely on IPv4 fragmentation. Not only
this is not aligned with the specification, but it also resulted in
corrupted IPv6 packets.

This is particularly problematic for the igb, a new proposed device
implementation; igb provides loopback feature for VMDq and the feature
relies on software segmentation.

Implement proper TCP segmentation in net_tx_pkt to fix such a scenario.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>

show more ...

481c523223-Feb-2023 Akihiko Odaki <akihiko.odaki@daynix.com>

net: Strip virtio-net header when dumping

filter-dump specifiees Ethernet as PCAP LinkType, which does not expect
virtio-net header. Having virtio-net header in such PCAP file breaks
PCAP unconsumab

net: Strip virtio-net header when dumping

filter-dump specifiees Ethernet as PCAP LinkType, which does not expect
virtio-net header. Having virtio-net header in such PCAP file breaks
PCAP unconsumable. Unfortunately currently there is no LinkType for
virtio-net so for now strip virtio-net header to convert the output to
Ethernet.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Signed-off-by: Jason Wang <jasowang@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/opensbi.yml
/qemu/.gitlab-ci.d/opensbi/Dockerfile
/qemu/.gitlab-ci.d/static_checks.yml
/qemu/.gitlab-ci.d/windows.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/kvm/kvm-accel-ops.c
/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/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/block/vvfat.c
/qemu/bsd-user/freebsd/os-sys.c
/qemu/bsd-user/freebsd/os-syscall.c
/qemu/bsd-user/main.c
/qemu/bsd-user/qemu.h
/qemu/bsd-user/signal.c
/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/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/contrib/gitdm/filetypes.txt
/qemu/cpu.c
/qemu/cpus-common.c
/qemu/disas/riscv.c
/qemu/docs/about/build-platforms.rst
/qemu/docs/about/deprecated.rst
/qemu/docs/about/removed-features.rst
/qemu/docs/conf.py
/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/atomics.rst
/qemu/docs/devel/fuzzing.rst
/qemu/docs/devel/kconfig.rst
/qemu/docs/devel/qapi-code-gen.rst
/qemu/docs/devel/tcg-ops.rst
/qemu/docs/devel/testing.rst
/qemu/docs/devel/vfio-migration.rst
/qemu/docs/interop/vhost-user.rst
/qemu/docs/meson.build
/qemu/docs/system/arm/aspeed.rst
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/i386/xen.rst
/qemu/docs/system/loongarch/virt.rst
/qemu/docs/system/target-i386.rst
/qemu/docs/system/target-mips.rst
/qemu/docs/tools/index.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/gdb-xml/microblaze-core.xml
/qemu/gdb-xml/microblaze-stack-protect.xml
/qemu/gdbstub/gdbstub.c
/qemu/gdbstub/internals.h
/qemu/gdbstub/meson.build
/qemu/gdbstub/softmmu.c
/qemu/gdbstub/syscalls.c
/qemu/gdbstub/trace-events
/qemu/gdbstub/user-target.c
/qemu/gdbstub/user.c
/qemu/hmp-commands.hx
/qemu/hw/9pfs/meson.build
/qemu/hw/9pfs/xen-9p-backend.c
/qemu/hw/Kconfig
/qemu/hw/acpi/acpi-stub.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/ich9_tco.c
/qemu/hw/acpi/vmgenid.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/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/npcm7xx.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmuv3-internal.h
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/virt.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/audio/trace-events
/qemu/hw/audio/via-ac97.c
/qemu/hw/block/block.c
/qemu/hw/block/dataplane/meson.build
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/fdc-isa.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/meson.build
/qemu/hw/block/xen-block.c
/qemu/hw/char/meson.build
/qemu/hw/char/pl011.c
/qemu/hw/char/xen_console.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/nmi.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/meson.build
/qemu/hw/display/sm501.c
/qemu/hw/display/xenfb.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/kvm/xenstore_impl.c
/qemu/hw/i386/kvm/xenstore_impl.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-mapcache.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/i8259_common.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/ioapic_common.c
/qemu/hw/intc/ioapic_internal.h
/qemu/hw/intc/mips_gic.c
/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/trace-events
/qemu/hw/isa/vt82c686.c
/qemu/hw/loongarch/acpi-build.c
/qemu/hw/loongarch/virt.c
/qemu/hw/mem/cxl_type3.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/microblaze/petalogix_s3adsp1800_mmu.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/cps.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/malta.c
/qemu/hw/misc/edu.c
/qemu/hw/misc/i2c-echo.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/mips_cmgcr.c
/qemu/hw/misc/mips_itu.c
/qemu/hw/misc/xlnx-zynqmp-apu-ctrl.c
/qemu/hw/net/e1000.c
/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/fsl_etsec/etsec.c
/qemu/hw/net/fsl_etsec/etsec.h
/qemu/hw/net/fsl_etsec/miim.c
/qemu/hw/net/net_tx_pkt.c
/qemu/hw/net/net_tx_pkt.h
/qemu/hw/net/rocker/qmp-norocker.c
/qemu/hw/net/trace-events
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/net/xen_nic.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/mv64361.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/pegasos2.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/meson.build
/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-acpi-build.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/m48t59-isa.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/viosrp.h
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/sensor/dps310.c
/qemu/hw/sh4/r2d.c
/qemu/hw/sh4/sh7750_regs.h
/qemu/hw/smbios/smbios-stub.c
/qemu/hw/smbios/smbios.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/meson.build
/qemu/hw/ssi/npcm_pspi.c
/qemu/hw/ssi/trace-events
/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/meson.build
/qemu/hw/usb/trace-events
/qemu/hw/usb/u2f.h
/qemu/hw/usb/vt82c686-uhci-pci.c
/qemu/hw/usb/xen-usb.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/trace-events
/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/meson.build
/qemu/hw/xen/trace-events
/qemu/hw/xen/xen-bus-helper.c
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xen/xen-operations.c
/qemu/hw/xen/xen_devconfig.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_graphics.c
/qemu/hw/xen/xen_pt_msi.c
/qemu/hw/xen/xen_pt_stub.c
/qemu/hw/xen/xen_pvdev.c
/qemu/hw/xenpv/xen_machine_pv.c
/qemu/include/block/aio-wait.h
/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/block/nvme.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/gdbstub.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/target_long.h
/qemu/include/exec/tb-flush.h
/qemu/include/exec/translator.h
/qemu/include/gdbstub/helpers.h
/qemu/include/gdbstub/syscalls.h
/qemu/include/gdbstub/user.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/npcm7xx.h
/qemu/include/hw/arm/raspi_platform.h
/qemu/include/hw/arm/smmu-common.h
/qemu/include/hw/arm/smmuv3.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/armv7m_nvic.h
/qemu/include/hw/intc/i8259.h
/qemu/include/hw/intc/ioapic.h
/qemu/include/hw/intc/mips_gic.h
/qemu/include/hw/isa/i8259_internal.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/isa/superio.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/loader.h
/qemu/include/hw/loongarch/virt.h
/qemu/include/hw/misc/mips_cmgcr.h
/qemu/include/hw/misc/mips_itu.h
/qemu/include/hw/net/mii.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/riscv/virt.h
/qemu/include/hw/rtc/mc146818rtc.h
/qemu/include/hw/s390x/pv.h
/qemu/include/hw/southbridge/ich9.h
/qemu/include/hw/ssi/ibex_spi_host.h
/qemu/include/hw/ssi/npcm_pspi.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/tricore/tricore_testdevice.h
/qemu/include/hw/vfio/vfio-common.h
/qemu/include/hw/virtio/vhost-user-gpio.h
/qemu/include/hw/virtio/virtio-scsi.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-bus-helper.h
/qemu/include/hw/xen/xen-bus.h
/qemu/include/hw/xen/xen-legacy-backend.h
/qemu/include/hw/xen/xen.h
/qemu/include/hw/xen/xen_backend_ops.h
/qemu/include/hw/xen/xen_native.h
/qemu/include/hw/xen/xen_pvdev.h
/qemu/include/monitor/hmp.h
/qemu/include/net/net.h
/qemu/include/qapi/qmp/qerror.h
/qemu/include/qemu/atomic.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/cpuid.h
/qemu/include/qemu/hbitmap.h
/qemu/include/qemu/thread.h
/qemu/include/qemu/typedefs.h
/qemu/include/qemu/uri.h
/qemu/include/qemu/uuid.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/accel-ops.h
/qemu/include/sysemu/block-backend-global-state.h
/qemu/include/sysemu/block-backend-io.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/os-win32.h
/qemu/include/sysemu/replay.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg.h
/qemu/iothread.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/exit.c
/qemu/linux-user/main.c
/qemu/linux-user/microblaze/cpu_loop.c
/qemu/linux-user/signal.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/colo-failover.c
/qemu/migration/colo.c
/qemu/migration/exec.c
/qemu/migration/migration-hmp-cmds.c
/qemu/monitor/hmp.c
dump.c
net.c
tap.c
/qemu/pc-bios/keymaps/meson.build
/qemu/pc-bios/openbios-ppc
/qemu/pc-bios/openbios-sparc32
/qemu/pc-bios/openbios-sparc64
/qemu/pc-bios/opensbi-riscv32-generic-fw_dynamic.bin
/qemu/pc-bios/opensbi-riscv64-generic-fw_dynamic.bin
/qemu/pc-bios/s390-ccw.img
/qemu/pc-bios/s390-ccw/bootmap.c
/qemu/pc-bios/s390-ccw/bootmap.h
/qemu/plugins/core.c
/qemu/plugins/loader.c
/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/machine.json
/qemu/qapi/misc-target.json
/qemu/qemu-img.c
/qemu/qemu-keymap.c
/qemu/qemu-options.hx
/qemu/qga/commands.c
/qemu/qga/main.c
/qemu/qom/object_interfaces.c
/qemu/replay/replay.c
/qemu/replay/stubs-system.c
/qemu/roms/openbios
/qemu/roms/opensbi
/qemu/scripts/block-coroutine-wrapper.py
/qemu/scripts/checkpatch.pl
/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/make-config-poison.sh
/qemu/scripts/meson-buildoptions.sh
/qemu/scripts/probe-gdb-support.py
/qemu/scripts/qapi/.flake8
/qemu/scripts/qapi/expr.py
/qemu/scripts/qapi/parser.py
/qemu/scripts/qapi/pylintrc
/qemu/scripts/qapi/schema.py
/qemu/scripts/tracetool/__init__.py
/qemu/semihosting/arm-compat-semi.c
/qemu/semihosting/guestfd.c
/qemu/semihosting/syscalls.c
/qemu/semihosting/uaccess.c
/qemu/softmmu/dma-helpers.c
/qemu/softmmu/globals.c
/qemu/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/qtest.c
/qemu/softmmu/rtc.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/softmmu/watchpoint.c
/qemu/stubs/meson.build
/qemu/stubs/replay.c
/qemu/stubs/semihost-all.c
/qemu/stubs/semihost.c
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/target/alpha/cpu.h
/qemu/target/alpha/gdbstub.c
/qemu/target/alpha/sys_helper.c
/qemu/target/alpha/translate.c
/qemu/target/arm/arm-powerctl.c
/qemu/target/arm/arm-qmp-cmds.c
/qemu/target/arm/cpregs.h
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu_tcg.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/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/gdbstub.c
/qemu/target/avr/translate.c
/qemu/target/cris/cpu.h
/qemu/target/cris/gdbstub.c
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hexagon/README
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/gdbstub.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/gdbstub.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/gdbstub.c
/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/monitor.c
/qemu/target/i386/sev-sysemu-stub.c
/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/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/gdbstub.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/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/gdbstub.c
/qemu/target/m68k/helper.c
/qemu/target/m68k/m68k-semi.c
/qemu/target/m68k/translate.c
/qemu/target/microblaze/cpu.c
/qemu/target/microblaze/cpu.h
/qemu/target/microblaze/gdbstub.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/cpu-defs.c.inc
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/gdbstub.c
/qemu/target/mips/sysemu/physaddr.c
/qemu/target/mips/tcg/exception.c
/qemu/target/mips/tcg/ldst_helper.c
/qemu/target/mips/tcg/mips16e_translate.c.inc
/qemu/target/mips/tcg/msa_helper.c
/qemu/target/mips/tcg/nanomips_translate.c.inc
/qemu/target/mips/tcg/sysemu/mips-semi.c
/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.c
/qemu/target/nios2/cpu.h
/qemu/target/nios2/nios2-semi.c
/qemu/target/nios2/translate.c
/qemu/target/openrisc/cpu.c
/qemu/target/openrisc/cpu.h
/qemu/target/openrisc/gdbstub.c
/qemu/target/openrisc/interrupt.c
/qemu/target/openrisc/mmu.c
/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/gdbstub.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/helper.h
/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_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/gdbstub.c
/qemu/target/rx/helper.c
/qemu/target/rx/translate.c
/qemu/target/s390x/arch_dump.c
/qemu/target/s390x/gdbstub.c
/qemu/target/s390x/helper.c
/qemu/target/s390x/tcg/mem_helper.c
/qemu/target/s390x/tcg/translate.c
/qemu/target/s390x/tcg/translate_vx.c.inc
/qemu/target/sh4/cpu.c
/qemu/target/sh4/cpu.h
/qemu/target/sh4/gdbstub.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/gdbstub.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/translate.c
/qemu/target/tricore/cpu.c
/qemu/target/tricore/cpu.h
/qemu/target/tricore/gdbstub.c
/qemu/target/tricore/translate.c
/qemu/target/xtensa/core-dc232b.c
/qemu/target/xtensa/core-dc233c.c
/qemu/target/xtensa/core-de212.c
/qemu/target/xtensa/core-de233_fpu.c
/qemu/target/xtensa/core-dsp3400.c
/qemu/target/xtensa/core-fsf.c
/qemu/target/xtensa/core-lx106.c
/qemu/target/xtensa/core-sample_controller.c
/qemu/target/xtensa/core-test_kc705_be.c
/qemu/target/xtensa/core-test_mmuhifi_c3.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/cpu.h
/qemu/target/xtensa/gdbstub.c
/qemu/target/xtensa/helper.c
/qemu/target/xtensa/import_core.sh
/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/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/machine_aspeed.py
/qemu/tests/avocado/replay_kernel.py
/qemu/tests/avocado/reverse_debugging.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/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test
/qemu/tests/qtest/arm-cpu-features.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/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/aarch64/Makefile.target
/qemu/tests/tcg/i386/test-i386-bmi2.c
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/system/Makefile.softmmu-target
/qemu/tests/tcg/s390x/Makefile.softmmu-target
/qemu/tests/tcg/s390x/Makefile.target
/qemu/tests/tcg/s390x/bal.S
/qemu/tests/tcg/s390x/sam.S
/qemu/tests/tcg/tricore/Makefile.softmmu-target
/qemu/tests/tcg/tricore/macros.h
/qemu/tests/tcg/x86_64/Makefile.target
/qemu/tests/tcg/x86_64/adox.c
/qemu/tests/unit/meson.build
/qemu/tests/unit/ptimer-test-stubs.c
/qemu/tests/unit/rcutorture.c
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-block-iothread.c
/qemu/tests/unit/test-io-channel-command.c
/qemu/tests/unit/test-rcu-list.c
/qemu/tests/unit/test-vmstate.c
/qemu/tests/unit/test-xs-node.c
/qemu/tools/meson.build
/qemu/trace/meson.build
/qemu/ui/cocoa.m
/qemu/util/async.c
/qemu/util/bufferiszero.c
/qemu/util/cacheflush.c
/qemu/util/guest-random.c
/qemu/util/hbitmap.c
/qemu/util/log.c
/qemu/util/qemu-config.c
/qemu/util/qemu-coroutine-lock.c
/qemu/util/qemu-thread-posix.c
/qemu/util/qemu-thread-win32.c
/qemu/util/uri.c

12345678910>>...43