History log of /qemu/qga/ (Results 176 – 200 of 626)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
86dc17d426-Oct-2020 AlexChen <alex.chen@huawei.com>

qga: Switch and case should be at the same indent

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: AlexChen <alex.chen@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@re

qga: Switch and case should be at the same indent

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: AlexChen <alex.chen@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

aaaed19926-Oct-2020 AlexChen <alex.chen@huawei.com>

qga: Open brace '{' following struct go on the same

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: AlexChen <alex.chen@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@

qga: Open brace '{' following struct go on the same

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: AlexChen <alex.chen@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

55b53dab26-Oct-2020 AlexChen <alex.chen@huawei.com>

qga: Delete redundant spaces

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: AlexChen <alex.chen@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-

qga: Delete redundant spaces

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: AlexChen <alex.chen@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

0697e9ed26-Oct-2020 AlexChen <alex.chen@huawei.com>

qga: Add spaces around operator

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: AlexChen <alex.chen@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
*fix 80+

qga: Add spaces around operator

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: AlexChen <alex.chen@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
*fix 80+ char violation while we're here
*fix w32 build breakage from changing INVALID_SET_FILE_POINTER
definition from a cast to a subtraction
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

27e7de3c24-Feb-2021 Lin Ma <lma@suse.com>

qga: Correct loop count in qmp_guest_get_vcpus()

The guest-get-vcpus returns incorrect vcpu info in case we hotunplug vcpus(not
the last one).
e.g.:
A VM has 4 VCPUs: cpu0 + 3 hotunpluggable online

qga: Correct loop count in qmp_guest_get_vcpus()

The guest-get-vcpus returns incorrect vcpu info in case we hotunplug vcpus(not
the last one).
e.g.:
A VM has 4 VCPUs: cpu0 + 3 hotunpluggable online vcpus(cpu1, cpu2 and cpu3).
Hotunplug cpu2, Now only cpu0, cpu1 and cpu3 are present & online.

./qmp-shell /tmp/qmp-monitor.sock
(QEMU) query-hotpluggable-cpus
{"return": [
{"props": {"core-id": 0, "thread-id": 0, "socket-id": 3}, "vcpus-count": 1,
"qom-path": "/machine/peripheral/cpu3", "type": "host-x86_64-cpu"},
{"props": {"core-id": 0, "thread-id": 0, "socket-id": 2}, "vcpus-count": 1,
"qom-path": "/machine/peripheral/cpu2", "type": "host-x86_64-cpu"},
{"props": {"core-id": 0, "thread-id": 0, "socket-id": 1}, "vcpus-count": 1,
"qom-path": "/machine/peripheral/cpu1", "type": "host-x86_64-cpu"},
{"props": {"core-id": 0, "thread-id": 0, "socket-id": 0}, "vcpus-count": 1,
"qom-path": "/machine/unattached/device[0]", "type": "host-x86_64-cpu"}
]}

(QEMU) device_del id=cpu2
{"return": {}}

(QEMU) query-hotpluggable-cpus
{"return": [
{"props": {"core-id": 0, "thread-id": 0, "socket-id": 3}, "vcpus-count": 1,
"qom-path": "/machine/peripheral/cpu3", "type": "host-x86_64-cpu"},
{"props": {"core-id": 0, "thread-id": 0, "socket-id": 2}, "vcpus-count": 1,
"type": "host-x86_64-cpu"},
{"props": {"core-id": 0, "thread-id": 0, "socket-id": 1}, "vcpus-count": 1,
"qom-path": "/machine/peripheral/cpu1", "type": "host-x86_64-cpu"},
{"props": {"core-id": 0, "thread-id": 0, "socket-id": 0}, "vcpus-count": 1,
"qom-path": "/machine/unattached/device[0]", "type": "host-x86_64-cpu"}
]}

Before:
./qmp-shell -N /tmp/qmp-ga.sock
Welcome to the QMP low-level shell!
Connected
(QEMU) guest-get-vcpus
{"return": [
{"online": true, "can-offline": false, "logical-id": 0},
{"online": true, "can-offline": true, "logical-id": 1}]}

After:
./qmp-shell -N /tmp/qmp-ga.sock
Welcome to the QMP low-level shell!
Connected
(QEMU) guest-get-vcpus
{"return": [
{"online": true, "can-offline": false, "logical-id": 0},
{"online": true, "can-offline": true, "logical-id": 1},
{"online": true, "can-offline": true, "logical-id": 3}]}

Signed-off-by: Lin Ma <lma@suse.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
*fix build breakage by using PRId64 for sscanf
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...


/qemu/.editorconfig
/qemu/.gitlab-ci.d/edk2.yml
/qemu/.gitlab-ci.d/opensbi.yml
/qemu/.gitlab-ci.yml
/qemu/Kconfig
/qemu/MAINTAINERS
/qemu/README.rst
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/tcg-accel-ops-mttcg.c
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-accel-ops.h
/qemu/accel/tcg/tcg-runtime.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/xen/xen-all.c
/qemu/audio/audio.c
/qemu/backends/dbus-vmstate.c
/qemu/block.c
/qemu/block/backup-top.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/dirty-bitmap.c
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/meson.build
/qemu/block/mirror.c
/qemu/block/parallels-ext.c
/qemu/block/parallels.c
/qemu/block/parallels.h
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/qed.c
/qemu/block/quorum.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/configure
/qemu/default-configs/devices/lm32-softmmu.mak
/qemu/default-configs/devices/tricore-softmmu.mak
/qemu/disas/nanomips.cpp
/qemu/docs/devel/clocks.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/qgraph.rst
/qemu/docs/devel/qtest.rst
/qemu/docs/interop/parallels.txt
/qemu/docs/system/arm/aspeed.rst
/qemu/docs/system/arm/mps2.rst
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/arm/xlnx-versal-virt.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/generic-loader.rst
/qemu/docs/system/guest-loader.rst
/qemu/docs/system/index.rst
/qemu/docs/system/ppc/embedded.rst
/qemu/docs/system/ppc/powermac.rst
/qemu/docs/system/ppc/powernv.rst
/qemu/docs/system/ppc/prep.rst
/qemu/docs/system/ppc/pseries.rst
/qemu/docs/system/quickstart.rst
/qemu/docs/system/removed-features.rst
/qemu/docs/system/target-ppc.rst
/qemu/docs/system/targets.rst
/qemu/docs/tools/qemu-storage-daemon.rst
/qemu/gdbstub.c
/qemu/hw/9pfs/9p.c
/qemu/hw/Kconfig
/qemu/hw/adc/npcm7xx_adc.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/armsse.c
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/mainstone.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmu-internal.h
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/trace-events
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/arm/z2.c
/qemu/hw/avr/arduino.c
/qemu/hw/block/Kconfig
/qemu/hw/block/meson.build
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/nvme-ns.h
/qemu/hw/block/nvme-subsys.c
/qemu/hw/block/nvme-subsys.h
/qemu/hw/block/nvme.c
/qemu/hw/block/nvme.h
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/tc58128.c
/qemu/hw/block/trace-events
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/char/Kconfig
/qemu/hw/char/cadence_uart.c
/qemu/hw/char/ibex_uart.c
/qemu/hw/char/meson.build
/qemu/hw/char/pl011.c
/qemu/hw/core/clock.c
/qemu/hw/core/guest-loader.c
/qemu/hw/core/guest-loader.h
/qemu/hw/core/machine.c
/qemu/hw/core/meson.build
/qemu/hw/core/qdev-clock.c
/qemu/hw/display/pl110.c
/qemu/hw/display/pl110_template.h
/qemu/hw/display/pxa2xx_lcd.c
/qemu/hw/display/qxl.c
/qemu/hw/display/sm501.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-3d.c
/qemu/hw/dma/Kconfig
/qemu/hw/dma/meson.build
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/dma/xlnx_csu_dma.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/kvm/i8254.c
/qemu/hw/i386/kvmvapic.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/ide/core.c
/qemu/hw/intc/Kconfig
/qemu/hw/intc/arm_gicv3_its_kvm.c
/qemu/hw/intc/arm_gicv3_kvm.c
/qemu/hw/intc/meson.build
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/isa/Kconfig
/qemu/hw/lm32/Kconfig
/qemu/hw/lm32/meson.build
/qemu/hw/m68k/q800.c
/qemu/hw/meson.build
/qemu/hw/mips/cps.c
/qemu/hw/mips/gt64xxx_pci.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/malta.c
/qemu/hw/mips/trace-events
/qemu/hw/misc/Kconfig
/qemu/hw/misc/armsse-cpu-pwrctrl.c
/qemu/hw/misc/aspeed_lpc.c
/qemu/hw/misc/bcm2835_cprman.c
/qemu/hw/misc/iotkit-secctl.c
/qemu/hw/misc/iotkit-sysctl.c
/qemu/hw/misc/iotkit-sysinfo.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/led.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/mps2-fpgaio.c
/qemu/hw/misc/mps2-scc.c
/qemu/hw/misc/npcm7xx_clk.c
/qemu/hw/misc/npcm7xx_mft.c
/qemu/hw/misc/npcm7xx_pwm.c
/qemu/hw/misc/trace-events
/qemu/hw/misc/xlnx-versal-xramc.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/net/allwinner-sun8i-emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/msf2-emac.c
/qemu/hw/net/net_tx_pkt.c
/qemu/hw/net/pcnet.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/sungem.c
/qemu/hw/net/xen_nic.c
/qemu/hw/nvram/spapr_nvram.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/meson.build
/qemu/hw/pci-host/sh_pci.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/ppc_booke.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_caps.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_pci_vfio.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/ppc/trace-events
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/rdma/vmw/pvrdma.h
/qemu/hw/rdma/vmw/pvrdma_cmd.c
/qemu/hw/rdma/vmw/pvrdma_dev_ring.c
/qemu/hw/rdma/vmw/pvrdma_dev_ring.h
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rx/rx62n.c
/qemu/hw/s390x/tod-kvm.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/trace-events
/qemu/hw/sh4/Kconfig
/qemu/hw/sh4/meson.build
/qemu/hw/sh4/sh7750_regs.h
/qemu/hw/sparc/sun4m.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/timer/Kconfig
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/timer/meson.build
/qemu/hw/timer/npcm7xx_timer.c
/qemu/hw/timer/renesas_tmr.c
/qemu/hw/timer/sse-counter.c
/qemu/hw/timer/sse-timer.c
/qemu/hw/timer/trace-events
/qemu/hw/tricore/Kconfig
/qemu/hw/tricore/meson.build
/qemu/hw/tricore/tc27x_soc.c
/qemu/hw/tricore/triboard.c
/qemu/hw/usb/Kconfig
/qemu/hw/usb/bus.c
/qemu/hw/usb/ccid-card-emulated.c
/qemu/hw/usb/dev-audio.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-storage-bot.c
/qemu/hw/usb/dev-storage-classic.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-uhci.h
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/meson.build
/qemu/hw/usb/redirect.c
/qemu/hw/usb/u2f.c
/qemu/hw/usb/vt82c686-uhci-pci.c
/qemu/hw/vfio/migration.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-net-pci.c
/qemu/hw/virtio/virtio-rng.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/include/block/blockjob.h
/qemu/include/block/dirty-bitmap.h
/qemu/include/block/nvme.h
/qemu/include/elf.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/memory.h
/qemu/include/exec/poison.h
/qemu/include/exec/tb-lookup.h
/qemu/include/hw/arm/armsse-version.h
/qemu/include/hw/arm/armsse.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/boards.h
/qemu/include/hw/clock.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/dma/xlnx_csu_dma.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/misc/armsse-cpu-pwrctrl.h
/qemu/include/hw/misc/aspeed_lpc.h
/qemu/include/hw/misc/iotkit-secctl.h
/qemu/include/hw/misc/iotkit-sysctl.h
/qemu/include/hw/misc/iotkit-sysinfo.h
/qemu/include/hw/misc/led.h
/qemu/include/hw/misc/mps2-fpgaio.h
/qemu/include/hw/misc/npcm7xx_mft.h
/qemu/include/hw/misc/npcm7xx_pwm.h
/qemu/include/hw/misc/xlnx-versal-xramc.h
/qemu/include/hw/ppc/pnv_xscom.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_drc.h
/qemu/include/hw/qdev-clock.h
/qemu/include/hw/riscv/virt.h
/qemu/include/hw/s390x/css.h
/qemu/include/hw/scsi/esp.h
/qemu/include/hw/sh4/sh.h
/qemu/include/hw/ssi/xilinx_spips.h
/qemu/include/hw/timer/sse-counter.h
/qemu/include/hw/timer/sse-timer.h
/qemu/include/hw/tricore/tc27x_soc.h
/qemu/include/hw/tricore/triboard.h
/qemu/include/hw/usb.h
/qemu/include/hw/usb/msd.h
/qemu/include/hw/virtio/virtio-blk.h
/qemu/include/net/net.h
/qemu/include/net/queue.h
/qemu/include/qapi/hmp-output-visitor.h
/qemu/include/qemu-common.h
/qemu/include/qemu/id.h
/qemu/include/qemu/timer.h
/qemu/include/semihosting/console.h
/qemu/include/semihosting/semihost.h
/qemu/include/sysemu/device_tree.h
/qemu/include/sysemu/dma.h
/qemu/include/sysemu/runstate.h
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/elfload.c
/qemu/linux-user/main.c
/qemu/linux-user/riscv/cpu_loop.c
/qemu/linux-user/semihost.c
/qemu/linux-user/sh4/signal.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/meson.build
/qemu/nbd/server.c
/qemu/net/l2tpv3.c
/qemu/net/net.c
/qemu/net/netmap.c
/qemu/net/queue.c
/qemu/net/slirp.c
/qemu/net/socket.c
/qemu/net/tap-win32.c
/qemu/net/tap.c
/qemu/net/vde.c
/qemu/net/vhost-user.c
/qemu/net/vhost-vdpa.c
/qemu/pc-bios/README
/qemu/pc-bios/slof.bin
/qemu/qapi/hmp-output-visitor.c
/qemu/qapi/meson.build
/qemu/qapi/net.json
/qemu/qemu-options.hx
commands-posix.c
/qemu/roms/SLOF
/qemu/scripts/ci/gitlab-pipeline-status
/qemu/scripts/mtest2make.py
/qemu/scripts/qemu-binfmt-conf.sh
/qemu/scripts/tracetool/__init__.py
/qemu/scripts/update-linux-headers.sh
/qemu/semihosting/Kconfig
/qemu/semihosting/arm-compat-semi.c
/qemu/semihosting/common-semi.h
/qemu/semihosting/config.c
/qemu/semihosting/console.c
/qemu/semihosting/meson.build
/qemu/softmmu/cpu-timers.c
/qemu/softmmu/device_tree.c
/qemu/softmmu/dma-helpers.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qemu-seccomp.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/semihost.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/helper.c
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm_arm.h
/qemu/target/arm/m_helper.c
/qemu/target/arm/sve_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-sve.c
/qemu/target/arm/translate.c
/qemu/target/avr/helper.c
/qemu/target/hexagon/gen_tcg_funcs.py
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/opcodes.c
/qemu/target/i386/cpu.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/machine.c
/qemu/target/i386/sev.c
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/lm32/helper.c
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/op_helper.c
/qemu/target/m68k/translate.c
/qemu/target/meson.build
/qemu/target/mips/cpu.c
/qemu/target/mips/kvm.c
/qemu/target/mips/meson.build
/qemu/target/mips/mips-semi.c
/qemu/target/mips/mxu_translate.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate.h
/qemu/target/mips/tx79.decode
/qemu/target/mips/tx79_translate.c
/qemu/target/mips/txx9_translate.c
/qemu/target/nios2/helper.c
/qemu/target/ppc/cpu-qom.h
/qemu/target/ppc/int_helper.c
/qemu/target/ppc/translate_init.c.inc
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu_helper.c
/qemu/target/sh4/cpu.h
/qemu/target/sh4/helper.c
/qemu/target/tricore/cpu.h
/qemu/target/tricore/helper.c
/qemu/target/tricore/translate.c
/qemu/target/unicore32/helper.c
/qemu/target/xtensa/translate.c
/qemu/target/xtensa/xtensa-semi.c
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tests/Makefile.include
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/boot_xen.py
/qemu/tests/acceptance/replay_kernel.py
/qemu/tests/bench/atomic64-bench.c
/qemu/tests/bench/atomic_add-bench.c
/qemu/tests/bench/benchmark-crypto-cipher.c
/qemu/tests/bench/benchmark-crypto-hash.c
/qemu/tests/bench/benchmark-crypto-hmac.c
/qemu/tests/bench/meson.build
/qemu/tests/bench/qht-bench.c
/qemu/tests/docker/dockerfiles/debian10.docker
/qemu/tests/docker/test-tcg
/qemu/tests/fp/fp-test.c
/qemu/tests/meson.build
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/040
/qemu/tests/qemu-iotests/049.out
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/081.out
/qemu/tests/qemu-iotests/085.out
/qemu/tests/qemu-iotests/087
/qemu/tests/qemu-iotests/087.out
/qemu/tests/qemu-iotests/178.out.qcow2
/qemu/tests/qemu-iotests/178.out.raw
/qemu/tests/qemu-iotests/184
/qemu/tests/qemu-iotests/206.out
/qemu/tests/qemu-iotests/210.out
/qemu/tests/qemu-iotests/211.out
/qemu/tests/qemu-iotests/212.out
/qemu/tests/qemu-iotests/213.out
/qemu/tests/qemu-iotests/218
/qemu/tests/qemu-iotests/223.out
/qemu/tests/qemu-iotests/235
/qemu/tests/qemu-iotests/237.out
/qemu/tests/qemu-iotests/241.out
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/249.out
/qemu/tests/qemu-iotests/258
/qemu/tests/qemu-iotests/258.out
/qemu/tests/qemu-iotests/283
/qemu/tests/qemu-iotests/283.out
/qemu/tests/qemu-iotests/295
/qemu/tests/qemu-iotests/296
/qemu/tests/qemu-iotests/300
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/sample_images/parallels-with-bitmap.bz2
/qemu/tests/qemu-iotests/sample_images/parallels-with-bitmap.sh
/qemu/tests/qemu-iotests/tests/parallels-read-bitmap
/qemu/tests/qemu-iotests/tests/parallels-read-bitmap.out
/qemu/tests/qtest/fuzz-test.c
/qemu/tests/qtest/libqos/libqtest.h
/qemu/tests/qtest/libqos/qgraph.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_pwm-test.c
/qemu/tests/qtest/sse-timer-test.c
/qemu/tests/qtest/test-query-netdev.c
/qemu/tests/tcg/configure.sh
/qemu/tests/tcg/ppc64/Makefile.target
/qemu/tests/tcg/ppc64le/Makefile.target
/qemu/tests/tcg/ppc64le/bcdsub.c
/qemu/tests/unit/check-block-qdict.c
/qemu/tests/unit/check-qdict.c
/qemu/tests/unit/check-qjson.c
/qemu/tests/unit/check-qlist.c
/qemu/tests/unit/check-qlit.c
/qemu/tests/unit/check-qnull.c
/qemu/tests/unit/check-qnum.c
/qemu/tests/unit/check-qobject.c
/qemu/tests/unit/check-qom-interface.c
/qemu/tests/unit/check-qom-proplist.c
/qemu/tests/unit/check-qstring.c
/qemu/tests/unit/crypto-tls-psk-helpers.c
/qemu/tests/unit/crypto-tls-psk-helpers.h
/qemu/tests/unit/crypto-tls-x509-helpers.c
/qemu/tests/unit/crypto-tls-x509-helpers.h
/qemu/tests/unit/io-channel-helpers.c
/qemu/tests/unit/io-channel-helpers.h
/qemu/tests/unit/iothread.c
/qemu/tests/unit/iothread.h
/qemu/tests/unit/meson.build
/qemu/tests/unit/pkix_asn1_tab.c
/qemu/tests/unit/ptimer-test-stubs.c
/qemu/tests/unit/ptimer-test.c
/qemu/tests/unit/ptimer-test.h
/qemu/tests/unit/rcutorture.c
/qemu/tests/unit/socket-helpers.c
/qemu/tests/unit/socket-helpers.h
/qemu/tests/unit/test-aio-multithread.c
/qemu/tests/unit/test-aio.c
/qemu/tests/unit/test-authz-list.c
/qemu/tests/unit/test-authz-listfile.c
/qemu/tests/unit/test-authz-pam.c
/qemu/tests/unit/test-authz-simple.c
/qemu/tests/unit/test-base64.c
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-bdrv-graph-mod.c
/qemu/tests/unit/test-bitcnt.c
/qemu/tests/unit/test-bitmap.c
/qemu/tests/unit/test-bitops.c
/qemu/tests/unit/test-block-backend.c
/qemu/tests/unit/test-block-iothread.c
/qemu/tests/unit/test-blockjob-txn.c
/qemu/tests/unit/test-blockjob.c
/qemu/tests/unit/test-bufferiszero.c
/qemu/tests/unit/test-char.c
/qemu/tests/unit/test-clone-visitor.c
/qemu/tests/unit/test-coroutine.c
/qemu/tests/unit/test-crypto-afsplit.c
/qemu/tests/unit/test-crypto-block.c
/qemu/tests/unit/test-crypto-cipher.c
/qemu/tests/unit/test-crypto-hash.c
/qemu/tests/unit/test-crypto-hmac.c
/qemu/tests/unit/test-crypto-ivgen.c
/qemu/tests/unit/test-crypto-pbkdf.c
/qemu/tests/unit/test-crypto-secret.c
/qemu/tests/unit/test-crypto-tlscredsx509.c
/qemu/tests/unit/test-crypto-tlssession.c
/qemu/tests/unit/test-crypto-xts.c
/qemu/tests/unit/test-cutils.c
/qemu/tests/unit/test-fdmon-epoll.c
/qemu/tests/unit/test-hbitmap.c
/qemu/tests/unit/test-image-locking.c
/qemu/tests/unit/test-int128.c
/qemu/tests/unit/test-io-channel-buffer.c
/qemu/tests/unit/test-io-channel-command.c
/qemu/tests/unit/test-io-channel-file.c
/qemu/tests/unit/test-io-channel-socket.c
/qemu/tests/unit/test-io-channel-tls.c
/qemu/tests/unit/test-io-task.c
/qemu/tests/unit/test-iov.c
/qemu/tests/unit/test-keyval.c
/qemu/tests/unit/test-logging.c
/qemu/tests/unit/test-mul64.c
/qemu/tests/unit/test-opts-visitor.c
/qemu/tests/unit/test-qapi-util.c
/qemu/tests/unit/test-qdev-global-props.c
/qemu/tests/unit/test-qdist.c
/qemu/tests/unit/test-qemu-opts.c
/qemu/tests/unit/test-qga.c
/qemu/tests/unit/test-qgraph.c
/qemu/tests/unit/test-qht.c
/qemu/tests/unit/test-qmp-cmds.c
/qemu/tests/unit/test-qmp-event.c
/qemu/tests/unit/test-qobject-input-visitor.c
/qemu/tests/unit/test-qobject-output-visitor.c
/qemu/tests/unit/test-rcu-list.c
/qemu/tests/unit/test-rcu-simpleq.c
/qemu/tests/unit/test-rcu-slist.c
/qemu/tests/unit/test-rcu-tailq.c
/qemu/tests/unit/test-replication.c
/qemu/tests/unit/test-shift128.c
/qemu/tests/unit/test-string-input-visitor.c
/qemu/tests/unit/test-string-output-visitor.c
/qemu/tests/unit/test-thread-pool.c
/qemu/tests/unit/test-throttle.c
/qemu/tests/unit/test-timed-average.c
/qemu/tests/unit/test-util-filemonitor.c
/qemu/tests/unit/test-util-sockets.c
/qemu/tests/unit/test-uuid.c
/qemu/tests/unit/test-visitor-serialization.c
/qemu/tests/unit/test-vmstate.c
/qemu/tests/unit/test-write-threshold.c
/qemu/tests/unit/test-x86-cpuid.c
/qemu/tests/unit/test-xbzrle.c
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/gtk.c
/qemu/ui/spice-core.c
/qemu/ui/vnc-auth-sasl.c
/qemu/util/cutils.c
/qemu/util/id.c
/qemu/util/main-loop.c
/qemu/util/qemu-timer.c
9f34101d01-Mar-2021 Kostiantyn Kostiuk <konstantin@daynix.com>

qga-vss: Use dynamic linking for GLib

The current GLib version implements the DllMain function. DllMain is also
present in the provider.cpp code. So in the case of static linking, the
DllMain redefi

qga-vss: Use dynamic linking for GLib

The current GLib version implements the DllMain function. DllMain is also
present in the provider.cpp code. So in the case of static linking, the
DllMain redefinition error occurs. For now, just switch to dynamic linking
and revert this patch when the issue will be solved.

See Glib issue for more details https://gitlab.gnome.org/GNOME/glib/-/issues/692

Signed-off-by: Kostiantyn Kostiuk <konstantin@daynix.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...


/qemu/.gitattributes
/qemu/.github/lockdown.yml
/qemu/.gitlab-ci.d/containers.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.yml
/qemu/.gitmodules
/qemu/.travis.yml
/qemu/Kconfig.host
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/README.rst
/qemu/accel/accel-common.c
/qemu/accel/accel-softmmu.c
/qemu/accel/accel-softmmu.h
/qemu/accel/accel-user.c
/qemu/accel/hvf/entitlements.plist
/qemu/accel/kvm/kvm-accel-ops.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/kvm/kvm-cpus.h
/qemu/accel/kvm/meson.build
/qemu/accel/kvm/sev-stub.c
/qemu/accel/meson.build
/qemu/accel/qtest/qtest.c
/qemu/accel/stubs/kvm-stub.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tcg-accel-ops-icount.c
/qemu/accel/tcg/tcg-accel-ops-icount.h
/qemu/accel/tcg/tcg-accel-ops-mttcg.c
/qemu/accel/tcg/tcg-accel-ops-mttcg.h
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-accel-ops-rr.h
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-accel-ops.h
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/accel/xen/xen-all.c
/qemu/backends/confidential-guest-support.c
/qemu/backends/hostmem-file.c
/qemu/backends/hostmem-memfd.c
/qemu/backends/hostmem.c
/qemu/backends/meson.build
/qemu/backends/rng-builtin.c
/qemu/block.c
/qemu/block/backup-top.c
/qemu/block/backup.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/commit.c
/qemu/block/crypto.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/mirror.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nbd.c
/qemu/block/nvme.c
/qemu/block/qapi.c
/qemu/block/qcow2.c
/qemu/block/raw-format.c
/qemu/block/snapshot.c
/qemu/block/throttle-groups.c
/qemu/block/trace-events
/qemu/blockdev-nbd.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bsd-user/elfload.c
/qemu/bsd-user/main.c
/qemu/bsd-user/mmap.c
/qemu/bsd-user/qemu.h
/qemu/chardev/char-socket.c
/qemu/configure
/qemu/contrib/ivshmem-server/main.c
/qemu/contrib/plugins/Makefile
/qemu/contrib/plugins/hotblocks.c
/qemu/contrib/plugins/hotpages.c
/qemu/contrib/plugins/howvec.c
/qemu/contrib/plugins/hwprofile.c
/qemu/contrib/plugins/lockstep.c
/qemu/contrib/vhost-user-gpu/vhost-user-gpu.c
/qemu/contrib/vhost-user-gpu/virgl.c
/qemu/contrib/vhost-user-gpu/vugpu.h
/qemu/cpu.c
/qemu/crypto/aes.c
/qemu/crypto/desrfb.c
/qemu/crypto/secret.c
/qemu/crypto/secret_common.c
/qemu/crypto/secret_keyring.c
/qemu/crypto/tlscredsanon.c
/qemu/crypto/tlscredspsk.c
/qemu/crypto/tlscredsx509.c
/qemu/default-configs/targets/hexagon-linux-user.mak
/qemu/disas/hexagon.c
/qemu/disas/meson.build
/qemu/docs/COLO-FT.txt
/qemu/docs/amd-memory-encryption.txt
/qemu/docs/ccid.txt
/qemu/docs/colo-proxy.txt
/qemu/docs/confidential-guest-support.txt
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/clocks.rst
/qemu/docs/devel/fuzzing.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/loads-stores.rst
/qemu/docs/devel/multi-process.rst
/qemu/docs/devel/style.rst
/qemu/docs/devel/tcg-plugins.rst
/qemu/docs/devel/testing.rst
/qemu/docs/devel/tracing.rst
/qemu/docs/devel/writing-qmp-commands.txt
/qemu/docs/interop/firmware.json
/qemu/docs/interop/live-block-operations.rst
/qemu/docs/interop/parallels.txt
/qemu/docs/interop/qmp-intro.txt
/qemu/docs/interop/qmp-spec.txt
/qemu/docs/meson.build
/qemu/docs/nvdimm.txt
/qemu/docs/papr-pef.txt
/qemu/docs/specs/pci-ids.txt
/qemu/docs/specs/pvpanic.txt
/qemu/docs/sphinx/qapidoc.py
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/arm/versatile.rst
/qemu/docs/system/arm/vexpress.rst
/qemu/docs/system/arm/virt.rst
/qemu/docs/system/build-platforms.rst
/qemu/docs/system/cpu-hotplug.rst
/qemu/docs/system/cpu-models-x86.rst.inc
/qemu/docs/system/deprecated.rst
/qemu/docs/system/index.rst
/qemu/docs/system/multi-process.rst
/qemu/docs/system/removed-features.rst
/qemu/docs/system/s390x/3270.rst
/qemu/docs/system/s390x/protvirt.rst
/qemu/docs/system/target-avr.rst
/qemu/docs/system/tls.rst
/qemu/docs/system/vnc-security.rst
/qemu/docs/tools/qemu-nbd.rst
/qemu/docs/tools/qemu-storage-daemon.rst
/qemu/docs/tools/virtiofsd.rst
/qemu/docs/user/main.rst
/qemu/gdbstub.c
/qemu/hw/Kconfig
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/core.c
/qemu/hw/acpi/ghes.c
/qemu/hw/acpi/hmat.c
/qemu/hw/acpi/hmat.h
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/nvdimm.c
/qemu/hw/acpi/pci.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/armsse.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/digic_boards.c
/qemu/hw/arm/microbit.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/netduino2.c
/qemu/hw/arm/netduinoplus2.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/fdc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/nand.c
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/nvme-ns.h
/qemu/hw/block/nvme.c
/qemu/hw/block/nvme.h
/qemu/hw/block/onenand.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/swim.c
/qemu/hw/block/trace-events
/qemu/hw/block/virtio-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/exynos4210_uart.c
/qemu/hw/core/cpu.c
/qemu/hw/core/machine.c
/qemu/hw/core/ptimer.c
/qemu/hw/display/qxl-logger.c
/qemu/hw/display/qxl-render.c
/qemu/hw/display/qxl.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/dma/Kconfig
/qemu/hw/dma/meson.build
/qemu/hw/gpio/Kconfig
/qemu/hw/gpio/gpio_pwr.c
/qemu/hw/gpio/meson.build
/qemu/hw/i2c/meson.build
/qemu/hw/i2c/npcm7xx_smbus.c
/qemu/hw/i2c/trace-events
/qemu/hw/i386/Kconfig
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/acpi-common.h
/qemu/hw/i386/acpi-microvm.c
/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/pc_sysfw.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/core.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/intc/loongson_liointc.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xive.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/trace-events
/qemu/hw/isa/vt82c686.c
/qemu/hw/m68k/bootinfo.h
/qemu/hw/m68k/q800.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/meson.build
/qemu/hw/mips/bootloader.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/loongson3_bootp.h
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/mips/meson.build
/qemu/hw/misc/Kconfig
/qemu/hw/misc/arm_integrator_debug.c
/qemu/hw/misc/aspeed_xdma.c
/qemu/hw/misc/imx7_ccm.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/npcm7xx_pwm.c
/qemu/hw/misc/pvpanic-isa.c
/qemu/hw/misc/pvpanic-pci.c
/qemu/hw/misc/pvpanic.c
/qemu/hw/misc/sbsa_ec.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/misc/tz-ppc.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/virtio-net.c
/qemu/hw/nvram/nrf51_nvm.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/gpex-acpi.c
/qemu/hw/pci-host/meson.build
/qemu/hw/pci-host/pnv_phb4.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/remote.c
/qemu/hw/pci-host/trace-events
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/meson.build
/qemu/hw/ppc/pef.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_numa.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/remote/Kconfig
/qemu/hw/remote/iohub.c
/qemu/hw/remote/machine.c
/qemu/hw/remote/memory.c
/qemu/hw/remote/meson.build
/qemu/hw/remote/message.c
/qemu/hw/remote/mpqemu-link.c
/qemu/hw/remote/proxy-memory-listener.c
/qemu/hw/remote/proxy.c
/qemu/hw/remote/remote-obj.c
/qemu/hw/remote/trace-events
/qemu/hw/remote/trace.h
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/spapr_vscsi.c
/qemu/hw/scsi/trace-events
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/aspeed_sdhci.c
/qemu/hw/sd/core.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/tpm/tpm_tis_isa.c
/qemu/hw/tpm/tpm_tis_sysbus.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/pcap.c
/qemu/hw/usb/u2f-passthru.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vhost-backend.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-balloon-pci.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/xen/xen_pt_load_rom.c
/qemu/include/authz/listfile.h
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/nbd.h
/qemu/include/block/nvme.h
/qemu/include/block/snapshot.h
/qemu/include/block/throttle-groups.h
/qemu/include/disas/dis-asm.h
/qemu/include/elf.h
/qemu/include/exec/confidential-guest-support.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/gdbstub.h
/qemu/include/exec/memory.h
/qemu/include/exec/memory_ldst_cached.h.inc
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/tb-context.h
/qemu/include/hw/acpi/acpi-defs.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/acpi/ghes.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/acpi/pci.h
/qemu/include/hw/acpi/vmgenid.h
/qemu/include/hw/arm/armsse.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/boards.h
/qemu/include/hw/clock.h
/qemu/include/hw/core/accel-cpu.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/dma/pl080.h
/qemu/include/hw/i2c/npcm7xx_smbus.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/mem/nvdimm.h
/qemu/include/hw/mips/bootloader.h
/qemu/include/hw/misc/arm_integrator_debug.h
/qemu/include/hw/misc/aspeed_xdma.h
/qemu/include/hw/misc/pvpanic.h
/qemu/include/hw/pci-host/remote.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pci_ids.h
/qemu/include/hw/ppc/pef.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_numa.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/hw/ptimer.h
/qemu/include/hw/remote/iohub.h
/qemu/include/hw/remote/machine.h
/qemu/include/hw/remote/memory.h
/qemu/include/hw/remote/mpqemu-link.h
/qemu/include/hw/remote/proxy-memory-listener.h
/qemu/include/hw/remote/proxy.h
/qemu/include/hw/s390x/pv.h
/qemu/include/hw/scsi/esp.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/sd/aspeed_sdhci.h
/qemu/include/hw/sd/sd.h
/qemu/include/hw/ssi/imx_spi.h
/qemu/include/hw/ssi/pl022.h
/qemu/include/hw/timer/cmsdk-apb-dualtimer.h
/qemu/include/hw/timer/cmsdk-apb-timer.h
/qemu/include/hw/virtio/virtio-gpu.h
/qemu/include/hw/watchdog/cmsdk-apb-watchdog.h
/qemu/include/io/channel.h
/qemu/include/migration/snapshot.h
/qemu/include/qemu/accel.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/error-report.h
/qemu/include/qemu/event_notifier.h
/qemu/include/qemu/fifo8.h
/qemu/include/qemu/int128.h
/qemu/include/qemu/iov.h
/qemu/include/qemu/job.h
/qemu/include/qemu/mmap-alloc.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/typedefs.h
/qemu/include/qemu/userfaultfd.h
/qemu/include/qom/object.h
/qemu/include/scsi/utils.h
/qemu/include/standard-headers/asm-m68k/bootinfo-mac.h
/qemu/include/standard-headers/asm-m68k/bootinfo.h
/qemu/include/sysemu/accel-ops.h
/qemu/include/sysemu/block-backend.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/hvf.h
/qemu/include/sysemu/hw_accel.h
/qemu/include/sysemu/iothread.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/replay.h
/qemu/include/sysemu/sev.h
/qemu/include/ui/console.h
/qemu/include/ui/egl-context.h
/qemu/include/ui/egl-helpers.h
/qemu/include/ui/gtk.h
/qemu/include/ui/qemu-spice.h
/qemu/include/ui/sdl2.h
/qemu/io/channel.c
/qemu/iothread.c
/qemu/job.c
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/aarch64/target_signal.h
/qemu/linux-user/aarch64/target_syscall.h
/qemu/linux-user/alpha/target_fcntl.h
/qemu/linux-user/alpha/target_signal.h
/qemu/linux-user/elfload.c
/qemu/linux-user/flatload.c
/qemu/linux-user/generic/signal.h
/qemu/linux-user/generic/sockbits.h
/qemu/linux-user/hexagon/cpu_loop.c
/qemu/linux-user/hexagon/signal.c
/qemu/linux-user/hexagon/sockbits.h
/qemu/linux-user/hexagon/syscall_nr.h
/qemu/linux-user/hexagon/target_cpu.h
/qemu/linux-user/hexagon/target_elf.h
/qemu/linux-user/hexagon/target_fcntl.h
/qemu/linux-user/hexagon/target_signal.h
/qemu/linux-user/hexagon/target_structs.h
/qemu/linux-user/hexagon/target_syscall.h
/qemu/linux-user/hexagon/termbits.h
/qemu/linux-user/hppa/cpu_loop.c
/qemu/linux-user/hppa/target_fcntl.h
/qemu/linux-user/hppa/target_signal.h
/qemu/linux-user/i386/cpu_loop.c
/qemu/linux-user/i386/signal.c
/qemu/linux-user/main.c
/qemu/linux-user/mips/sockbits.h
/qemu/linux-user/mips/target_signal.h
/qemu/linux-user/mips64/syscall_nr.h
/qemu/linux-user/mips64/target_elf.h
/qemu/linux-user/mips64/target_signal.h
/qemu/linux-user/mmap.c
/qemu/linux-user/ppc/signal.c
/qemu/linux-user/qemu.h
/qemu/linux-user/signal.c
/qemu/linux-user/sparc/target_signal.h
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/linux-user/uaccess.c
/qemu/memory_ldst.c.inc
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/page_cache.c
/qemu/migration/page_cache.h
/qemu/migration/qemu-file.c
/qemu/migration/ram.c
/qemu/migration/ram.h
/qemu/migration/savevm.c
/qemu/migration/savevm.h
/qemu/migration/trace-events
/qemu/monitor/hmp-cmds.c
/qemu/monitor/monitor.c
/qemu/monitor/qmp-cmds.c
/qemu/monitor/qmp.c
/qemu/monitor/trace-events
/qemu/net/slirp.c
/qemu/os-posix.c
/qemu/pc-bios/README
/qemu/pc-bios/descriptors/meson.build
/qemu/pc-bios/meson.build
/qemu/plugins/api.c
/qemu/python/qemu/machine.py
/qemu/qapi/char.json
/qemu/qapi/job.json
/qemu/qapi/meson.build
/qemu/qapi/migration.json
/qemu/qapi/misc-target.json
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
vss-win32/meson.build
/qemu/qobject/json-parser.c
/qemu/qobject/qdict.c
/qemu/qobject/qjson.c
/qemu/qom/object.c
/qemu/replay/replay-debugging.c
/qemu/replay/replay-internal.c
/qemu/replay/replay-snapshot.c
/qemu/replay/replay-time.c
/qemu/replay/replay.c
/qemu/scripts/checkpatch.pl
/qemu/scripts/ci/coverage-summary.sh
/qemu/scripts/device-crash-test
/qemu/scripts/entitlement.sh
/qemu/scripts/fix-multiline-comments.sh
/qemu/scripts/gensyscalls.sh
/qemu/scripts/get_maintainer.pl
/qemu/scripts/git-submodule.sh
/qemu/scripts/mtest2make.py
/qemu/scripts/oss-fuzz/minimize_qtest_trace.py
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/events.py
/qemu/scripts/qapi/gen.py
/qemu/scripts/qapi/introspect.py
/qemu/scripts/qapi/main.py
/qemu/scripts/qapi/mypy.ini
/qemu/scripts/qapi/schema.py
/qemu/scripts/qapi/types.py
/qemu/scripts/qapi/visit.py
/qemu/scripts/qemu-binfmt-conf.sh
/qemu/scripts/qmp/qemu-ga-client
/qemu/scripts/simpletrace.py
/qemu/scripts/tracetool/backend/log.py
/qemu/scripts/tracetool/format/log_stap.py
/qemu/scripts/userfaultfd-wrlat.py
/qemu/scsi/utils.c
/qemu/softmmu/cpu-throttle.c
/qemu/softmmu/cpus.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qtest.c
/qemu/softmmu/rtc.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/meson.build
/qemu/stubs/qdev.c
/qemu/stubs/replay-tools.c
/qemu/target/alpha/cpu.c
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/machine.c
/qemu/target/arm/mte_helper.c
/qemu/target/arm/op_helper.c
/qemu/target/arm/syndrome.h
/qemu/target/arm/tlb_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/avr/cpu.c
/qemu/target/avr/helper.c
/qemu/target/cris/cpu.c
/qemu/target/cris/helper.c
/qemu/target/cris/mmu.c
/qemu/target/cris/mmu.h
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hexagon/README
/qemu/target/hexagon/arch.c
/qemu/target/hexagon/arch.h
/qemu/target/hexagon/attribs.h
/qemu/target/hexagon/attribs_def.h.inc
/qemu/target/hexagon/conv_emu.c
/qemu/target/hexagon/conv_emu.h
/qemu/target/hexagon/cpu-param.h
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/cpu_bits.h
/qemu/target/hexagon/decode.c
/qemu/target/hexagon/decode.h
/qemu/target/hexagon/dectree.py
/qemu/target/hexagon/fma_emu.c
/qemu/target/hexagon/fma_emu.h
/qemu/target/hexagon/gdbstub.c
/qemu/target/hexagon/gen_dectree_import.c
/qemu/target/hexagon/gen_helper_funcs.py
/qemu/target/hexagon/gen_helper_protos.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_semantics.c
/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_arch_types.h
/qemu/target/hexagon/hex_common.py
/qemu/target/hexagon/hex_regs.h
/qemu/target/hexagon/iclass.c
/qemu/target/hexagon/iclass.h
/qemu/target/hexagon/imported/allidefs.def
/qemu/target/hexagon/imported/alu.idef
/qemu/target/hexagon/imported/branch.idef
/qemu/target/hexagon/imported/compare.idef
/qemu/target/hexagon/imported/encode.def
/qemu/target/hexagon/imported/encode_pp.def
/qemu/target/hexagon/imported/encode_subinsn.def
/qemu/target/hexagon/imported/float.idef
/qemu/target/hexagon/imported/iclass.def
/qemu/target/hexagon/imported/ldst.idef
/qemu/target/hexagon/imported/macros.def
/qemu/target/hexagon/imported/mpy.idef
/qemu/target/hexagon/imported/shift.idef
/qemu/target/hexagon/imported/subinsns.idef
/qemu/target/hexagon/imported/system.idef
/qemu/target/hexagon/insn.h
/qemu/target/hexagon/internal.h
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/meson.build
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/opcodes.c
/qemu/target/hexagon/opcodes.h
/qemu/target/hexagon/printinsn.c
/qemu/target/hexagon/printinsn.h
/qemu/target/hexagon/reg_fields.c
/qemu/target/hexagon/reg_fields.h
/qemu/target/hexagon/reg_fields_def.h.inc
/qemu/target/hexagon/translate.c
/qemu/target/hexagon/translate.h
/qemu/target/hppa/cpu.c
/qemu/target/hppa/op_helper.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hax/hax-accel-ops.c
/qemu/target/i386/hax/hax-accel-ops.h
/qemu/target/i386/hax/hax-all.c
/qemu/target/i386/hax/hax-mem.c
/qemu/target/i386/hax/hax-posix.c
/qemu/target/i386/hax/hax-windows.c
/qemu/target/i386/hax/hax-windows.h
/qemu/target/i386/hax/meson.build
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/hvf-accel-ops.c
/qemu/target/i386/hvf/hvf-accel-ops.h
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/meson.build
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/hvf/x86_emu.c
/qemu/target/i386/hvf/x86_task.c
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/machine.c
/qemu/target/i386/monitor.c
/qemu/target/i386/sev-stub.c
/qemu/target/i386/sev.c
/qemu/target/i386/sev_i386.h
/qemu/target/i386/tcg/excp_helper.c
/qemu/target/i386/tcg/mem_helper.c
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/meson.build
/qemu/target/i386/whpx/whpx-accel-ops.c
/qemu/target/i386/whpx/whpx-accel-ops.h
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/lm32/cpu.c
/qemu/target/lm32/translate.c
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/helper.c
/qemu/target/m68k/translate.c
/qemu/target/meson.build
/qemu/target/microblaze/cpu.c
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/internal.h
/qemu/target/mips/kvm.c
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/tlb_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate.h
/qemu/target/moxie/cpu.c
/qemu/target/moxie/translate.c
/qemu/target/nios2/cpu.c
/qemu/target/openrisc/cpu.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/translate_init.c.inc
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu_helper.c
/qemu/target/rx/cpu.c
/qemu/target/rx/op_helper.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/excp_helper.c
/qemu/target/s390x/kvm.c
/qemu/target/s390x/mem_helper.c
/qemu/target/sh4/cpu.c
/qemu/target/sh4/gdbstub.c
/qemu/target/sparc/cpu.c
/qemu/target/tilegx/cpu.c
/qemu/target/tricore/cpu.c
/qemu/target/unicore32/cpu.c
/qemu/target/unicore32/translate.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/helper.c
/qemu/tcg/aarch64/tcg-target-con-set.h
/qemu/tcg/aarch64/tcg-target-con-str.h
/qemu/tcg/aarch64/tcg-target.c.inc
/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/i386/tcg-target-con-set.h
/qemu/tcg/i386/tcg-target-con-str.h
/qemu/tcg/i386/tcg-target.c.inc
/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/ppc/tcg-target-con-set.h
/qemu/tcg/ppc/tcg-target-con-str.h
/qemu/tcg/ppc/tcg-target.c.inc
/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/s390/tcg-target-con-set.h
/qemu/tcg/s390/tcg-target-con-str.h
/qemu/tcg/s390/tcg-target.c.inc
/qemu/tcg/sparc/tcg-target-con-set.h
/qemu/tcg/sparc/tcg-target-con-str.h
/qemu/tcg/sparc/tcg-target.c.inc
/qemu/tcg/sparc/tcg-target.h
/qemu/tcg/tcg-common.c
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target-con-set.h
/qemu/tcg/tci/tcg-target-con-str.h
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/Makefile.include
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/acceptance/boot_linux.py
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/linux_ssh_mips_malta.py
/qemu/tests/acceptance/machine_m68k_nextcube.py
/qemu/tests/acceptance/machine_microblaze.py
/qemu/tests/acceptance/machine_mips_loongson3v.py
/qemu/tests/acceptance/machine_ppc.py
/qemu/tests/acceptance/replay_kernel.py
/qemu/tests/acceptance/tcg_plugins.py
/qemu/tests/acceptance/tesseract_utils.py
/qemu/tests/acceptance/virtio-gpu.py
/qemu/tests/acceptance/virtiofs_submounts.py
/qemu/tests/check-block.sh
/qemu/tests/crypto-tls-x509-helpers.c
/qemu/tests/crypto-tls-x509-helpers.h
/qemu/tests/data/acpi/microvm/APIC
/qemu/tests/data/acpi/microvm/APIC.ioapic2
/qemu/tests/data/acpi/microvm/APIC.pcie
/qemu/tests/data/acpi/microvm/DSDT
/qemu/tests/data/acpi/microvm/DSDT.ioapic2
/qemu/tests/data/acpi/microvm/DSDT.pcie
/qemu/tests/data/acpi/microvm/DSDT.rtc
/qemu/tests/data/acpi/microvm/DSDT.usb
/qemu/tests/data/acpi/microvm/FACP
/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/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.nohpet
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/pc/FACP
/qemu/tests/data/acpi/pc/FACP.nosmm
/qemu/tests/data/acpi/pc/HMAT.acpihmat
/qemu/tests/data/acpi/pc/HPET
/qemu/tests/data/acpi/pc/NFIT.dimmpxm
/qemu/tests/data/acpi/pc/SLIT.cphp
/qemu/tests/data/acpi/pc/SLIT.memhp
/qemu/tests/data/acpi/pc/SRAT.acpihmat
/qemu/tests/data/acpi/pc/SRAT.cphp
/qemu/tests/data/acpi/pc/SRAT.dimmpxm
/qemu/tests/data/acpi/pc/SRAT.memhp
/qemu/tests/data/acpi/pc/SRAT.numamem
/qemu/tests/data/acpi/pc/SSDT.dimmpxm
/qemu/tests/data/acpi/pc/WAET
/qemu/tests/data/acpi/q35/APIC
/qemu/tests/data/acpi/q35/APIC.acpihmat
/qemu/tests/data/acpi/q35/APIC.cphp
/qemu/tests/data/acpi/q35/APIC.dimmpxm
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.nohpet
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.tis
/qemu/tests/data/acpi/q35/FACP
/qemu/tests/data/acpi/q35/FACP.nosmm
/qemu/tests/data/acpi/q35/HMAT.acpihmat
/qemu/tests/data/acpi/q35/HPET
/qemu/tests/data/acpi/q35/MCFG
/qemu/tests/data/acpi/q35/NFIT.dimmpxm
/qemu/tests/data/acpi/q35/SLIT.cphp
/qemu/tests/data/acpi/q35/SLIT.memhp
/qemu/tests/data/acpi/q35/SRAT.acpihmat
/qemu/tests/data/acpi/q35/SRAT.cphp
/qemu/tests/data/acpi/q35/SRAT.dimmpxm
/qemu/tests/data/acpi/q35/SRAT.memhp
/qemu/tests/data/acpi/q35/SRAT.mmio64
/qemu/tests/data/acpi/q35/SRAT.numamem
/qemu/tests/data/acpi/q35/SSDT.dimmpxm
/qemu/tests/data/acpi/q35/TPM2.tis
/qemu/tests/data/acpi/q35/WAET
/qemu/tests/data/acpi/virt/APIC
/qemu/tests/data/acpi/virt/APIC.memhp
/qemu/tests/data/acpi/virt/APIC.numamem
/qemu/tests/data/acpi/virt/DSDT
/qemu/tests/data/acpi/virt/DSDT.memhp
/qemu/tests/data/acpi/virt/DSDT.numamem
/qemu/tests/data/acpi/virt/DSDT.pxb
/qemu/tests/data/acpi/virt/FACP
/qemu/tests/data/acpi/virt/FACP.memhp
/qemu/tests/data/acpi/virt/FACP.numamem
/qemu/tests/data/acpi/virt/GTDT
/qemu/tests/data/acpi/virt/GTDT.memhp
/qemu/tests/data/acpi/virt/GTDT.numamem
/qemu/tests/data/acpi/virt/MCFG
/qemu/tests/data/acpi/virt/MCFG.memhp
/qemu/tests/data/acpi/virt/MCFG.numamem
/qemu/tests/data/acpi/virt/NFIT.memhp
/qemu/tests/data/acpi/virt/SLIT.memhp
/qemu/tests/data/acpi/virt/SPCR
/qemu/tests/data/acpi/virt/SPCR.memhp
/qemu/tests/data/acpi/virt/SPCR.numamem
/qemu/tests/data/acpi/virt/SRAT.memhp
/qemu/tests/data/acpi/virt/SRAT.numamem
/qemu/tests/data/acpi/virt/SSDT.memhp
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/docker.py
/qemu/tests/docker/dockerfiles/centos7.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-amd64.docker
/qemu/tests/docker/dockerfiles/empty.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/ubuntu2004.docker
/qemu/tests/guest-debug/run-test.py
/qemu/tests/meson.build
/qemu/tests/pkix_asn1_tab.c
/qemu/tests/plugin/insn.c
/qemu/tests/plugin/mem.c
/qemu/tests/qapi-schema/comments.out
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/empty.out
/qemu/tests/qapi-schema/event-case.out
/qemu/tests/qapi-schema/include-repetition.out
/qemu/tests/qapi-schema/include-simple.out
/qemu/tests/qapi-schema/indented-expr.out
/qemu/tests/qapi-schema/qapi-schema-test.out
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/146.out
/qemu/tests/qemu-iotests/172.out
/qemu/tests/qemu-iotests/185.out
/qemu/tests/qemu-iotests/206.out
/qemu/tests/qemu-iotests/210.out
/qemu/tests/qemu-iotests/233
/qemu/tests/qemu-iotests/259
/qemu/tests/qemu-iotests/264
/qemu/tests/qemu-iotests/264.out
/qemu/tests/qemu-iotests/267.out
/qemu/tests/qemu-iotests/300
/qemu/tests/qemu-iotests/300.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.qemu
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/findtests.py
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/meson.build
/qemu/tests/qemu-iotests/pylintrc
/qemu/tests/qemu-iotests/testenv.py
/qemu/tests/qemu-iotests/testrunner.py
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test.out
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-test
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-test.out
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/boot-sector.c
/qemu/tests/qtest/boot-serial-test.c
/qemu/tests/qtest/cmsdk-apb-dualtimer-test.c
/qemu/tests/qtest/cmsdk-apb-timer-test.c
/qemu/tests/qtest/cmsdk-apb-watchdog-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/libqos/qgraph.c
/qemu/tests/qtest/libqos/qgraph.h
/qemu/tests/qtest/libqos/qgraph_internal.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_pwm-test.c
/qemu/tests/qtest/npcm7xx_smbus-test.c
/qemu/tests/qtest/pvpanic-pci-test.c
/qemu/tests/qtest/qos-test.c
/qemu/tests/qtest/test-x86-cpuid-compat.c
/qemu/tests/qtest/virtio-scsi-test.c
/qemu/tests/qtest/xlnx-can-test.c
/qemu/tests/requirements.txt
/qemu/tests/tcg/Makefile.qemu
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/mte-1.c
/qemu/tests/tcg/aarch64/mte-2.c
/qemu/tests/tcg/aarch64/mte-3.c
/qemu/tests/tcg/aarch64/mte-4.c
/qemu/tests/tcg/aarch64/mte.h
/qemu/tests/tcg/aarch64/pauth-2.c
/qemu/tests/tcg/configure.sh
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/atomics.c
/qemu/tests/tcg/hexagon/dual_stores.c
/qemu/tests/tcg/hexagon/first.S
/qemu/tests/tcg/hexagon/float_convs.ref
/qemu/tests/tcg/hexagon/float_madds.ref
/qemu/tests/tcg/hexagon/fpstuff.c
/qemu/tests/tcg/hexagon/mem_noshuf.c
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/tcg/hexagon/preg_alias.c
/qemu/tests/tcg/i386/Makefile.softmmu-target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/system/Makefile.softmmu-target
/qemu/tests/tcg/x86_64/Makefile.softmmu-target
/qemu/tests/test-authz-pam.c
/qemu/tests/test-bdrv-graph-mod.c
/qemu/tests/test-char.c
/qemu/tests/test-write-threshold.c
/qemu/tools/meson.build
/qemu/tools/virtiofsd/fuse_common.h
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/fuse_lowlevel.h
/qemu/tools/virtiofsd/fuse_virtio.c
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/trace/meson.build
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/egl-context.c
/qemu/ui/egl-headless.c
/qemu/ui/egl-helpers.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk-gl-area.c
/qemu/ui/gtk.c
/qemu/ui/keycodemapdb
/qemu/ui/meson.build
/qemu/ui/sdl2-gl.c
/qemu/ui/sdl2.c
/qemu/ui/spice-app.c
/qemu/ui/spice-core.c
/qemu/ui/spice-display.c
/qemu/ui/vnc.c
/qemu/util/cutils.c
/qemu/util/event_notifier-posix.c
/qemu/util/fifo8.c
/qemu/util/iov.c
/qemu/util/meson.build
/qemu/util/mmap-alloc.c
/qemu/util/oslib-posix.c
/qemu/util/qemu-error.c
/qemu/util/trace-events
/qemu/util/userfaultfd.c
96291f1305-Feb-2021 Eric Blake <eblake@redhat.com>

qga: Utilize QAPI_LIST_APPEND in qmp_guest_network_get_interfaces

I found another spot that can benefit from using our macros instead of
open-coding qapi list creation.

Signed-off-by: Eric Blake <e

qga: Utilize QAPI_LIST_APPEND in qmp_guest_network_get_interfaces

I found another spot that can benefit from using our macros instead of
open-coding qapi list creation.

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20210205171634.1491258-1-eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...


/qemu/.gitattributes
/qemu/.github/lockdown.yml
/qemu/.gitlab-ci.d/containers.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.yml
/qemu/.gitmodules
/qemu/.travis.yml
/qemu/Kconfig.host
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/README.rst
/qemu/accel/accel-common.c
/qemu/accel/accel-softmmu.c
/qemu/accel/accel-softmmu.h
/qemu/accel/accel-user.c
/qemu/accel/hvf/entitlements.plist
/qemu/accel/kvm/kvm-accel-ops.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/kvm/kvm-cpus.h
/qemu/accel/kvm/meson.build
/qemu/accel/kvm/sev-stub.c
/qemu/accel/meson.build
/qemu/accel/qtest/qtest.c
/qemu/accel/stubs/kvm-stub.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tcg-accel-ops-icount.c
/qemu/accel/tcg/tcg-accel-ops-icount.h
/qemu/accel/tcg/tcg-accel-ops-mttcg.c
/qemu/accel/tcg/tcg-accel-ops-mttcg.h
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-accel-ops-rr.h
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-accel-ops.h
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/accel/xen/xen-all.c
/qemu/backends/confidential-guest-support.c
/qemu/backends/hostmem-file.c
/qemu/backends/hostmem-memfd.c
/qemu/backends/hostmem.c
/qemu/backends/meson.build
/qemu/backends/rng-builtin.c
/qemu/block.c
/qemu/block/backup-top.c
/qemu/block/backup.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/commit.c
/qemu/block/crypto.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/mirror.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nbd.c
/qemu/block/nvme.c
/qemu/block/qapi.c
/qemu/block/qcow2.c
/qemu/block/raw-format.c
/qemu/block/snapshot.c
/qemu/block/throttle-groups.c
/qemu/block/trace-events
/qemu/blockdev-nbd.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bsd-user/elfload.c
/qemu/bsd-user/main.c
/qemu/bsd-user/mmap.c
/qemu/bsd-user/qemu.h
/qemu/chardev/char-socket.c
/qemu/configure
/qemu/contrib/ivshmem-server/main.c
/qemu/contrib/plugins/Makefile
/qemu/contrib/plugins/hotblocks.c
/qemu/contrib/plugins/hotpages.c
/qemu/contrib/plugins/howvec.c
/qemu/contrib/plugins/hwprofile.c
/qemu/contrib/plugins/lockstep.c
/qemu/contrib/vhost-user-gpu/vhost-user-gpu.c
/qemu/contrib/vhost-user-gpu/virgl.c
/qemu/contrib/vhost-user-gpu/vugpu.h
/qemu/cpu.c
/qemu/crypto/aes.c
/qemu/crypto/desrfb.c
/qemu/crypto/secret.c
/qemu/crypto/secret_common.c
/qemu/crypto/secret_keyring.c
/qemu/crypto/tlscredsanon.c
/qemu/crypto/tlscredspsk.c
/qemu/crypto/tlscredsx509.c
/qemu/default-configs/targets/hexagon-linux-user.mak
/qemu/disas/hexagon.c
/qemu/disas/meson.build
/qemu/docs/COLO-FT.txt
/qemu/docs/amd-memory-encryption.txt
/qemu/docs/ccid.txt
/qemu/docs/colo-proxy.txt
/qemu/docs/confidential-guest-support.txt
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/clocks.rst
/qemu/docs/devel/fuzzing.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/loads-stores.rst
/qemu/docs/devel/multi-process.rst
/qemu/docs/devel/style.rst
/qemu/docs/devel/tcg-plugins.rst
/qemu/docs/devel/testing.rst
/qemu/docs/devel/tracing.rst
/qemu/docs/devel/writing-qmp-commands.txt
/qemu/docs/interop/firmware.json
/qemu/docs/interop/live-block-operations.rst
/qemu/docs/interop/parallels.txt
/qemu/docs/interop/qmp-intro.txt
/qemu/docs/interop/qmp-spec.txt
/qemu/docs/interop/vhost-user.json
/qemu/docs/meson.build
/qemu/docs/nvdimm.txt
/qemu/docs/papr-pef.txt
/qemu/docs/specs/pci-ids.txt
/qemu/docs/specs/pvpanic.txt
/qemu/docs/sphinx/qapidoc.py
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/arm/versatile.rst
/qemu/docs/system/arm/vexpress.rst
/qemu/docs/system/arm/virt.rst
/qemu/docs/system/build-platforms.rst
/qemu/docs/system/cpu-hotplug.rst
/qemu/docs/system/cpu-models-x86.rst.inc
/qemu/docs/system/deprecated.rst
/qemu/docs/system/index.rst
/qemu/docs/system/multi-process.rst
/qemu/docs/system/removed-features.rst
/qemu/docs/system/s390x/3270.rst
/qemu/docs/system/s390x/protvirt.rst
/qemu/docs/system/target-avr.rst
/qemu/docs/system/tls.rst
/qemu/docs/system/vnc-security.rst
/qemu/docs/tools/qemu-nbd.rst
/qemu/docs/tools/qemu-storage-daemon.rst
/qemu/docs/tools/virtiofsd.rst
/qemu/docs/user/main.rst
/qemu/gdbstub.c
/qemu/hw/Kconfig
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/core.c
/qemu/hw/acpi/ghes.c
/qemu/hw/acpi/hmat.c
/qemu/hw/acpi/hmat.h
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/nvdimm.c
/qemu/hw/acpi/pci.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/armsse.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/digic_boards.c
/qemu/hw/arm/microbit.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/netduino2.c
/qemu/hw/arm/netduinoplus2.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/fdc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/nand.c
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/nvme-ns.h
/qemu/hw/block/nvme.c
/qemu/hw/block/nvme.h
/qemu/hw/block/onenand.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/swim.c
/qemu/hw/block/trace-events
/qemu/hw/block/virtio-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/exynos4210_uart.c
/qemu/hw/core/cpu.c
/qemu/hw/core/machine.c
/qemu/hw/core/ptimer.c
/qemu/hw/display/qxl-logger.c
/qemu/hw/display/qxl-render.c
/qemu/hw/display/qxl.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-3d.c
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/dma/Kconfig
/qemu/hw/dma/meson.build
/qemu/hw/gpio/Kconfig
/qemu/hw/gpio/gpio_pwr.c
/qemu/hw/gpio/meson.build
/qemu/hw/i2c/meson.build
/qemu/hw/i2c/npcm7xx_smbus.c
/qemu/hw/i2c/trace-events
/qemu/hw/i386/Kconfig
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/acpi-common.h
/qemu/hw/i386/acpi-microvm.c
/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/pc_sysfw.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/core.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/intc/loongson_liointc.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xive.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/trace-events
/qemu/hw/isa/vt82c686.c
/qemu/hw/m68k/bootinfo.h
/qemu/hw/m68k/q800.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/meson.build
/qemu/hw/mips/bootloader.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/loongson3_bootp.h
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/mips/meson.build
/qemu/hw/misc/Kconfig
/qemu/hw/misc/arm_integrator_debug.c
/qemu/hw/misc/aspeed_xdma.c
/qemu/hw/misc/imx7_ccm.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/npcm7xx_pwm.c
/qemu/hw/misc/pvpanic-isa.c
/qemu/hw/misc/pvpanic-pci.c
/qemu/hw/misc/pvpanic.c
/qemu/hw/misc/sbsa_ec.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/misc/tz-ppc.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/virtio-net.c
/qemu/hw/nvram/nrf51_nvm.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/gpex-acpi.c
/qemu/hw/pci-host/meson.build
/qemu/hw/pci-host/pnv_phb4.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/remote.c
/qemu/hw/pci-host/trace-events
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/meson.build
/qemu/hw/ppc/pef.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_numa.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/remote/Kconfig
/qemu/hw/remote/iohub.c
/qemu/hw/remote/machine.c
/qemu/hw/remote/memory.c
/qemu/hw/remote/meson.build
/qemu/hw/remote/message.c
/qemu/hw/remote/mpqemu-link.c
/qemu/hw/remote/proxy-memory-listener.c
/qemu/hw/remote/proxy.c
/qemu/hw/remote/remote-obj.c
/qemu/hw/remote/trace-events
/qemu/hw/remote/trace.h
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/spapr_vscsi.c
/qemu/hw/scsi/trace-events
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/aspeed_sdhci.c
/qemu/hw/sd/core.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/tpm/tpm_tis_isa.c
/qemu/hw/tpm/tpm_tis_sysbus.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/pcap.c
/qemu/hw/usb/u2f-passthru.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vhost-backend.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-balloon-pci.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/xen/xen_pt_load_rom.c
/qemu/include/authz/listfile.h
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/nbd.h
/qemu/include/block/nvme.h
/qemu/include/block/snapshot.h
/qemu/include/block/throttle-groups.h
/qemu/include/disas/dis-asm.h
/qemu/include/elf.h
/qemu/include/exec/confidential-guest-support.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/gdbstub.h
/qemu/include/exec/memory.h
/qemu/include/exec/memory_ldst_cached.h.inc
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/tb-context.h
/qemu/include/hw/acpi/acpi-defs.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/acpi/ghes.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/acpi/pci.h
/qemu/include/hw/acpi/vmgenid.h
/qemu/include/hw/arm/armsse.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/boards.h
/qemu/include/hw/clock.h
/qemu/include/hw/core/accel-cpu.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/dma/pl080.h
/qemu/include/hw/i2c/npcm7xx_smbus.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/mem/nvdimm.h
/qemu/include/hw/mips/bootloader.h
/qemu/include/hw/misc/arm_integrator_debug.h
/qemu/include/hw/misc/aspeed_xdma.h
/qemu/include/hw/misc/pvpanic.h
/qemu/include/hw/pci-host/remote.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pci_ids.h
/qemu/include/hw/ppc/pef.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_numa.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/hw/ptimer.h
/qemu/include/hw/remote/iohub.h
/qemu/include/hw/remote/machine.h
/qemu/include/hw/remote/memory.h
/qemu/include/hw/remote/mpqemu-link.h
/qemu/include/hw/remote/proxy-memory-listener.h
/qemu/include/hw/remote/proxy.h
/qemu/include/hw/s390x/pv.h
/qemu/include/hw/scsi/esp.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/sd/aspeed_sdhci.h
/qemu/include/hw/sd/sd.h
/qemu/include/hw/ssi/imx_spi.h
/qemu/include/hw/ssi/pl022.h
/qemu/include/hw/timer/cmsdk-apb-dualtimer.h
/qemu/include/hw/timer/cmsdk-apb-timer.h
/qemu/include/hw/virtio/virtio-gpu.h
/qemu/include/hw/watchdog/cmsdk-apb-watchdog.h
/qemu/include/io/channel.h
/qemu/include/migration/snapshot.h
/qemu/include/qapi/error.h
/qemu/include/qemu/accel.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/error-report.h
/qemu/include/qemu/event_notifier.h
/qemu/include/qemu/fifo8.h
/qemu/include/qemu/int128.h
/qemu/include/qemu/iov.h
/qemu/include/qemu/job.h
/qemu/include/qemu/mmap-alloc.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/typedefs.h
/qemu/include/qemu/userfaultfd.h
/qemu/include/qom/object.h
/qemu/include/scsi/utils.h
/qemu/include/standard-headers/asm-m68k/bootinfo-mac.h
/qemu/include/standard-headers/asm-m68k/bootinfo.h
/qemu/include/sysemu/accel-ops.h
/qemu/include/sysemu/block-backend.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/hvf.h
/qemu/include/sysemu/hw_accel.h
/qemu/include/sysemu/iothread.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/replay.h
/qemu/include/sysemu/sev.h
/qemu/include/ui/console.h
/qemu/include/ui/egl-context.h
/qemu/include/ui/egl-helpers.h
/qemu/include/ui/gtk.h
/qemu/include/ui/qemu-spice.h
/qemu/include/ui/sdl2.h
/qemu/include/ui/spice-display.h
/qemu/io/channel.c
/qemu/iothread.c
/qemu/job.c
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/aarch64/target_signal.h
/qemu/linux-user/aarch64/target_syscall.h
/qemu/linux-user/alpha/target_fcntl.h
/qemu/linux-user/alpha/target_signal.h
/qemu/linux-user/elfload.c
/qemu/linux-user/flatload.c
/qemu/linux-user/generic/signal.h
/qemu/linux-user/generic/sockbits.h
/qemu/linux-user/hexagon/cpu_loop.c
/qemu/linux-user/hexagon/signal.c
/qemu/linux-user/hexagon/sockbits.h
/qemu/linux-user/hexagon/syscall_nr.h
/qemu/linux-user/hexagon/target_cpu.h
/qemu/linux-user/hexagon/target_elf.h
/qemu/linux-user/hexagon/target_fcntl.h
/qemu/linux-user/hexagon/target_signal.h
/qemu/linux-user/hexagon/target_structs.h
/qemu/linux-user/hexagon/target_syscall.h
/qemu/linux-user/hexagon/termbits.h
/qemu/linux-user/hppa/cpu_loop.c
/qemu/linux-user/hppa/target_fcntl.h
/qemu/linux-user/hppa/target_signal.h
/qemu/linux-user/i386/cpu_loop.c
/qemu/linux-user/i386/signal.c
/qemu/linux-user/main.c
/qemu/linux-user/mips/sockbits.h
/qemu/linux-user/mips/target_signal.h
/qemu/linux-user/mips64/syscall_nr.h
/qemu/linux-user/mips64/target_elf.h
/qemu/linux-user/mips64/target_signal.h
/qemu/linux-user/mmap.c
/qemu/linux-user/ppc/signal.c
/qemu/linux-user/qemu.h
/qemu/linux-user/signal.c
/qemu/linux-user/sparc/target_signal.h
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/linux-user/uaccess.c
/qemu/memory_ldst.c.inc
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/page_cache.c
/qemu/migration/page_cache.h
/qemu/migration/qemu-file.c
/qemu/migration/ram.c
/qemu/migration/ram.h
/qemu/migration/savevm.c
/qemu/migration/savevm.h
/qemu/migration/trace-events
/qemu/monitor/hmp-cmds.c
/qemu/monitor/monitor.c
/qemu/monitor/qmp-cmds.c
/qemu/monitor/qmp.c
/qemu/monitor/trace-events
/qemu/net/slirp.c
/qemu/os-posix.c
/qemu/pc-bios/README
/qemu/pc-bios/descriptors/meson.build
/qemu/pc-bios/meson.build
/qemu/plugins/api.c
/qemu/python/qemu/machine.py
/qemu/qapi/char.json
/qemu/qapi/job.json
/qemu/qapi/meson.build
/qemu/qapi/migration.json
/qemu/qapi/misc-target.json
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
commands-posix.c
/qemu/qobject/json-parser.c
/qemu/qobject/qdict.c
/qemu/qobject/qjson.c
/qemu/qom/object.c
/qemu/replay/replay-debugging.c
/qemu/replay/replay-internal.c
/qemu/replay/replay-snapshot.c
/qemu/replay/replay-time.c
/qemu/replay/replay.c
/qemu/scripts/checkpatch.pl
/qemu/scripts/ci/coverage-summary.sh
/qemu/scripts/device-crash-test
/qemu/scripts/entitlement.sh
/qemu/scripts/fix-multiline-comments.sh
/qemu/scripts/gensyscalls.sh
/qemu/scripts/get_maintainer.pl
/qemu/scripts/git-submodule.sh
/qemu/scripts/mtest2make.py
/qemu/scripts/oss-fuzz/minimize_qtest_trace.py
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/events.py
/qemu/scripts/qapi/gen.py
/qemu/scripts/qapi/introspect.py
/qemu/scripts/qapi/main.py
/qemu/scripts/qapi/mypy.ini
/qemu/scripts/qapi/schema.py
/qemu/scripts/qapi/types.py
/qemu/scripts/qapi/visit.py
/qemu/scripts/qemu-binfmt-conf.sh
/qemu/scripts/qmp/qemu-ga-client
/qemu/scripts/simpletrace.py
/qemu/scripts/tracetool/backend/log.py
/qemu/scripts/tracetool/format/log_stap.py
/qemu/scripts/userfaultfd-wrlat.py
/qemu/scsi/utils.c
/qemu/softmmu/cpu-throttle.c
/qemu/softmmu/cpus.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qtest.c
/qemu/softmmu/rtc.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/meson.build
/qemu/stubs/qdev.c
/qemu/stubs/replay-tools.c
/qemu/target/alpha/cpu.c
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/machine.c
/qemu/target/arm/mte_helper.c
/qemu/target/arm/op_helper.c
/qemu/target/arm/syndrome.h
/qemu/target/arm/tlb_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/avr/cpu.c
/qemu/target/avr/helper.c
/qemu/target/cris/cpu.c
/qemu/target/cris/helper.c
/qemu/target/cris/mmu.c
/qemu/target/cris/mmu.h
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hexagon/README
/qemu/target/hexagon/arch.c
/qemu/target/hexagon/arch.h
/qemu/target/hexagon/attribs.h
/qemu/target/hexagon/attribs_def.h.inc
/qemu/target/hexagon/conv_emu.c
/qemu/target/hexagon/conv_emu.h
/qemu/target/hexagon/cpu-param.h
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/cpu_bits.h
/qemu/target/hexagon/decode.c
/qemu/target/hexagon/decode.h
/qemu/target/hexagon/dectree.py
/qemu/target/hexagon/fma_emu.c
/qemu/target/hexagon/fma_emu.h
/qemu/target/hexagon/gdbstub.c
/qemu/target/hexagon/gen_dectree_import.c
/qemu/target/hexagon/gen_helper_funcs.py
/qemu/target/hexagon/gen_helper_protos.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_semantics.c
/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_arch_types.h
/qemu/target/hexagon/hex_common.py
/qemu/target/hexagon/hex_regs.h
/qemu/target/hexagon/iclass.c
/qemu/target/hexagon/iclass.h
/qemu/target/hexagon/imported/allidefs.def
/qemu/target/hexagon/imported/alu.idef
/qemu/target/hexagon/imported/branch.idef
/qemu/target/hexagon/imported/compare.idef
/qemu/target/hexagon/imported/encode.def
/qemu/target/hexagon/imported/encode_pp.def
/qemu/target/hexagon/imported/encode_subinsn.def
/qemu/target/hexagon/imported/float.idef
/qemu/target/hexagon/imported/iclass.def
/qemu/target/hexagon/imported/ldst.idef
/qemu/target/hexagon/imported/macros.def
/qemu/target/hexagon/imported/mpy.idef
/qemu/target/hexagon/imported/shift.idef
/qemu/target/hexagon/imported/subinsns.idef
/qemu/target/hexagon/imported/system.idef
/qemu/target/hexagon/insn.h
/qemu/target/hexagon/internal.h
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/meson.build
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/opcodes.c
/qemu/target/hexagon/opcodes.h
/qemu/target/hexagon/printinsn.c
/qemu/target/hexagon/printinsn.h
/qemu/target/hexagon/reg_fields.c
/qemu/target/hexagon/reg_fields.h
/qemu/target/hexagon/reg_fields_def.h.inc
/qemu/target/hexagon/translate.c
/qemu/target/hexagon/translate.h
/qemu/target/hppa/cpu.c
/qemu/target/hppa/op_helper.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hax/hax-accel-ops.c
/qemu/target/i386/hax/hax-accel-ops.h
/qemu/target/i386/hax/hax-all.c
/qemu/target/i386/hax/hax-mem.c
/qemu/target/i386/hax/hax-posix.c
/qemu/target/i386/hax/hax-windows.c
/qemu/target/i386/hax/hax-windows.h
/qemu/target/i386/hax/meson.build
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/hvf-accel-ops.c
/qemu/target/i386/hvf/hvf-accel-ops.h
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/meson.build
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/hvf/x86_emu.c
/qemu/target/i386/hvf/x86_task.c
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/machine.c
/qemu/target/i386/monitor.c
/qemu/target/i386/sev-stub.c
/qemu/target/i386/sev.c
/qemu/target/i386/sev_i386.h
/qemu/target/i386/tcg/excp_helper.c
/qemu/target/i386/tcg/mem_helper.c
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/meson.build
/qemu/target/i386/whpx/whpx-accel-ops.c
/qemu/target/i386/whpx/whpx-accel-ops.h
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/lm32/cpu.c
/qemu/target/lm32/translate.c
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/helper.c
/qemu/target/m68k/translate.c
/qemu/target/meson.build
/qemu/target/microblaze/cpu.c
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/internal.h
/qemu/target/mips/kvm.c
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/tlb_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate.h
/qemu/target/moxie/cpu.c
/qemu/target/moxie/translate.c
/qemu/target/nios2/cpu.c
/qemu/target/openrisc/cpu.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/translate_init.c.inc
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu_helper.c
/qemu/target/rx/cpu.c
/qemu/target/rx/op_helper.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/excp_helper.c
/qemu/target/s390x/kvm.c
/qemu/target/s390x/mem_helper.c
/qemu/target/sh4/cpu.c
/qemu/target/sh4/gdbstub.c
/qemu/target/sparc/cpu.c
/qemu/target/tilegx/cpu.c
/qemu/target/tricore/cpu.c
/qemu/target/unicore32/cpu.c
/qemu/target/unicore32/translate.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/helper.c
/qemu/tcg/aarch64/tcg-target-con-set.h
/qemu/tcg/aarch64/tcg-target-con-str.h
/qemu/tcg/aarch64/tcg-target.c.inc
/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/i386/tcg-target-con-set.h
/qemu/tcg/i386/tcg-target-con-str.h
/qemu/tcg/i386/tcg-target.c.inc
/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/ppc/tcg-target-con-set.h
/qemu/tcg/ppc/tcg-target-con-str.h
/qemu/tcg/ppc/tcg-target.c.inc
/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/s390/tcg-target-con-set.h
/qemu/tcg/s390/tcg-target-con-str.h
/qemu/tcg/s390/tcg-target.c.inc
/qemu/tcg/sparc/tcg-target-con-set.h
/qemu/tcg/sparc/tcg-target-con-str.h
/qemu/tcg/sparc/tcg-target.c.inc
/qemu/tcg/sparc/tcg-target.h
/qemu/tcg/tcg-common.c
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target-con-set.h
/qemu/tcg/tci/tcg-target-con-str.h
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/Makefile.include
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/acceptance/boot_linux.py
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/linux_ssh_mips_malta.py
/qemu/tests/acceptance/machine_m68k_nextcube.py
/qemu/tests/acceptance/machine_microblaze.py
/qemu/tests/acceptance/machine_mips_loongson3v.py
/qemu/tests/acceptance/machine_ppc.py
/qemu/tests/acceptance/replay_kernel.py
/qemu/tests/acceptance/tcg_plugins.py
/qemu/tests/acceptance/tesseract_utils.py
/qemu/tests/acceptance/virtio-gpu.py
/qemu/tests/acceptance/virtiofs_submounts.py
/qemu/tests/check-block.sh
/qemu/tests/crypto-tls-x509-helpers.c
/qemu/tests/crypto-tls-x509-helpers.h
/qemu/tests/data/acpi/microvm/APIC
/qemu/tests/data/acpi/microvm/APIC.ioapic2
/qemu/tests/data/acpi/microvm/APIC.pcie
/qemu/tests/data/acpi/microvm/DSDT
/qemu/tests/data/acpi/microvm/DSDT.ioapic2
/qemu/tests/data/acpi/microvm/DSDT.pcie
/qemu/tests/data/acpi/microvm/DSDT.rtc
/qemu/tests/data/acpi/microvm/DSDT.usb
/qemu/tests/data/acpi/microvm/FACP
/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/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.nohpet
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/pc/FACP
/qemu/tests/data/acpi/pc/FACP.nosmm
/qemu/tests/data/acpi/pc/HMAT.acpihmat
/qemu/tests/data/acpi/pc/HPET
/qemu/tests/data/acpi/pc/NFIT.dimmpxm
/qemu/tests/data/acpi/pc/SLIT.cphp
/qemu/tests/data/acpi/pc/SLIT.memhp
/qemu/tests/data/acpi/pc/SRAT.acpihmat
/qemu/tests/data/acpi/pc/SRAT.cphp
/qemu/tests/data/acpi/pc/SRAT.dimmpxm
/qemu/tests/data/acpi/pc/SRAT.memhp
/qemu/tests/data/acpi/pc/SRAT.numamem
/qemu/tests/data/acpi/pc/SSDT.dimmpxm
/qemu/tests/data/acpi/pc/WAET
/qemu/tests/data/acpi/q35/APIC
/qemu/tests/data/acpi/q35/APIC.acpihmat
/qemu/tests/data/acpi/q35/APIC.cphp
/qemu/tests/data/acpi/q35/APIC.dimmpxm
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.nohpet
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.tis
/qemu/tests/data/acpi/q35/FACP
/qemu/tests/data/acpi/q35/FACP.nosmm
/qemu/tests/data/acpi/q35/HMAT.acpihmat
/qemu/tests/data/acpi/q35/HPET
/qemu/tests/data/acpi/q35/MCFG
/qemu/tests/data/acpi/q35/NFIT.dimmpxm
/qemu/tests/data/acpi/q35/SLIT.cphp
/qemu/tests/data/acpi/q35/SLIT.memhp
/qemu/tests/data/acpi/q35/SRAT.acpihmat
/qemu/tests/data/acpi/q35/SRAT.cphp
/qemu/tests/data/acpi/q35/SRAT.dimmpxm
/qemu/tests/data/acpi/q35/SRAT.memhp
/qemu/tests/data/acpi/q35/SRAT.mmio64
/qemu/tests/data/acpi/q35/SRAT.numamem
/qemu/tests/data/acpi/q35/SSDT.dimmpxm
/qemu/tests/data/acpi/q35/TPM2.tis
/qemu/tests/data/acpi/q35/WAET
/qemu/tests/data/acpi/virt/APIC
/qemu/tests/data/acpi/virt/APIC.memhp
/qemu/tests/data/acpi/virt/APIC.numamem
/qemu/tests/data/acpi/virt/DSDT
/qemu/tests/data/acpi/virt/DSDT.memhp
/qemu/tests/data/acpi/virt/DSDT.numamem
/qemu/tests/data/acpi/virt/DSDT.pxb
/qemu/tests/data/acpi/virt/FACP
/qemu/tests/data/acpi/virt/FACP.memhp
/qemu/tests/data/acpi/virt/FACP.numamem
/qemu/tests/data/acpi/virt/GTDT
/qemu/tests/data/acpi/virt/GTDT.memhp
/qemu/tests/data/acpi/virt/GTDT.numamem
/qemu/tests/data/acpi/virt/MCFG
/qemu/tests/data/acpi/virt/MCFG.memhp
/qemu/tests/data/acpi/virt/MCFG.numamem
/qemu/tests/data/acpi/virt/NFIT.memhp
/qemu/tests/data/acpi/virt/SLIT.memhp
/qemu/tests/data/acpi/virt/SPCR
/qemu/tests/data/acpi/virt/SPCR.memhp
/qemu/tests/data/acpi/virt/SPCR.numamem
/qemu/tests/data/acpi/virt/SRAT.memhp
/qemu/tests/data/acpi/virt/SRAT.numamem
/qemu/tests/data/acpi/virt/SSDT.memhp
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/docker.py
/qemu/tests/docker/dockerfiles/centos7.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-amd64.docker
/qemu/tests/docker/dockerfiles/empty.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/ubuntu2004.docker
/qemu/tests/guest-debug/run-test.py
/qemu/tests/meson.build
/qemu/tests/pkix_asn1_tab.c
/qemu/tests/plugin/insn.c
/qemu/tests/plugin/mem.c
/qemu/tests/qapi-schema/comments.out
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/empty.out
/qemu/tests/qapi-schema/event-case.out
/qemu/tests/qapi-schema/include-repetition.out
/qemu/tests/qapi-schema/include-simple.out
/qemu/tests/qapi-schema/indented-expr.out
/qemu/tests/qapi-schema/qapi-schema-test.out
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/146.out
/qemu/tests/qemu-iotests/172.out
/qemu/tests/qemu-iotests/185.out
/qemu/tests/qemu-iotests/206.out
/qemu/tests/qemu-iotests/210.out
/qemu/tests/qemu-iotests/233
/qemu/tests/qemu-iotests/259
/qemu/tests/qemu-iotests/264
/qemu/tests/qemu-iotests/264.out
/qemu/tests/qemu-iotests/267.out
/qemu/tests/qemu-iotests/300
/qemu/tests/qemu-iotests/300.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.qemu
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/findtests.py
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/meson.build
/qemu/tests/qemu-iotests/pylintrc
/qemu/tests/qemu-iotests/testenv.py
/qemu/tests/qemu-iotests/testrunner.py
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test.out
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-test
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-test.out
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/boot-sector.c
/qemu/tests/qtest/boot-serial-test.c
/qemu/tests/qtest/cmsdk-apb-dualtimer-test.c
/qemu/tests/qtest/cmsdk-apb-timer-test.c
/qemu/tests/qtest/cmsdk-apb-watchdog-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/libqos/qgraph.c
/qemu/tests/qtest/libqos/qgraph.h
/qemu/tests/qtest/libqos/qgraph_internal.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_pwm-test.c
/qemu/tests/qtest/npcm7xx_smbus-test.c
/qemu/tests/qtest/pvpanic-pci-test.c
/qemu/tests/qtest/qos-test.c
/qemu/tests/qtest/test-x86-cpuid-compat.c
/qemu/tests/qtest/virtio-scsi-test.c
/qemu/tests/qtest/xlnx-can-test.c
/qemu/tests/requirements.txt
/qemu/tests/tcg/Makefile.qemu
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/mte-1.c
/qemu/tests/tcg/aarch64/mte-2.c
/qemu/tests/tcg/aarch64/mte-3.c
/qemu/tests/tcg/aarch64/mte-4.c
/qemu/tests/tcg/aarch64/mte.h
/qemu/tests/tcg/aarch64/pauth-2.c
/qemu/tests/tcg/configure.sh
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/atomics.c
/qemu/tests/tcg/hexagon/dual_stores.c
/qemu/tests/tcg/hexagon/first.S
/qemu/tests/tcg/hexagon/float_convs.ref
/qemu/tests/tcg/hexagon/float_madds.ref
/qemu/tests/tcg/hexagon/fpstuff.c
/qemu/tests/tcg/hexagon/mem_noshuf.c
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/tcg/hexagon/preg_alias.c
/qemu/tests/tcg/i386/Makefile.softmmu-target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/system/Makefile.softmmu-target
/qemu/tests/tcg/x86_64/Makefile.softmmu-target
/qemu/tests/test-authz-pam.c
/qemu/tests/test-bdrv-graph-mod.c
/qemu/tests/test-char.c
/qemu/tests/test-write-threshold.c
/qemu/tools/meson.build
/qemu/tools/virtiofsd/fuse_common.h
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/fuse_lowlevel.h
/qemu/tools/virtiofsd/fuse_virtio.c
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/trace/meson.build
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/egl-context.c
/qemu/ui/egl-headless.c
/qemu/ui/egl-helpers.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk-gl-area.c
/qemu/ui/gtk.c
/qemu/ui/keycodemapdb
/qemu/ui/meson.build
/qemu/ui/sdl2-2d.c
/qemu/ui/sdl2-gl.c
/qemu/ui/sdl2.c
/qemu/ui/spice-app.c
/qemu/ui/spice-core.c
/qemu/ui/spice-display.c
/qemu/ui/vnc.c
/qemu/util/cutils.c
/qemu/util/event_notifier-posix.c
/qemu/util/fifo8.c
/qemu/util/iov.c
/qemu/util/meson.build
/qemu/util/mmap-alloc.c
/qemu/util/oslib-posix.c
/qemu/util/qemu-error.c
/qemu/util/trace-events
/qemu/util/userfaultfd.c
95b3a8c813-Jan-2021 Eric Blake <eblake@redhat.com>

qapi: More complex uses of QAPI_LIST_APPEND

These cases require a bit more thought to review; in each case, the
code was appending to a list, but not with a FOOList **tail variable.

Signed-off-by:

qapi: More complex uses of QAPI_LIST_APPEND

These cases require a bit more thought to review; in each case, the
code was appending to a list, but not with a FOOList **tail variable.

Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20210113221013.390592-6-eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
[Flawed change to qmp_guest_network_get_interfaces() dropped]
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...

c3033fd313-Jan-2021 Eric Blake <eblake@redhat.com>

qapi: Use QAPI_LIST_APPEND in trivial cases

The easiest spots to use QAPI_LIST_APPEND are where we already have an
obvious pointer to the tail of a list. While at it, consistently use
the variable

qapi: Use QAPI_LIST_APPEND in trivial cases

The easiest spots to use QAPI_LIST_APPEND are where we already have an
obvious pointer to the tail of a list. While at it, consistently use
the variable name 'tail' for that purpose.

Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210113221013.390592-5-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...


/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/translate-all.c
/qemu/backends/hostmem.c
/qemu/block.c
/qemu/block/backup-top.c
/qemu/block/backup-top.h
/qemu/block/backup.c
/qemu/block/block-copy.c
/qemu/block/copy-on-read.c
/qemu/block/copy-on-read.h
/qemu/block/dirty-bitmap.c
/qemu/block/export/export.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/qapi.c
/qemu/block/qcow2-bitmap.c
/qemu/block/replication.c
/qemu/block/stream.c
/qemu/block/vmdk.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/crypto/block-luks.c
/qemu/docs/system/deprecated.rst
/qemu/docs/system/removed-features.rst
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p-proxy.c
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/9p.h
/qemu/hw/acpi/cpu.c
/qemu/hw/acpi/memory_hotplug.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/net/allwinner-sun8i-emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/xen_nic.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/tpm/tpm_spapr.c
/qemu/hw/tpm/trace-events
/qemu/hw/usb/bus.c
/qemu/hw/usb/ccid-card-passthru.c
/qemu/hw/usb/core.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-xhci-pci.c
/qemu/hw/usb/hcd-xhci-sysbus.c
/qemu/hw/usb/hcd-xhci.h
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/meson.build
/qemu/hw/usb/pcap.c
/qemu/hw/vfio/ccw.c
/qemu/include/block/block-copy.h
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/blockjob_int.h
/qemu/include/exec/exec-all.h
/qemu/include/hw/sd/sd.h
/qemu/include/hw/usb.h
/qemu/include/net/checksum.h
/qemu/include/qapi/util.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/crc-ccitt.h
/qemu/include/qemu/osdep.h
/qemu/include/scsi/utils.h
/qemu/include/standard-headers/drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.h
/qemu/include/standard-headers/drm/drm_fourcc.h
/qemu/include/standard-headers/linux/const.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/fuse.h
/qemu/include/standard-headers/linux/kernel.h
/qemu/include/standard-headers/linux/pci_regs.h
/qemu/include/standard-headers/linux/vhost_types.h
/qemu/include/standard-headers/linux/virtio_gpu.h
/qemu/include/standard-headers/linux/virtio_ids.h
/qemu/include/tcg/tcg.h
/qemu/include/ui/console.h
/qemu/iothread.c
/qemu/job-qmp.c
/qemu/job.c
/qemu/linux-headers/asm-arm64/kvm.h
/qemu/linux-headers/asm-generic/unistd.h
/qemu/linux-headers/asm-mips/unistd_n32.h
/qemu/linux-headers/asm-mips/unistd_n64.h
/qemu/linux-headers/asm-mips/unistd_o32.h
/qemu/linux-headers/asm-powerpc/unistd_32.h
/qemu/linux-headers/asm-powerpc/unistd_64.h
/qemu/linux-headers/asm-s390/unistd_32.h
/qemu/linux-headers/asm-s390/unistd_64.h
/qemu/linux-headers/asm-x86/kvm.h
/qemu/linux-headers/asm-x86/unistd_32.h
/qemu/linux-headers/asm-x86/unistd_64.h
/qemu/linux-headers/asm-x86/unistd_x32.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/userfaultfd.h
/qemu/linux-headers/linux/vfio.h
/qemu/linux-headers/linux/vhost.h
/qemu/linux-user/alpha/target_fcntl.h
/qemu/linux-user/generic/fcntl.h
/qemu/linux-user/strace.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/meson.build
/qemu/monitor/hmp-cmds.c
/qemu/monitor/qmp-cmds-control.c
/qemu/monitor/qmp-cmds.c
/qemu/net/checksum.c
/qemu/net/filter-rewriter.c
/qemu/net/net.c
/qemu/pc-bios/descriptors/meson.build
/qemu/pc-bios/meson.build
/qemu/qapi/block-core.json
/qemu/qapi/misc.json
/qemu/qemu-img.c
commands-posix.c
commands-win32.c
/qemu/scripts/simplebench/bench-backup.py
/qemu/scripts/simplebench/bench-example.py
/qemu/scripts/simplebench/bench_block_job.py
/qemu/scripts/update-linux-headers.sh
/qemu/scsi/pr-manager.c
/qemu/scsi/utils.c
/qemu/softmmu/vl.c
/qemu/target/i386/cpu.c
/qemu/target/microblaze/cpu.c
/qemu/target/microblaze/cpu.h
/qemu/target/microblaze/helper.c
/qemu/target/microblaze/mmu.c
/qemu/target/microblaze/mmu.h
/qemu/target/s390x/insn-data.def
/qemu/target/s390x/kvm.c
/qemu/target/s390x/mem_helper.c
/qemu/target/s390x/misc_helper.c
/qemu/target/s390x/translate.c
/qemu/tcg/tcg.c
/qemu/tests/acceptance/vnc.py
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/056
/qemu/tests/qemu-iotests/109.out
/qemu/tests/qemu-iotests/118
/qemu/tests/qemu-iotests/118.out
/qemu/tests/qemu-iotests/124
/qemu/tests/qemu-iotests/129
/qemu/tests/qemu-iotests/141.out
/qemu/tests/qemu-iotests/178
/qemu/tests/qemu-iotests/178.out.qcow2
/qemu/tests/qemu-iotests/178.out.raw
/qemu/tests/qemu-iotests/185
/qemu/tests/qemu-iotests/185.out
/qemu/tests/qemu-iotests/219
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/257
/qemu/tests/qemu-iotests/257.out
/qemu/tests/qemu-iotests/297
/qemu/tests/qemu-iotests/297.out
/qemu/tests/qemu-iotests/300
/qemu/tests/qemu-iotests/310
/qemu/tests/qemu-iotests/310.out
/qemu/tests/qemu-iotests/313
/qemu/tests/qemu-iotests/313.out
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/group
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/tcg/s390x/exrl-trt.c
/qemu/tests/tcg/s390x/exrl-trtr.c
/qemu/tests/test-qemu-opts.c
/qemu/tests/test-qobject-output-visitor.c
/qemu/tests/test-string-output-visitor.c
/qemu/ui/vnc-stubs.c
/qemu/ui/vnc.c
/qemu/util/coroutine-sigaltstack.c
/qemu/util/crc-ccitt.c
/qemu/util/meson.build
/qemu/util/qemu-option.c
b846ab7c21-Jan-2021 Paolo Bonzini <pbonzini@redhat.com>

meson: convert wixl detection to Meson

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>


/qemu/.cirrus.yml
/qemu/.gitignore
/qemu/.gitlab-ci.d/containers.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.yml
/qemu/.shippable.yml
/qemu/.travis.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/Kconfig
/qemu/accel/kvm/kvm-all.c
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/tcg-runtime.c
/qemu/accel/tcg/tcg-runtime.h
/qemu/accel/tcg/trace-events
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/audio/alsaaudio.c
/qemu/audio/audio.c
/qemu/audio/audio.h
/qemu/audio/audio_int.h
/qemu/audio/audio_legacy.c
/qemu/audio/audio_template.h
/qemu/audio/audio_win_int.c
/qemu/audio/coreaudio.c
/qemu/audio/dsound_template.h
/qemu/audio/dsoundaudio.c
/qemu/audio/jackaudio.c
/qemu/audio/noaudio.c
/qemu/audio/ossaudio.c
/qemu/audio/paaudio.c
/qemu/audio/sdlaudio.c
/qemu/audio/spiceaudio.c
/qemu/backends/hostmem.c
/qemu/backends/tpm/tpm_util.c
/qemu/block/curl.c
/qemu/block/iscsi.c
/qemu/block/meson.build
/qemu/block/nbd.c
/qemu/block/qcow2.c
/qemu/bsd-user/arm/target_arch_sysarch.h
/qemu/bsd-user/arm/target_syscall.h
/qemu/bsd-user/freebsd/os-strace.h
/qemu/bsd-user/freebsd/strace.list
/qemu/bsd-user/freebsd/syscall_nr.h
/qemu/bsd-user/i386/target_arch_sysarch.h
/qemu/bsd-user/i386/target_syscall.h
/qemu/bsd-user/main.c
/qemu/bsd-user/mips/target_arch_sysarch.h
/qemu/bsd-user/mips/target_syscall.h
/qemu/bsd-user/mips64/target_arch_sysarch.h
/qemu/bsd-user/mips64/target_syscall.h
/qemu/bsd-user/netbsd/os-strace.h
/qemu/bsd-user/openbsd/os-strace.h
/qemu/bsd-user/sparc/target_arch_sysarch.h
/qemu/bsd-user/sparc/target_syscall.h
/qemu/bsd-user/sparc64/target_arch_sysarch.h
/qemu/bsd-user/sparc64/target_syscall.h
/qemu/bsd-user/strace.c
/qemu/bsd-user/syscall.c
/qemu/bsd-user/x86_64/target_arch_sysarch.h
/qemu/bsd-user/x86_64/target_syscall.h
/qemu/chardev/char-socket.c
/qemu/chardev/meson.build
/qemu/configure
/qemu/contrib/elf2dmp/addrspace.c
/qemu/contrib/elf2dmp/addrspace.h
/qemu/contrib/elf2dmp/main.c
/qemu/contrib/elf2dmp/meson.build
/qemu/contrib/vhost-user-scsi/meson.build
/qemu/cpu.c
/qemu/default-configs/devices/arm-softmmu.mak
/qemu/default-configs/devices/mips64el-softmmu.mak
/qemu/default-configs/devices/riscv32-softmmu.mak
/qemu/default-configs/devices/riscv64-softmmu.mak
/qemu/default-configs/targets/aarch64-linux-user.mak
/qemu/default-configs/targets/aarch64_be-linux-user.mak
/qemu/default-configs/targets/arm-linux-user.mak
/qemu/default-configs/targets/armeb-linux-user.mak
/qemu/default-configs/targets/riscv32-linux-user.mak
/qemu/default-configs/targets/riscv32-softmmu.mak
/qemu/default-configs/targets/riscv64-linux-user.mak
/qemu/default-configs/targets/riscv64-softmmu.mak
/qemu/disas.c
/qemu/disas/capstone.c
/qemu/disas/meson.build
/qemu/docs/conf.py
/qemu/docs/devel/clocks.rst
/qemu/docs/devel/control-flow-integrity.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/kconfig.rst
/qemu/docs/devel/rcu.txt
/qemu/docs/devel/tracing.txt
/qemu/docs/meson.build
/qemu/docs/system/arm/cpu-features.rst
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/arm/sabrelite.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/removed-features.rst
/qemu/docs/system/target-arm.rst
/qemu/docs/system/target-mips.rst
/qemu/fsdev/meson.build
/qemu/gdbstub.c
/qemu/hw/9pfs/9p.c
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/adc/meson.build
/qemu/hw/adc/npcm7xx_adc.c
/qemu/hw/adc/trace-events
/qemu/hw/adc/trace.h
/qemu/hw/arm/highbank.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/pxa2xx.c
/qemu/hw/arm/sabrelite.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/audio/meson.build
/qemu/hw/audio/via-ac97.c
/qemu/hw/block/dataplane/virtio-blk.c
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/fdc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/nand.c
/qemu/hw/block/nvme.c
/qemu/hw/block/onenand.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/avr_usart.c
/qemu/hw/char/bcm2835_aux.c
/qemu/hw/char/cadence_uart.c
/qemu/hw/char/cmsdk-apb-uart.c
/qemu/hw/char/debugcon.c
/qemu/hw/char/digic-uart.c
/qemu/hw/char/escc.c
/qemu/hw/char/etraxfs_ser.c
/qemu/hw/char/exynos4210_uart.c
/qemu/hw/char/grlib_apbuart.c
/qemu/hw/char/ibex_uart.c
/qemu/hw/char/imx_serial.c
/qemu/hw/char/ipoctal232.c
/qemu/hw/char/lm32_juart.c
/qemu/hw/char/lm32_uart.c
/qemu/hw/char/mcf_uart.c
/qemu/hw/char/milkymist-uart.c
/qemu/hw/char/nrf51_uart.c
/qemu/hw/char/parallel.c
/qemu/hw/char/pl011.c
/qemu/hw/char/renesas_sci.c
/qemu/hw/char/sclpconsole-lm.c
/qemu/hw/char/sclpconsole.c
/qemu/hw/char/serial-pci-multi.c
/qemu/hw/char/serial.c
/qemu/hw/char/spapr_vty.c
/qemu/hw/char/stm32f2xx_usart.c
/qemu/hw/char/terminal3270.c
/qemu/hw/char/virtio-console.c
/qemu/hw/char/virtio-serial-bus.c
/qemu/hw/char/xilinx_uartlite.c
/qemu/hw/core/clock.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/core/qdev-properties.c
/qemu/hw/hppa/dino.c
/qemu/hw/hyperv/vmbus.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/kvm/i8254.c
/qemu/hw/i386/kvmvapic.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/atapi.c
/qemu/hw/ide/core.c
/qemu/hw/ide/qdev.c
/qemu/hw/input/hid.c
/qemu/hw/intc/Kconfig
/qemu/hw/intc/apic.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/grlib_irqmp.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/loongson_liointc.c
/qemu/hw/intc/meson.build
/qemu/hw/intc/ppc-uic.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/isa/piix3.c
/qemu/hw/isa/trace-events
/qemu/hw/isa/vt82c686.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/mem/npcm7xx_mc.c
/qemu/hw/mips/Kconfig
/qemu/hw/mips/boston.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/fw_cfg.c
/qemu/hw/mips/fw_cfg.h
/qemu/hw/mips/gt64xxx_pci.c
/qemu/hw/mips/loongson3_bootp.c
/qemu/hw/mips/loongson3_bootp.h
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/mips/malta.c
/qemu/hw/mips/meson.build
/qemu/hw/mips/mipssim.c
/qemu/hw/misc/allwinner-sid.c
/qemu/hw/misc/imx6_ccm.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/npcm7xx_clk.c
/qemu/hw/misc/npcm7xx_gcr.c
/qemu/hw/misc/npcm7xx_pwm.c
/qemu/hw/misc/npcm7xx_rng.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/misc/trace-events
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/pcnet-pci.c
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/virtio-net.c
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/npcm7xx_otp.c
/qemu/hw/nvram/spapr_nvram.c
/qemu/hw/pci-bridge/Kconfig
/qemu/hw/pci-bridge/gen_pcie_root_port.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/gpex-acpi.c
/qemu/hw/pci-host/meson.build
/qemu/hw/pci-host/pnv_phb4.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/uninorth.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/shpc.c
/qemu/hw/ppc/Kconfig
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/ppc405.h
/qemu/hw/ppc/ppc405_boards.c
/qemu/hw/ppc/ppc405_uc.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/ppc440_pcix.c
/qemu/hw/ppc/ppc4xx_devs.c
/qemu/hw/ppc/ppc4xx_pci.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_ovec.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/ppc/trace-events
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/exynos4210_rtc.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/rtc/pl031.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/trace-events
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci.c
/qemu/hw/semihosting/Kconfig
/qemu/hw/semihosting/arm-compat-semi.c
/qemu/hw/semihosting/common-semi.h
/qemu/hw/semihosting/meson.build
/qemu/hw/sh4/sh_pci.c
/qemu/hw/sparc/Kconfig
/qemu/hw/sparc/leon3.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/ssi/npcm7xx_fiu.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/digic-timer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/mss-timer.c
/qemu/hw/timer/npcm7xx_timer.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/tpm/tpm_prop.h
/qemu/hw/usb/ccid-card-passthru.c
/qemu/hw/usb/dev-hub.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-ohci-pci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/redirect.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/vfio/pci.c
/qemu/hw/virtio/vhost-user-fs-pci.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost-user-vsock.c
/qemu/hw/virtio/vhost-vsock-common.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-iommu-pci.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-rng.c
/qemu/hw/watchdog/wdt_diag288.c
/qemu/hw/watchdog/wdt_i6300esb.c
/qemu/hw/xen/xen_pt.c
/qemu/include/disas/dis-asm.h
/qemu/include/disas/disas.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/gdbstub.h
/qemu/include/exec/gen-icount.h
/qemu/include/exec/helper-proto.h
/qemu/include/exec/log.h
/qemu/include/exec/translate-all.h
/qemu/include/exec/translator.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/adc/npcm7xx_adc.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/block/block.h
/qemu/include/hw/clock.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/intc/loongson_liointc.h
/qemu/include/hw/intc/ppc-uic.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/m68k/next-cube.h
/qemu/include/hw/misc/macio/gpio.h
/qemu/include/hw/misc/macio/macio.h
/qemu/include/hw/misc/npcm7xx_clk.h
/qemu/include/hw/misc/npcm7xx_pwm.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/ppc/ppc4xx.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_drc.h
/qemu/include/hw/ppc/spapr_ovec.h
/qemu/include/hw/ppc/spapr_xive.h
/qemu/include/hw/qdev-properties-system.h
/qemu/include/hw/qdev-properties.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/sparc/grlib.h
/qemu/include/hw/timer/npcm7xx_timer.h
/qemu/include/hw/virtio/vhost-user-fs.h
/qemu/include/io/channel.h
/qemu/include/net/net.h
/qemu/include/qemu/cacheflush.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/timer.h
/qemu/include/qemu/xxhash.h
/qemu/include/qemu/yank.h
/qemu/include/sysemu/tcg.h
/qemu/include/sysemu/whpx.h
/qemu/include/tcg/tcg-op.h
/qemu/include/tcg/tcg-opc.h
/qemu/include/tcg/tcg.h
/qemu/include/ui/gtk.h
/qemu/io/channel-tls.c
/qemu/io/meson.build
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/arm/meson.build
/qemu/linux-user/exit.c
/qemu/linux-user/ioctls.h
/qemu/linux-user/main.c
/qemu/linux-user/meson.build
/qemu/linux-user/mips/cpu_loop.c
/qemu/linux-user/qemu.h
/qemu/linux-user/riscv/cpu_loop.c
/qemu/linux-user/semihost.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/channel.c
/qemu/migration/colo.c
/qemu/migration/meson.build
/qemu/migration/migration.c
/qemu/migration/multifd.c
/qemu/migration/qemu-file-channel.c
/qemu/migration/savevm.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/misc.c
/qemu/nbd/server.c
/qemu/net/announce.c
/qemu/net/colo-compare.c
/qemu/net/slirp.c
/qemu/plugins/core.c
/qemu/plugins/loader.c
/qemu/po/meson.build
/qemu/python/qemu/console_socket.py
/qemu/qapi/audio.json
/qemu/qapi/meson.build
/qemu/qapi/qapi-schema.json
/qemu/qapi/run-state.json
/qemu/qapi/yank.json
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qemu.nsi
meson.build
/qemu/qom/object.c
/qemu/replay/replay-debugging.c
/qemu/scripts/checkpatch.pl
/qemu/scripts/coccinelle/timer-del-timer-free.cocci
/qemu/scripts/decodetree.py
/qemu/scripts/oss-fuzz/minimize_qtest_trace.py
/qemu/scripts/qemu-gdb.py
/qemu/scripts/qemugdb/coroutine.py
/qemu/scripts/tracetool.py
/qemu/scripts/tracetool/__init__.py
/qemu/scripts/tracetool/backend/ftrace.py
/qemu/scripts/tracetool/backend/log.py
/qemu/scripts/tracetool/backend/syslog.py
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/qemu-seccomp.c
/qemu/softmmu/runstate-action.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/meson.build
/qemu/stubs/meson.build
/qemu/stubs/yank.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/subprojects/libvhost-user/meson.build
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/m_helper.c
/qemu/target/arm/meson.build
/qemu/target/arm/monitor.c
/qemu/target/arm/op_helper.c
/qemu/target/arm/pauth_helper.c
/qemu/target/arm/sve_helper.c
/qemu/target/arm/tlb_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-sve.c
/qemu/target/arm/translate-vfp.c.inc
/qemu/target/arm/translate.c
/qemu/target/avr/cpu.c
/qemu/target/hppa/cpu.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/gdbstub.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/i386/whpx/whpx-apic.c
/qemu/target/i386/whpx/whpx-cpus.c
/qemu/target/i386/whpx/whpx-internal.h
/qemu/target/m68k/m68k-semi.c
/qemu/target/microblaze/cpu.c
/qemu/target/mips/addr.c
/qemu/target/mips/cp0_helper.c
/qemu/target/mips/cp0_timer.c
/qemu/target/mips/cpu-defs.c.inc
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/fpu_helper.c
/qemu/target/mips/fpu_helper.h
/qemu/target/mips/gdbstub.c
/qemu/target/mips/helper.h
/qemu/target/mips/internal.h
/qemu/target/mips/kvm.c
/qemu/target/mips/machine.c
/qemu/target/mips/meson.build
/qemu/target/mips/mips-defs.h
/qemu/target/mips/mips32r6.decode
/qemu/target/mips/mips64r6.decode
/qemu/target/mips/msa32.decode
/qemu/target/mips/msa64.decode
/qemu/target/mips/msa_helper.c
/qemu/target/mips/msa_helper.h.inc
/qemu/target/mips/msa_translate.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/rel6_translate.c
/qemu/target/mips/tlb_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate.h
/qemu/target/mips/translate_addr_const.c
/qemu/target/nios2/nios2-semi.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/gdbstub.c
/qemu/target/riscv/insn_trans/trans_privileged.c.inc
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/pmp.h
/qemu/target/riscv/translate.c
/qemu/target/rx/cpu.c
/qemu/target/s390x/cpu.c
/qemu/target/sh4/cpu.c
/qemu/target/sparc/cpu.c
/qemu/target/tricore/cpu.c
/qemu/tcg/README
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/aarch64/tcg-target.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/mips/tcg-target.c.inc
/qemu/tcg/mips/tcg-target.h
/qemu/tcg/optimize.c
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/ppc/tcg-target.h
/qemu/tcg/riscv/tcg-target.c.inc
/qemu/tcg/riscv/tcg-target.h
/qemu/tcg/s390/tcg-target.c.inc
/qemu/tcg/s390/tcg-target.h
/qemu/tcg/sparc/tcg-target.c.inc
/qemu/tcg/sparc/tcg-target.h
/qemu/tcg/tcg-ldst.c.inc
/qemu/tcg/tcg-op-gvec.c
/qemu/tcg/tcg-op-vec.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg-pool.c.inc
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/machine_s390_ccw_virtio.py
/qemu/tests/check-block.sh
/qemu/tests/data/acpi/microvm/DSDT.pcie
/qemu/tests/data/acpi/virt/DSDT
/qemu/tests/data/acpi/virt/DSDT.memhp
/qemu/tests/data/acpi/virt/DSDT.numamem
/qemu/tests/data/acpi/virt/DSDT.pxb
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/docker.py
/qemu/tests/docker/dockerfiles/alpine.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-amd64.docker
/qemu/tests/docker/dockerfiles/debian10.docker
/qemu/tests/docker/dockerfiles/fedora-i386-cross.docker
/qemu/tests/docker/dockerfiles/opensuse-leap.docker
/qemu/tests/guest-debug/run-test.py
/qemu/tests/meson.build
/qemu/tests/migration/stress.c
/qemu/tests/qemu-iotests/001
/qemu/tests/qemu-iotests/002
/qemu/tests/qemu-iotests/003
/qemu/tests/qemu-iotests/004
/qemu/tests/qemu-iotests/005
/qemu/tests/qemu-iotests/007
/qemu/tests/qemu-iotests/008
/qemu/tests/qemu-iotests/009
/qemu/tests/qemu-iotests/010
/qemu/tests/qemu-iotests/011
/qemu/tests/qemu-iotests/012
/qemu/tests/qemu-iotests/013
/qemu/tests/qemu-iotests/014
/qemu/tests/qemu-iotests/015
/qemu/tests/qemu-iotests/017
/qemu/tests/qemu-iotests/018
/qemu/tests/qemu-iotests/019
/qemu/tests/qemu-iotests/020
/qemu/tests/qemu-iotests/021
/qemu/tests/qemu-iotests/022
/qemu/tests/qemu-iotests/023
/qemu/tests/qemu-iotests/024
/qemu/tests/qemu-iotests/025
/qemu/tests/qemu-iotests/026
/qemu/tests/qemu-iotests/027
/qemu/tests/qemu-iotests/028
/qemu/tests/qemu-iotests/029
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/031
/qemu/tests/qemu-iotests/032
/qemu/tests/qemu-iotests/033
/qemu/tests/qemu-iotests/034
/qemu/tests/qemu-iotests/035
/qemu/tests/qemu-iotests/036
/qemu/tests/qemu-iotests/037
/qemu/tests/qemu-iotests/038
/qemu/tests/qemu-iotests/039
/qemu/tests/qemu-iotests/040
/qemu/tests/qemu-iotests/041
/qemu/tests/qemu-iotests/042
/qemu/tests/qemu-iotests/043
/qemu/tests/qemu-iotests/044
/qemu/tests/qemu-iotests/045
/qemu/tests/qemu-iotests/046
/qemu/tests/qemu-iotests/047
/qemu/tests/qemu-iotests/048
/qemu/tests/qemu-iotests/049
/qemu/tests/qemu-iotests/050
/qemu/tests/qemu-iotests/051
/qemu/tests/qemu-iotests/052
/qemu/tests/qemu-iotests/053
/qemu/tests/qemu-iotests/054
/qemu/tests/qemu-iotests/055
/qemu/tests/qemu-iotests/056
/qemu/tests/qemu-iotests/057
/qemu/tests/qemu-iotests/058
/qemu/tests/qemu-iotests/059
/qemu/tests/qemu-iotests/060
/qemu/tests/qemu-iotests/061
/qemu/tests/qemu-iotests/062
/qemu/tests/qemu-iotests/063
/qemu/tests/qemu-iotests/064
/qemu/tests/qemu-iotests/065
/qemu/tests/qemu-iotests/066
/qemu/tests/qemu-iotests/068
/qemu/tests/qemu-iotests/069
/qemu/tests/qemu-iotests/070
/qemu/tests/qemu-iotests/071
/qemu/tests/qemu-iotests/072
/qemu/tests/qemu-iotests/073
/qemu/tests/qemu-iotests/074
/qemu/tests/qemu-iotests/075
/qemu/tests/qemu-iotests/076
/qemu/tests/qemu-iotests/077
/qemu/tests/qemu-iotests/078
/qemu/tests/qemu-iotests/079
/qemu/tests/qemu-iotests/080
/qemu/tests/qemu-iotests/081
/qemu/tests/qemu-iotests/082
/qemu/tests/qemu-iotests/083
/qemu/tests/qemu-iotests/084
/qemu/tests/qemu-iotests/085
/qemu/tests/qemu-iotests/086
/qemu/tests/qemu-iotests/087
/qemu/tests/qemu-iotests/088
/qemu/tests/qemu-iotests/089
/qemu/tests/qemu-iotests/090
/qemu/tests/qemu-iotests/091
/qemu/tests/qemu-iotests/092
/qemu/tests/qemu-iotests/093
/qemu/tests/qemu-iotests/094
/qemu/tests/qemu-iotests/095
/qemu/tests/qemu-iotests/096
/qemu/tests/qemu-iotests/097
/qemu/tests/qemu-iotests/098
/qemu/tests/qemu-iotests/099
/qemu/tests/qemu-iotests/101
/qemu/tests/qemu-iotests/102
/qemu/tests/qemu-iotests/103
/qemu/tests/qemu-iotests/104
/qemu/tests/qemu-iotests/105
/qemu/tests/qemu-iotests/106
/qemu/tests/qemu-iotests/107
/qemu/tests/qemu-iotests/108
/qemu/tests/qemu-iotests/109
/qemu/tests/qemu-iotests/110
/qemu/tests/qemu-iotests/111
/qemu/tests/qemu-iotests/112
/qemu/tests/qemu-iotests/113
/qemu/tests/qemu-iotests/114
/qemu/tests/qemu-iotests/115
/qemu/tests/qemu-iotests/116
/qemu/tests/qemu-iotests/117
/qemu/tests/qemu-iotests/118
/qemu/tests/qemu-iotests/119
/qemu/tests/qemu-iotests/120
/qemu/tests/qemu-iotests/121
/qemu/tests/qemu-iotests/122
/qemu/tests/qemu-iotests/123
/qemu/tests/qemu-iotests/124
/qemu/tests/qemu-iotests/125
/qemu/tests/qemu-iotests/126
/qemu/tests/qemu-iotests/127
/qemu/tests/qemu-iotests/128
/qemu/tests/qemu-iotests/129
/qemu/tests/qemu-iotests/130
/qemu/tests/qemu-iotests/131
/qemu/tests/qemu-iotests/132
/qemu/tests/qemu-iotests/133
/qemu/tests/qemu-iotests/134
/qemu/tests/qemu-iotests/135
/qemu/tests/qemu-iotests/136
/qemu/tests/qemu-iotests/137
/qemu/tests/qemu-iotests/138
/qemu/tests/qemu-iotests/139
/qemu/tests/qemu-iotests/140
/qemu/tests/qemu-iotests/141
/qemu/tests/qemu-iotests/143
/qemu/tests/qemu-iotests/144
/qemu/tests/qemu-iotests/145
/qemu/tests/qemu-iotests/146
/qemu/tests/qemu-iotests/147
/qemu/tests/qemu-iotests/148
/qemu/tests/qemu-iotests/149
/qemu/tests/qemu-iotests/150
/qemu/tests/qemu-iotests/151
/qemu/tests/qemu-iotests/152
/qemu/tests/qemu-iotests/153
/qemu/tests/qemu-iotests/154
/qemu/tests/qemu-iotests/155
/qemu/tests/qemu-iotests/156
/qemu/tests/qemu-iotests/157
/qemu/tests/qemu-iotests/158
/qemu/tests/qemu-iotests/159
/qemu/tests/qemu-iotests/160
/qemu/tests/qemu-iotests/161
/qemu/tests/qemu-iotests/162
/qemu/tests/qemu-iotests/163
/qemu/tests/qemu-iotests/165
/qemu/tests/qemu-iotests/169
/qemu/tests/qemu-iotests/170
/qemu/tests/qemu-iotests/171
/qemu/tests/qemu-iotests/172
/qemu/tests/qemu-iotests/173
/qemu/tests/qemu-iotests/174
/qemu/tests/qemu-iotests/175
/qemu/tests/qemu-iotests/175.out
/qemu/tests/qemu-iotests/176
/qemu/tests/qemu-iotests/177
/qemu/tests/qemu-iotests/178
/qemu/tests/qemu-iotests/179
/qemu/tests/qemu-iotests/181
/qemu/tests/qemu-iotests/182
/qemu/tests/qemu-iotests/183
/qemu/tests/qemu-iotests/184
/qemu/tests/qemu-iotests/185
/qemu/tests/qemu-iotests/186
/qemu/tests/qemu-iotests/187
/qemu/tests/qemu-iotests/188
/qemu/tests/qemu-iotests/189
/qemu/tests/qemu-iotests/190
/qemu/tests/qemu-iotests/191
/qemu/tests/qemu-iotests/192
/qemu/tests/qemu-iotests/194
/qemu/tests/qemu-iotests/195
/qemu/tests/qemu-iotests/196
/qemu/tests/qemu-iotests/197
/qemu/tests/qemu-iotests/198
/qemu/tests/qemu-iotests/199
/qemu/tests/qemu-iotests/200
/qemu/tests/qemu-iotests/201
/qemu/tests/qemu-iotests/202
/qemu/tests/qemu-iotests/203
/qemu/tests/qemu-iotests/204
/qemu/tests/qemu-iotests/205
/qemu/tests/qemu-iotests/206
/qemu/tests/qemu-iotests/207
/qemu/tests/qemu-iotests/208
/qemu/tests/qemu-iotests/209
/qemu/tests/qemu-iotests/210
/qemu/tests/qemu-iotests/211
/qemu/tests/qemu-iotests/212
/qemu/tests/qemu-iotests/213
/qemu/tests/qemu-iotests/214
/qemu/tests/qemu-iotests/215
/qemu/tests/qemu-iotests/216
/qemu/tests/qemu-iotests/217
/qemu/tests/qemu-iotests/218
/qemu/tests/qemu-iotests/219
/qemu/tests/qemu-iotests/220
/qemu/tests/qemu-iotests/221
/qemu/tests/qemu-iotests/222
/qemu/tests/qemu-iotests/223
/qemu/tests/qemu-iotests/224
/qemu/tests/qemu-iotests/225
/qemu/tests/qemu-iotests/226
/qemu/tests/qemu-iotests/227
/qemu/tests/qemu-iotests/228
/qemu/tests/qemu-iotests/229
/qemu/tests/qemu-iotests/231
/qemu/tests/qemu-iotests/232
/qemu/tests/qemu-iotests/233
/qemu/tests/qemu-iotests/234
/qemu/tests/qemu-iotests/235
/qemu/tests/qemu-iotests/236
/qemu/tests/qemu-iotests/237
/qemu/tests/qemu-iotests/238
/qemu/tests/qemu-iotests/239
/qemu/tests/qemu-iotests/240
/qemu/tests/qemu-iotests/241
/qemu/tests/qemu-iotests/242
/qemu/tests/qemu-iotests/243
/qemu/tests/qemu-iotests/244
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/246
/qemu/tests/qemu-iotests/247
/qemu/tests/qemu-iotests/248
/qemu/tests/qemu-iotests/249
/qemu/tests/qemu-iotests/250
/qemu/tests/qemu-iotests/251
/qemu/tests/qemu-iotests/252
/qemu/tests/qemu-iotests/253
/qemu/tests/qemu-iotests/254
/qemu/tests/qemu-iotests/255
/qemu/tests/qemu-iotests/256
/qemu/tests/qemu-iotests/257
/qemu/tests/qemu-iotests/258
/qemu/tests/qemu-iotests/259
/qemu/tests/qemu-iotests/260
/qemu/tests/qemu-iotests/261
/qemu/tests/qemu-iotests/262
/qemu/tests/qemu-iotests/263
/qemu/tests/qemu-iotests/264
/qemu/tests/qemu-iotests/265
/qemu/tests/qemu-iotests/266
/qemu/tests/qemu-iotests/267
/qemu/tests/qemu-iotests/268
/qemu/tests/qemu-iotests/270
/qemu/tests/qemu-iotests/271
/qemu/tests/qemu-iotests/271.out
/qemu/tests/qemu-iotests/272
/qemu/tests/qemu-iotests/273
/qemu/tests/qemu-iotests/274
/qemu/tests/qemu-iotests/277
/qemu/tests/qemu-iotests/279
/qemu/tests/qemu-iotests/280
/qemu/tests/qemu-iotests/281
/qemu/tests/qemu-iotests/282
/qemu/tests/qemu-iotests/283
/qemu/tests/qemu-iotests/284
/qemu/tests/qemu-iotests/286
/qemu/tests/qemu-iotests/287
/qemu/tests/qemu-iotests/287.out
/qemu/tests/qemu-iotests/288
/qemu/tests/qemu-iotests/289
/qemu/tests/qemu-iotests/290
/qemu/tests/qemu-iotests/291
/qemu/tests/qemu-iotests/292
/qemu/tests/qemu-iotests/293
/qemu/tests/qemu-iotests/294
/qemu/tests/qemu-iotests/295
/qemu/tests/qemu-iotests/296
/qemu/tests/qemu-iotests/297
/qemu/tests/qemu-iotests/298
/qemu/tests/qemu-iotests/299
/qemu/tests/qemu-iotests/300
/qemu/tests/qemu-iotests/301
/qemu/tests/qemu-iotests/302
/qemu/tests/qemu-iotests/303
/qemu/tests/qemu-iotests/304
/qemu/tests/qemu-iotests/305
/qemu/tests/qemu-iotests/307
/qemu/tests/qemu-iotests/308
/qemu/tests/qemu-iotests/309
/qemu/tests/qemu-iotests/312
/qemu/tests/qemu-iotests/common.env.in
/qemu/tests/qemu-iotests/group
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/meson.build
/qemu/tests/qtest/arm-cpu-features.c
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/libqos/malloc-pc.c
/qemu/tests/qtest/libqos/malloc-spapr.c
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/m25p80-test.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_adc-test.c
/qemu/tests/qtest/npcm7xx_pwm-test.c
/qemu/tests/qtest/tpm-util.c
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/aarch64/Makefile.softmmu-target
/qemu/tests/tcg/aarch64/gdbstub/test-sve-ioctl.py
/qemu/tests/tcg/aarch64/system/boot.S
/qemu/tests/tcg/i386/Makefile.softmmu-target
/qemu/tests/tcg/i386/system/boot.S
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/gdbstub/memory.py
/qemu/tests/tcg/multiarch/gdbstub/test-qxfer-auxv-read.py
/qemu/tests/tcg/multiarch/system/Makefile.softmmu-target
/qemu/tests/tcg/multiarch/system/memory.c
/qemu/tests/tcg/x86_64/Makefile.softmmu-target
/qemu/tests/tcg/x86_64/system/boot.S
/qemu/tests/test-char.c
/qemu/tests/test-xbzrle.c
/qemu/tools/meson.build
/qemu/trace/control.c
/qemu/trace/control.h
/qemu/trace/meson.build
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk.c
/qemu/ui/meson.build
/qemu/ui/spice-core.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/cacheflush.c
/qemu/util/cacheinfo.c
/qemu/util/main-loop.c
/qemu/util/meson.build
/qemu/util/oslib-posix.c
/qemu/util/oslib-win32.c
/qemu/util/qemu-timer-common.c
/qemu/util/readline.c
/qemu/util/throttle.c
/qemu/util/yank.c
/qemu/version.rc
5b723a5d27-Nov-2020 Thomas Huth <thuth@redhat.com>

qga/commands-posix: Send CCW address on s390x with the fsinfo data

We need the CCW address on the libvirt side to correctly identify
the disk, so add this information to the GuestDiskAddress on s390

qga/commands-posix: Send CCW address on s390x with the fsinfo data

We need the CCW address on the libvirt side to correctly identify
the disk, so add this information to the GuestDiskAddress on s390x.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Michael Roth <michael.roth@amd.com>
Message-Id: <20201127082353.448251-1-thuth@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>

show more ...


/qemu/.mailmap
/qemu/CODING_STYLE.rst
/qemu/MAINTAINERS
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/tcg-cpus-icount.c
/qemu/accel/tcg/tcg-cpus-icount.h
/qemu/accel/tcg/tcg-cpus-mttcg.c
/qemu/accel/tcg/tcg-cpus-rr.c
/qemu/accel/tcg/tcg-cpus-rr.h
/qemu/accel/tcg/tcg-cpus.c
/qemu/accel/tcg/tcg-cpus.h
/qemu/accel/tcg/translate-all.c
/qemu/audio/audio.c
/qemu/audio/audio.h
/qemu/audio/coreaudio.c
/qemu/backends/tpm/tpm_util.c
/qemu/block.c
/qemu/block/accounting.c
/qemu/block/curl.c
/qemu/block/export/export.c
/qemu/block/export/fuse.c
/qemu/block/export/meson.build
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/quorum.c
/qemu/block/throttle-groups.c
/qemu/blockdev.c
/qemu/chardev/char-mux.c
/qemu/chardev/char.c
/qemu/chardev/meson.build
/qemu/configure
/qemu/contrib/elf2dmp/pdb.c
/qemu/contrib/elf2dmp/qemu_elf.c
/qemu/cpu.c
/qemu/docs/devel/loads-stores.rst
/qemu/docs/devel/writing-qmp-commands.txt
/qemu/docs/meson.build
/qemu/docs/specs/tpm.rst
/qemu/docs/sphinx/kerneldoc.py
/qemu/docs/system/deprecated.rst
/qemu/docs/system/index.rst
/qemu/docs/system/removed-features.rst
/qemu/fsdev/9p-marshal.h
/qemu/fsdev/file-op-9p.h
/qemu/gdbstub.c
/qemu/hmp-commands.hx
/qemu/hw/alpha/dp264.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/digic_boards.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/tosa.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/cs4231.c
/qemu/hw/avr/boot.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/serial.c
/qemu/hw/core/cpu.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/meson.build
/qemu/hw/core/numa.c
/qemu/hw/core/qdev-prop-internal.h
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/core/qdev-properties.c
/qemu/hw/core/qdev.c
/qemu/hw/core/register.c
/qemu/hw/core/stream.c
/qemu/hw/cris/axis_dev88.c
/qemu/hw/cris/boot.c
/qemu/hw/cris/boot.h
/qemu/hw/display/Kconfig
/qemu/hw/display/cg3.c
/qemu/hw/display/meson.build
/qemu/hw/display/pxa2xx_lcd.c
/qemu/hw/display/ssd0323.c
/qemu/hw/display/tcx.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/hppa/machine.c
/qemu/hw/i386/fw_cfg.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/apic.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/microvm.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_sysfw.c
/qemu/hw/i386/vmport.c
/qemu/hw/i386/x86.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/input/Kconfig
/qemu/hw/input/ads7846.c
/qemu/hw/input/meson.build
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/ibex_plic.c
/qemu/hw/intc/meson.build
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xive.c
/qemu/hw/lm32/milkymist.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/mcf5208.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/q800.c
/qemu/hw/microblaze/boot.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/cps.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/malta.c
/qemu/hw/mips/meson.build
/qemu/hw/mips/mipssim.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/emc141x.c
/qemu/hw/misc/max111x.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/tmp421.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/moxie/moxiesim.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/nios2/10m50_devboard.c
/qemu/hw/nios2/boot.c
/qemu/hw/nios2/meson.build
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/openrisc/Kconfig
/qemu/hw/openrisc/meson.build
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/pci-host/pam.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci/msix.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc405_boards.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/ppc/trace-events
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/rx/rx62n.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/ipl.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/sh4/shix.c
/qemu/hw/smbios/smbios.c
/qemu/hw/sparc/leon3.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/sparc64.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/pl022.c
/qemu/hw/ssi/ssi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/usb/Kconfig
/qemu/hw/usb/core.c
/qemu/hw/usb/hcd-dwc3.c
/qemu/hw/usb/meson.build
/qemu/hw/usb/xlnx-usb-subsystem.c
/qemu/hw/usb/xlnx-versal-usb2-ctrl-regs.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/watchdog/wdt_diag288.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xen/xen_pt_config_init.c
/qemu/hw/xen/xen_pt_msi.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/fuse.h
/qemu/include/chardev/char.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/poison.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/mips/cpudevs.h
/qemu/include/hw/misc/emc141x_regs.h
/qemu/include/hw/misc/max111x.h
/qemu/include/hw/pci-host/i440fx.h
/qemu/include/hw/pci-host/pam.h
/qemu/include/hw/pci-host/q35.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_drc.h
/qemu/include/hw/ppc/spapr_nvdimm.h
/qemu/include/hw/ppc/xics_spapr.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/qdev-properties.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/riscv/microchip_pfsoc.h
/qemu/include/hw/riscv/opentitan.h
/qemu/include/hw/riscv/spike.h
/qemu/include/hw/riscv/virt.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/ssi/ssi.h
/qemu/include/hw/ssi/xilinx_spips.h
/qemu/include/hw/stream.h
/qemu/include/hw/usb/hcd-dwc3.h
/qemu/include/hw/usb/xlnx-usb-subsystem.h
/qemu/include/hw/usb/xlnx-versal-usb2-ctrl-regs.h
/qemu/include/hw/xen/interface/io/ring.h
/qemu/include/migration/misc.h
/qemu/include/monitor/monitor.h
/qemu/include/qapi/qmp/dispatch.h
/qemu/include/qemu-common.h
/qemu/include/qemu/atomic.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/config-file.h
/qemu/include/qemu/datadir.h
/qemu/include/qemu/option.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/standard-headers/asm-x86/kvm_para.h
/qemu/include/sysemu/dma.h
/qemu/include/sysemu/runstate-action.h
/qemu/include/sysemu/runstate.h
/qemu/include/sysemu/sev.h
/qemu/include/sysemu/sysemu.h
/qemu/include/sysemu/whpx.h
/qemu/include/ui/console.h
/qemu/linux-user/ioctls.h
/qemu/linux-user/main.c
/qemu/linux-user/strace.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/migration.c
/qemu/monitor/hmp.c
/qemu/monitor/misc.c
/qemu/monitor/qmp-cmds.c
/qemu/net/can/can_host.c
/qemu/net/dump.c
/qemu/net/filter-buffer.c
/qemu/net/filter-mirror.c
/qemu/net/filter-rewriter.c
/qemu/net/filter.c
/qemu/pc-bios/optionrom/Makefile
/qemu/plugins/loader.c
/qemu/python/qemu/machine.py
/qemu/qapi/block-core.json
/qemu/qapi/block-export.json
/qemu/qapi/block.json
/qemu/qapi/char.json
/qemu/qapi/control.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/qdev.json
/qemu/qapi/qmp-dispatch.c
/qemu/qapi/run-state.json
/qemu/qapi/ui.json
/qemu/qemu-options.hx
commands-posix.c
qapi-schema.json
/qemu/qom/object.c
/qemu/qom/qom-qmp-cmds.c
/qemu/scripts/cocci-macro-file.h
/qemu/scripts/git.orderfile
/qemu/scripts/kernel-doc
/qemu/softmmu/cpus.c
/qemu/softmmu/datadir.c
/qemu/softmmu/device_tree.c
/qemu/softmmu/dma-helpers.c
/qemu/softmmu/globals.c
/qemu/softmmu/icount.c
/qemu/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/rtc.c
/qemu/softmmu/runstate-action.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/meson.build
/qemu/stubs/qmp-command-available.c
/qemu/target/arm/arm-semi.c
/qemu/target/arm/cpu64.c
/qemu/target/i386/cpu-dump.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hax/hax-all.c
/qemu/target/i386/hax/hax-cpus.c
/qemu/target/i386/hax/hax-cpus.h
/qemu/target/i386/hax/hax-i386.h
/qemu/target/i386/hax/hax-interface.h
/qemu/target/i386/hax/hax-mem.c
/qemu/target/i386/hax/hax-posix.c
/qemu/target/i386/hax/hax-posix.h
/qemu/target/i386/hax/hax-windows.c
/qemu/target/i386/hax/hax-windows.h
/qemu/target/i386/hax/meson.build
/qemu/target/i386/helper.c
/qemu/target/i386/kvm/hyperv-proto.h
/qemu/target/i386/kvm/hyperv-stub.c
/qemu/target/i386/kvm/hyperv.c
/qemu/target/i386/kvm/hyperv.h
/qemu/target/i386/kvm/kvm-stub.c
/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/trace.h
/qemu/target/i386/machine.c
/qemu/target/i386/meson.build
/qemu/target/i386/monitor.c
/qemu/target/i386/sev-stub.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/bpt_helper.c
/qemu/target/i386/tcg/cc_helper.c
/qemu/target/i386/tcg/cc_helper_template.h
/qemu/target/i386/tcg/excp_helper.c
/qemu/target/i386/tcg/fpu_helper.c
/qemu/target/i386/tcg/helper-tcg.h
/qemu/target/i386/tcg/int_helper.c
/qemu/target/i386/tcg/mem_helper.c
/qemu/target/i386/tcg/meson.build
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/i386/tcg/mpx_helper.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/smm_helper.c
/qemu/target/i386/tcg/svm_helper.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/tcg-cpu.h
/qemu/target/i386/tcg/tcg-stub.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/trace-events
/qemu/target/i386/whpx/meson.build
/qemu/target/i386/whpx/whp-dispatch.h
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/i386/whpx/whpx-apic.c
/qemu/target/i386/whpx/whpx-cpus.c
/qemu/target/i386/whpx/whpx-cpus.h
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/fpu_helper.c
/qemu/target/m68k/m68k-semi.c
/qemu/target/m68k/translate.c
/qemu/target/mips/addr.c
/qemu/target/mips/cp0_helper.c
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/fpu_helper.c
/qemu/target/mips/helper.c
/qemu/target/mips/internal.h
/qemu/target/mips/kvm.c
/qemu/target/mips/meson.build
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate_init.c.inc
/qemu/target/nios2/cpu.c
/qemu/target/nios2/cpu.h
/qemu/target/nios2/op_helper.c
/qemu/target/openrisc/cpu.c
/qemu/target/openrisc/cpu.h
/qemu/target/ppc/cpu-qom.h
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/machine.c
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/vsx-impl.c.inc
/qemu/target/ppc/translate_init.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/fpu_helper.c
/qemu/target/riscv/helper.h
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu_features.c
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/excp_helper.c
/qemu/target/s390x/mem_helper.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/sparc/cpu.c
/qemu/tests/acceptance/machine_s390_ccw_virtio.py
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/qemu-iotests/025
/qemu/tests/qemu-iotests/026
/qemu/tests/qemu-iotests/028
/qemu/tests/qemu-iotests/028.out
/qemu/tests/qemu-iotests/031
/qemu/tests/qemu-iotests/034
/qemu/tests/qemu-iotests/036
/qemu/tests/qemu-iotests/037
/qemu/tests/qemu-iotests/038
/qemu/tests/qemu-iotests/039
/qemu/tests/qemu-iotests/046
/qemu/tests/qemu-iotests/046.out
/qemu/tests/qemu-iotests/050
/qemu/tests/qemu-iotests/054
/qemu/tests/qemu-iotests/060
/qemu/tests/qemu-iotests/071
/qemu/tests/qemu-iotests/079
/qemu/tests/qemu-iotests/080
/qemu/tests/qemu-iotests/089
/qemu/tests/qemu-iotests/089.out
/qemu/tests/qemu-iotests/090
/qemu/tests/qemu-iotests/091
/qemu/tests/qemu-iotests/095
/qemu/tests/qemu-iotests/097
/qemu/tests/qemu-iotests/098
/qemu/tests/qemu-iotests/102
/qemu/tests/qemu-iotests/103
/qemu/tests/qemu-iotests/106
/qemu/tests/qemu-iotests/107
/qemu/tests/qemu-iotests/108
/qemu/tests/qemu-iotests/111
/qemu/tests/qemu-iotests/112
/qemu/tests/qemu-iotests/115
/qemu/tests/qemu-iotests/117
/qemu/tests/qemu-iotests/120
/qemu/tests/qemu-iotests/121
/qemu/tests/qemu-iotests/127
/qemu/tests/qemu-iotests/133
/qemu/tests/qemu-iotests/137
/qemu/tests/qemu-iotests/138
/qemu/tests/qemu-iotests/140
/qemu/tests/qemu-iotests/154
/qemu/tests/qemu-iotests/161
/qemu/tests/qemu-iotests/171
/qemu/tests/qemu-iotests/174
/qemu/tests/qemu-iotests/175
/qemu/tests/qemu-iotests/176
/qemu/tests/qemu-iotests/177
/qemu/tests/qemu-iotests/179
/qemu/tests/qemu-iotests/183
/qemu/tests/qemu-iotests/186
/qemu/tests/qemu-iotests/187
/qemu/tests/qemu-iotests/191
/qemu/tests/qemu-iotests/195
/qemu/tests/qemu-iotests/200
/qemu/tests/qemu-iotests/200.out
/qemu/tests/qemu-iotests/204
/qemu/tests/qemu-iotests/206
/qemu/tests/qemu-iotests/206.out
/qemu/tests/qemu-iotests/214
/qemu/tests/qemu-iotests/217
/qemu/tests/qemu-iotests/220
/qemu/tests/qemu-iotests/221
/qemu/tests/qemu-iotests/221.out
/qemu/tests/qemu-iotests/229
/qemu/tests/qemu-iotests/229.out
/qemu/tests/qemu-iotests/242
/qemu/tests/qemu-iotests/247
/qemu/tests/qemu-iotests/249
/qemu/tests/qemu-iotests/250
/qemu/tests/qemu-iotests/252
/qemu/tests/qemu-iotests/265
/qemu/tests/qemu-iotests/268
/qemu/tests/qemu-iotests/272
/qemu/tests/qemu-iotests/273
/qemu/tests/qemu-iotests/279
/qemu/tests/qemu-iotests/286
/qemu/tests/qemu-iotests/287
/qemu/tests/qemu-iotests/289
/qemu/tests/qemu-iotests/290
/qemu/tests/qemu-iotests/291
/qemu/tests/qemu-iotests/292
/qemu/tests/qemu-iotests/293
/qemu/tests/qemu-iotests/294
/qemu/tests/qemu-iotests/305
/qemu/tests/qemu-iotests/308
/qemu/tests/qemu-iotests/308.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/group
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/emc141x-test.c
/qemu/tests/qtest/fuzz-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/pflash-cfi02-test.c
/qemu/tests/qtest/pvpanic-test.c
/qemu/tests/qtest/qmp-test.c
/qemu/tests/qtest/test-filter-redirector.c
/qemu/tests/qtest/vhost-user-test.c
/qemu/tests/tcg/arm/fcvt.c
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/i386/test-i386-bmi2.c
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/test-char.c
/qemu/tests/test-qemu-opts.c
/qemu/tests/test-write-threshold.c
/qemu/tools/virtiofsd/fuse_common.h
/qemu/ui/console.c
/qemu/ui/keymaps.c
/qemu/ui/sdl2.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/qemu-config.c
/qemu/util/qemu-option.c
eab3a46711-Dec-2020 Markus Armbruster <armbru@redhat.com>

qobject: Change qobject_to_json()'s value to GString

qobject_to_json() and qobject_to_json_pretty() build a GString, then
covert it to QString. Just one of the callers actually needs a
QString: qem

qobject: Change qobject_to_json()'s value to GString

qobject_to_json() and qobject_to_json_pretty() build a GString, then
covert it to QString. Just one of the callers actually needs a
QString: qemu_rbd_parse_filename(). A few others need a string they
can modify: qmp_send_response(), qga's send_response(), to_json_str(),
and qmp_fd_vsend_fds(). The remainder just need a string.

Change qobject_to_json() and qobject_to_json_pretty() to return the
GString.

qemu_rbd_parse_filename() now has to convert to QString. All others
save a QString temporary. to_json_str() actually becomes a bit
simpler, because GString provides more convenient modification
functions.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20201211171152.146877-6-armbru@redhat.com>

show more ...

54aa3de713-Nov-2020 Eric Blake <eblake@redhat.com>

qapi: Use QAPI_LIST_PREPEND() where possible

Anywhere we create a list of just one item or by prepending items
(typically because order doesn't matter), we can use
QAPI_LIST_PREPEND(). But places w

qapi: Use QAPI_LIST_PREPEND() where possible

Anywhere we create a list of just one item or by prepending items
(typically because order doesn't matter), we can use
QAPI_LIST_PREPEND(). But places where we must keep the list in order
by appending remain open-coded until later patches.

Note that as a side effect, this also performs a cleanup of two minor
issues in qga/commands-posix.c: the old code was performing
new = g_malloc0(sizeof(*ret));
which 1) is confusing because you have to verify whether 'new' and
'ret' are variables with the same type, and 2) would conflict with C++
compilation (not an actual problem for this file, but makes
copy-and-paste harder).

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <20201113011340.463563-5-eblake@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
[Straightforward conflicts due to commit a8aa94b5f8 "qga: update
schema for guest-get-disks 'dependents' field" and commit a10b453a52
"target/mips: Move mips_cpu_add_definition() from helper.c to cpu.c"
resolved. Commit message tweaked.]
Signed-off-by: Markus Armbruster <armbru@redhat.com>

show more ...


/qemu/.mailmap
/qemu/CODING_STYLE.rst
/qemu/MAINTAINERS
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/tcg-cpus-icount.c
/qemu/accel/tcg/tcg-cpus-icount.h
/qemu/accel/tcg/tcg-cpus-mttcg.c
/qemu/accel/tcg/tcg-cpus-rr.c
/qemu/accel/tcg/tcg-cpus-rr.h
/qemu/accel/tcg/tcg-cpus.c
/qemu/accel/tcg/tcg-cpus.h
/qemu/accel/tcg/translate-all.c
/qemu/audio/audio.c
/qemu/audio/audio.h
/qemu/audio/coreaudio.c
/qemu/backends/tpm/tpm_util.c
/qemu/block.c
/qemu/block/accounting.c
/qemu/block/curl.c
/qemu/block/export/export.c
/qemu/block/export/fuse.c
/qemu/block/export/meson.build
/qemu/block/file-posix.c
/qemu/block/gluster.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/qapi.c
/qemu/block/quorum.c
/qemu/block/throttle-groups.c
/qemu/blockdev.c
/qemu/chardev/char-mux.c
/qemu/chardev/char.c
/qemu/chardev/meson.build
/qemu/configure
/qemu/contrib/elf2dmp/pdb.c
/qemu/contrib/elf2dmp/qemu_elf.c
/qemu/cpu.c
/qemu/docs/devel/loads-stores.rst
/qemu/docs/devel/writing-qmp-commands.txt
/qemu/docs/meson.build
/qemu/docs/specs/tpm.rst
/qemu/docs/sphinx/kerneldoc.py
/qemu/docs/system/deprecated.rst
/qemu/docs/system/index.rst
/qemu/docs/system/removed-features.rst
/qemu/fsdev/9p-marshal.h
/qemu/fsdev/file-op-9p.h
/qemu/gdbstub.c
/qemu/hmp-commands.hx
/qemu/hw/alpha/dp264.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/digic_boards.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/tosa.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/cs4231.c
/qemu/hw/avr/boot.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/serial.c
/qemu/hw/core/cpu.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/meson.build
/qemu/hw/core/numa.c
/qemu/hw/core/qdev-prop-internal.h
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/core/qdev-properties.c
/qemu/hw/core/qdev.c
/qemu/hw/core/register.c
/qemu/hw/core/stream.c
/qemu/hw/cris/axis_dev88.c
/qemu/hw/cris/boot.c
/qemu/hw/cris/boot.h
/qemu/hw/display/Kconfig
/qemu/hw/display/cg3.c
/qemu/hw/display/meson.build
/qemu/hw/display/pxa2xx_lcd.c
/qemu/hw/display/ssd0323.c
/qemu/hw/display/tcx.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/hppa/machine.c
/qemu/hw/i386/fw_cfg.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/apic.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/microvm.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_sysfw.c
/qemu/hw/i386/vmport.c
/qemu/hw/i386/x86.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/input/Kconfig
/qemu/hw/input/ads7846.c
/qemu/hw/input/meson.build
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/ibex_plic.c
/qemu/hw/intc/meson.build
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xive.c
/qemu/hw/lm32/milkymist.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/mcf5208.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/q800.c
/qemu/hw/microblaze/boot.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/cps.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/malta.c
/qemu/hw/mips/meson.build
/qemu/hw/mips/mipssim.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/emc141x.c
/qemu/hw/misc/max111x.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/tmp421.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/moxie/moxiesim.c
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rocker/rocker_fp.c
/qemu/hw/net/rocker/rocker_fp.h
/qemu/hw/net/rocker/rocker_of_dpa.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/nios2/10m50_devboard.c
/qemu/hw/nios2/boot.c
/qemu/hw/nios2/meson.build
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/openrisc/Kconfig
/qemu/hw/openrisc/meson.build
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/pci-host/pam.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci/msix.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc405_boards.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/ppc/trace-events
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/rx/rx62n.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/ipl.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/sh4/shix.c
/qemu/hw/smbios/smbios.c
/qemu/hw/sparc/leon3.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/sparc64.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/pl022.c
/qemu/hw/ssi/ssi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/usb/Kconfig
/qemu/hw/usb/core.c
/qemu/hw/usb/hcd-dwc3.c
/qemu/hw/usb/meson.build
/qemu/hw/usb/xlnx-usb-subsystem.c
/qemu/hw/usb/xlnx-versal-usb2-ctrl-regs.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/watchdog/wdt_diag288.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xen/xen_pt_config_init.c
/qemu/hw/xen/xen_pt_msi.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/fuse.h
/qemu/include/chardev/char.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/poison.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/mips/cpudevs.h
/qemu/include/hw/misc/emc141x_regs.h
/qemu/include/hw/misc/max111x.h
/qemu/include/hw/pci-host/i440fx.h
/qemu/include/hw/pci-host/pam.h
/qemu/include/hw/pci-host/q35.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_drc.h
/qemu/include/hw/ppc/spapr_nvdimm.h
/qemu/include/hw/ppc/xics_spapr.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/qdev-properties.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/riscv/microchip_pfsoc.h
/qemu/include/hw/riscv/opentitan.h
/qemu/include/hw/riscv/spike.h
/qemu/include/hw/riscv/virt.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/ssi/ssi.h
/qemu/include/hw/ssi/xilinx_spips.h
/qemu/include/hw/stream.h
/qemu/include/hw/usb/hcd-dwc3.h
/qemu/include/hw/usb/xlnx-usb-subsystem.h
/qemu/include/hw/usb/xlnx-versal-usb2-ctrl-regs.h
/qemu/include/hw/xen/interface/io/ring.h
/qemu/include/migration/misc.h
/qemu/include/monitor/monitor.h
/qemu/include/qapi/qmp/dispatch.h
/qemu/include/qemu-common.h
/qemu/include/qemu/atomic.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/config-file.h
/qemu/include/qemu/datadir.h
/qemu/include/qemu/option.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/standard-headers/asm-x86/kvm_para.h
/qemu/include/sysemu/dma.h
/qemu/include/sysemu/runstate-action.h
/qemu/include/sysemu/runstate.h
/qemu/include/sysemu/sev.h
/qemu/include/sysemu/sysemu.h
/qemu/include/sysemu/whpx.h
/qemu/include/ui/console.h
/qemu/linux-user/ioctls.h
/qemu/linux-user/main.c
/qemu/linux-user/strace.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/migration.c
/qemu/migration/postcopy-ram.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/hmp.c
/qemu/monitor/misc.c
/qemu/monitor/qmp-cmds-control.c
/qemu/monitor/qmp-cmds.c
/qemu/net/can/can_host.c
/qemu/net/dump.c
/qemu/net/filter-buffer.c
/qemu/net/filter-mirror.c
/qemu/net/filter-rewriter.c
/qemu/net/filter.c
/qemu/pc-bios/optionrom/Makefile
/qemu/plugins/loader.c
/qemu/python/qemu/machine.py
/qemu/qapi/block-core.json
/qemu/qapi/block-export.json
/qemu/qapi/block.json
/qemu/qapi/char.json
/qemu/qapi/control.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/qdev.json
/qemu/qapi/qmp-dispatch.c
/qemu/qapi/run-state.json
/qemu/qapi/ui.json
/qemu/qemu-img.c
/qemu/qemu-options.hx
commands-posix-ssh.c
commands-posix.c
commands-win32.c
commands.c
/qemu/qom/object.c
/qemu/qom/qom-qmp-cmds.c
/qemu/scripts/cocci-macro-file.h
/qemu/scripts/git.orderfile
/qemu/scripts/kernel-doc
/qemu/softmmu/cpus.c
/qemu/softmmu/datadir.c
/qemu/softmmu/device_tree.c
/qemu/softmmu/dma-helpers.c
/qemu/softmmu/globals.c
/qemu/softmmu/icount.c
/qemu/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/rtc.c
/qemu/softmmu/runstate-action.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/meson.build
/qemu/stubs/qmp-command-available.c
/qemu/target/arm/arm-semi.c
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper.c
/qemu/target/arm/monitor.c
/qemu/target/i386/cpu-dump.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hax/hax-all.c
/qemu/target/i386/hax/hax-cpus.c
/qemu/target/i386/hax/hax-cpus.h
/qemu/target/i386/hax/hax-i386.h
/qemu/target/i386/hax/hax-interface.h
/qemu/target/i386/hax/hax-mem.c
/qemu/target/i386/hax/hax-posix.c
/qemu/target/i386/hax/hax-posix.h
/qemu/target/i386/hax/hax-windows.c
/qemu/target/i386/hax/hax-windows.h
/qemu/target/i386/hax/meson.build
/qemu/target/i386/helper.c
/qemu/target/i386/kvm/hyperv-proto.h
/qemu/target/i386/kvm/hyperv-stub.c
/qemu/target/i386/kvm/hyperv.c
/qemu/target/i386/kvm/hyperv.h
/qemu/target/i386/kvm/kvm-stub.c
/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/trace.h
/qemu/target/i386/machine.c
/qemu/target/i386/meson.build
/qemu/target/i386/monitor.c
/qemu/target/i386/sev-stub.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/bpt_helper.c
/qemu/target/i386/tcg/cc_helper.c
/qemu/target/i386/tcg/cc_helper_template.h
/qemu/target/i386/tcg/excp_helper.c
/qemu/target/i386/tcg/fpu_helper.c
/qemu/target/i386/tcg/helper-tcg.h
/qemu/target/i386/tcg/int_helper.c
/qemu/target/i386/tcg/mem_helper.c
/qemu/target/i386/tcg/meson.build
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/i386/tcg/mpx_helper.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/smm_helper.c
/qemu/target/i386/tcg/svm_helper.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/tcg-cpu.h
/qemu/target/i386/tcg/tcg-stub.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/trace-events
/qemu/target/i386/whpx/meson.build
/qemu/target/i386/whpx/whp-dispatch.h
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/i386/whpx/whpx-apic.c
/qemu/target/i386/whpx/whpx-cpus.c
/qemu/target/i386/whpx/whpx-cpus.h
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/fpu_helper.c
/qemu/target/m68k/m68k-semi.c
/qemu/target/m68k/translate.c
/qemu/target/mips/addr.c
/qemu/target/mips/cp0_helper.c
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/fpu_helper.c
/qemu/target/mips/helper.c
/qemu/target/mips/internal.h
/qemu/target/mips/kvm.c
/qemu/target/mips/meson.build
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate_init.c.inc
/qemu/target/nios2/cpu.c
/qemu/target/nios2/cpu.h
/qemu/target/nios2/op_helper.c
/qemu/target/openrisc/cpu.c
/qemu/target/openrisc/cpu.h
/qemu/target/ppc/cpu-qom.h
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/machine.c
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/vsx-impl.c.inc
/qemu/target/ppc/translate_init.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/fpu_helper.c
/qemu/target/riscv/helper.h
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/excp_helper.c
/qemu/target/s390x/mem_helper.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/sparc/cpu.c
/qemu/tests/acceptance/machine_s390_ccw_virtio.py
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/qemu-iotests/025
/qemu/tests/qemu-iotests/026
/qemu/tests/qemu-iotests/028
/qemu/tests/qemu-iotests/028.out
/qemu/tests/qemu-iotests/031
/qemu/tests/qemu-iotests/034
/qemu/tests/qemu-iotests/036
/qemu/tests/qemu-iotests/037
/qemu/tests/qemu-iotests/038
/qemu/tests/qemu-iotests/039
/qemu/tests/qemu-iotests/046
/qemu/tests/qemu-iotests/046.out
/qemu/tests/qemu-iotests/050
/qemu/tests/qemu-iotests/054
/qemu/tests/qemu-iotests/060
/qemu/tests/qemu-iotests/071
/qemu/tests/qemu-iotests/079
/qemu/tests/qemu-iotests/080
/qemu/tests/qemu-iotests/089
/qemu/tests/qemu-iotests/089.out
/qemu/tests/qemu-iotests/090
/qemu/tests/qemu-iotests/091
/qemu/tests/qemu-iotests/095
/qemu/tests/qemu-iotests/097
/qemu/tests/qemu-iotests/098
/qemu/tests/qemu-iotests/102
/qemu/tests/qemu-iotests/103
/qemu/tests/qemu-iotests/106
/qemu/tests/qemu-iotests/107
/qemu/tests/qemu-iotests/108
/qemu/tests/qemu-iotests/111
/qemu/tests/qemu-iotests/112
/qemu/tests/qemu-iotests/115
/qemu/tests/qemu-iotests/117
/qemu/tests/qemu-iotests/120
/qemu/tests/qemu-iotests/121
/qemu/tests/qemu-iotests/127
/qemu/tests/qemu-iotests/133
/qemu/tests/qemu-iotests/137
/qemu/tests/qemu-iotests/138
/qemu/tests/qemu-iotests/140
/qemu/tests/qemu-iotests/154
/qemu/tests/qemu-iotests/161
/qemu/tests/qemu-iotests/171
/qemu/tests/qemu-iotests/174
/qemu/tests/qemu-iotests/175
/qemu/tests/qemu-iotests/176
/qemu/tests/qemu-iotests/177
/qemu/tests/qemu-iotests/179
/qemu/tests/qemu-iotests/183
/qemu/tests/qemu-iotests/186
/qemu/tests/qemu-iotests/187
/qemu/tests/qemu-iotests/191
/qemu/tests/qemu-iotests/195
/qemu/tests/qemu-iotests/200
/qemu/tests/qemu-iotests/200.out
/qemu/tests/qemu-iotests/204
/qemu/tests/qemu-iotests/206
/qemu/tests/qemu-iotests/206.out
/qemu/tests/qemu-iotests/214
/qemu/tests/qemu-iotests/217
/qemu/tests/qemu-iotests/220
/qemu/tests/qemu-iotests/221
/qemu/tests/qemu-iotests/221.out
/qemu/tests/qemu-iotests/229
/qemu/tests/qemu-iotests/229.out
/qemu/tests/qemu-iotests/242
/qemu/tests/qemu-iotests/247
/qemu/tests/qemu-iotests/249
/qemu/tests/qemu-iotests/250
/qemu/tests/qemu-iotests/252
/qemu/tests/qemu-iotests/265
/qemu/tests/qemu-iotests/268
/qemu/tests/qemu-iotests/272
/qemu/tests/qemu-iotests/273
/qemu/tests/qemu-iotests/279
/qemu/tests/qemu-iotests/286
/qemu/tests/qemu-iotests/287
/qemu/tests/qemu-iotests/289
/qemu/tests/qemu-iotests/290
/qemu/tests/qemu-iotests/291
/qemu/tests/qemu-iotests/292
/qemu/tests/qemu-iotests/293
/qemu/tests/qemu-iotests/294
/qemu/tests/qemu-iotests/305
/qemu/tests/qemu-iotests/308
/qemu/tests/qemu-iotests/308.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/group
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/emc141x-test.c
/qemu/tests/qtest/fuzz-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/pflash-cfi02-test.c
/qemu/tests/qtest/pvpanic-test.c
/qemu/tests/qtest/qmp-test.c
/qemu/tests/qtest/test-filter-redirector.c
/qemu/tests/qtest/vhost-user-test.c
/qemu/tests/tcg/arm/fcvt.c
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/i386/test-i386-bmi2.c
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/test-char.c
/qemu/tests/test-clone-visitor.c
/qemu/tests/test-qemu-opts.c
/qemu/tests/test-qobject-output-visitor.c
/qemu/tests/test-visitor-serialization.c
/qemu/tests/test-write-threshold.c
/qemu/tools/virtiofsd/fuse_common.h
/qemu/trace/qmp.c
/qemu/ui/console.c
/qemu/ui/input.c
/qemu/ui/keymaps.c
/qemu/ui/sdl2.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/qemu-config.c
/qemu/util/qemu-option.c
9fc0ab5c13-Nov-2020 Markus Armbruster <armbru@redhat.com>

qga: Tweak a guest-shutdown error message

Change

Parameter 'mode' expects halt|powerdown|reboot

to

Parameter 'mode' expects 'halt', 'powerdown', or 'reboot'

for consistency with similar

qga: Tweak a guest-shutdown error message

Change

Parameter 'mode' expects halt|powerdown|reboot

to

Parameter 'mode' expects 'halt', 'powerdown', or 'reboot'

for consistency with similar error messages elsewhere.

Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20201113082626.2725812-9-armbru@redhat.com>

show more ...

ac84b0fa13-Nov-2020 Markus Armbruster <armbru@redhat.com>

qga: Replace an unreachable error by abort()

check_suspend_mode()'s error message

Parameter 'mode' expects GuestSuspendMode

makes no sense to users: GuestSuspendMode is a C enum. Fortunately,

qga: Replace an unreachable error by abort()

check_suspend_mode()'s error message

Parameter 'mode' expects GuestSuspendMode

makes no sense to users: GuestSuspendMode is a C enum. Fortunately,
it is unreachable. Replace it by abort().

Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20201113082626.2725812-8-armbru@redhat.com>

show more ...


/qemu/.cirrus.yml
/qemu/.gitattributes
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.yml
/qemu/.travis.yml
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/kvm/kvm-all.c
/qemu/authz/listfile.c
/qemu/authz/pamacct.c
/qemu/authz/simple.c
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/nvme.c
/qemu/block/qcow2-cluster.c
/qemu/block/trace-events
/qemu/blockdev.c
/qemu/configure
/qemu/contrib/vhost-user-blk/meson.build
/qemu/contrib/vhost-user-blk/vhost-user-blk.c
/qemu/contrib/vhost-user-gpu/meson.build
/qemu/contrib/vhost-user-gpu/vhost-user-gpu.c
/qemu/contrib/vhost-user-gpu/virgl.c
/qemu/contrib/vhost-user-gpu/vugbm.c
/qemu/contrib/vhost-user-gpu/vugbm.h
/qemu/contrib/vhost-user-gpu/vugpu.h
/qemu/contrib/vhost-user-input/main.c
/qemu/contrib/vhost-user-input/meson.build
/qemu/contrib/vhost-user-scsi/meson.build
/qemu/contrib/vhost-user-scsi/vhost-user-scsi.c
/qemu/docs/meson.build
/qemu/docs/specs/acpi_cpu_hotplug.txt
/qemu/docs/system/arm/aspeed.rst
/qemu/docs/system/arm/raspi.rst
/qemu/docs/system/arm/xscale.rst
/qemu/docs/system/cpu-hotplug.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/gdb.rst
/qemu/docs/system/i386/microvm.rst
/qemu/docs/system/i386/pc.rst
/qemu/docs/system/images.rst
/qemu/docs/system/index.rst
/qemu/docs/system/monitor.rst
/qemu/docs/system/mux-chardev.rst
/qemu/docs/system/pr-manager.rst
/qemu/docs/system/target-arm.rst
/qemu/docs/system/target-i386.rst
/qemu/docs/system/usb.rst
/qemu/docs/system/virtio-net-failover.rst
/qemu/docs/system/virtio-pmem.rst
/qemu/docs/system/vnc-security.rst
/qemu/docs/tools/conf.py
/qemu/docs/tools/index.rst
/qemu/docs/tools/qemu-pr-helper.rst
/qemu/hmp-commands.hx
/qemu/hw/Kconfig
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/cpu.c
/qemu/hw/acpi/trace-events
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/pxa2xx.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/spitz.c
/qemu/hw/arm/tosa.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/core/machine.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/core/qdev.c
/qemu/hw/display/artist.c
/qemu/hw/display/tcx.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/intel_iommu.c
/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/pc_sysfw.c
/qemu/hw/i386/x86.c
/qemu/hw/ide/atapi.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/rx_icu.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/m68k/mcf5206.c
/qemu/hw/misc/imx25_ccm.c
/qemu/hw/misc/imx31_ccm.c
/qemu/hw/misc/imx6_ccm.c
/qemu/hw/misc/imx6_src.c
/qemu/hw/misc/imx6ul_ccm.c
/qemu/hw/misc/imx_ccm.c
/qemu/hw/misc/tz-mpc.c
/qemu/hw/net/can/meson.build
/qemu/hw/net/can/trace-events
/qemu/hw/net/can/trace.h
/qemu/hw/net/can/xlnx-zynqmp-can.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/virtio-net.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/pci-host/gpex-acpi.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/usb/Kconfig
/qemu/hw/vfio/common.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pci.h
/qemu/hw/virtio/virtio.c
/qemu/include/block/nvme.h
/qemu/include/exec/memory.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/acpi/cpu.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/block/swim.h
/qemu/include/hw/boards.h
/qemu/include/hw/display/macfb.h
/qemu/include/hw/i386/ioapic.h
/qemu/include/hw/i386/ioapic_internal.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/intc/armv7m_nvic.h
/qemu/include/hw/net/xlnx-zynqmp-can.h
/qemu/include/hw/nvram/fw_cfg.h
/qemu/include/hw/pci-host/gpex.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/s390x/s390-pci-clp.h
/qemu/include/hw/vfio/vfio-common.h
/qemu/include/hw/virtio/virtio-net.h
/qemu/include/net/net.h
/qemu/include/qapi/qmp/qerror.h
/qemu/include/qemu/nvdimm-utils.h
/qemu/include/qemu/vhost-user-server.h
/qemu/linux-user/arm/cpu_loop.c
/qemu/meson.build
/qemu/monitor/hmp-cmds.c
/qemu/monitor/misc.c
/qemu/monitor/qmp-cmds.c
/qemu/net/net.c
/qemu/net/tap.c
/qemu/pc-bios/qboot.rom
/qemu/pc-bios/s390-ccw.img
/qemu/pc-bios/s390-ccw/dasd-ipl.c
/qemu/pc-bios/s390-ccw/jump2ipl.c
/qemu/pc-bios/s390-ccw/main.c
/qemu/pc-bios/s390-ccw/s390-arch.h
/qemu/pc-bios/s390-netboot.img
/qemu/python/qemu/machine.py
/qemu/qemu-options.hx
commands-win32.c
/qemu/roms/Makefile
/qemu/roms/qboot
/qemu/scripts/ci/gitlab-pipeline-status
/qemu/slirp
/qemu/softmmu/memory.c
/qemu/softmmu/qdev-monitor.c
/qemu/subprojects/libvhost-user/libvhost-user-glib.c
/qemu/subprojects/libvhost-user/libvhost-user-glib.h
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/subprojects/libvhost-user/link-test.c
/qemu/subprojects/libvhost-user/meson.build
/qemu/target/arm/arm-semi.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/helper.c
/qemu/target/arm/m-nocp.decode
/qemu/target/arm/m_helper.c
/qemu/target/arm/t32.decode
/qemu/target/arm/translate-vfp.c.inc
/qemu/target/arm/translate.c
/qemu/target/arm/vfp.decode
/qemu/target/i386/hvf/x86.h
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/ppc/translate/vsx-impl.c.inc
/qemu/target/ppc/translate/vsx-ops.c.inc
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/kvm-stub.c
/qemu/target/s390x/kvm.c
/qemu/target/s390x/kvm_s390x.h
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/data/acpi/microvm/APIC.ioapic2
/qemu/tests/data/acpi/microvm/DSDT.ioapic2
/qemu/tests/data/acpi/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.tis
/qemu/tests/data/acpi/virt/DSDT.pxb
/qemu/tests/docker/dockerfiles/debian10.docker
/qemu/tests/docker/dockerfiles/fedora-win32-cross.docker
/qemu/tests/docker/dockerfiles/fedora-win64-cross.docker
/qemu/tests/docker/dockerfiles/ubuntu2004.docker
/qemu/tests/meson.build
/qemu/tests/qemu-iotests/040
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/fuzz-test.c
/qemu/tests/qtest/fuzz/fuzz.h
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_rng-test.c
/qemu/tests/qtest/npcm7xx_timer-test.c
/qemu/tests/qtest/npcm7xx_watchdog_timer-test.c
/qemu/tests/qtest/virtio-9p-test.c
/qemu/tests/qtest/xlnx-can-test.c
/qemu/tests/test-qga.c
/qemu/tests/vhost-user-bridge.c
/qemu/tests/vm/freebsd
/qemu/tests/vm/haiku.x86_64
/qemu/tests/vm/netbsd
/qemu/tests/vm/openbsd
/qemu/tools/virtiofsd/buffer.c
/qemu/tools/virtiofsd/fuse_common.h
/qemu/tools/virtiofsd/fuse_log.c
/qemu/tools/virtiofsd/fuse_log.h
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/fuse_lowlevel.h
/qemu/tools/virtiofsd/fuse_misc.h
/qemu/tools/virtiofsd/fuse_opt.c
/qemu/tools/virtiofsd/fuse_signals.c
/qemu/tools/virtiofsd/fuse_virtio.c
/qemu/tools/virtiofsd/helper.c
/qemu/tools/virtiofsd/meson.build
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/tools/virtiofsd/passthrough_seccomp.h
/qemu/trace/meson.build
/qemu/ui/console.c
/qemu/util/nvdimm-utils.c
/qemu/util/trace-events
/qemu/util/vfio-helpers.c
dccdb0f817-Nov-2020 Stefan Weil <sw@weilnetz.de>

meson: Fix build with --disable-guest-agent-msi

The QGA MSI target requires several macros which are only available
without --disable-guest-agent-msi.

Don't define that target if configure was call

meson: Fix build with --disable-guest-agent-msi

The QGA MSI target requires several macros which are only available
without --disable-guest-agent-msi.

Don't define that target if configure was called with --disable-guest-agent-msi.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-Id: <20201117201834.408892-1-sw@weilnetz.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...


/qemu/.gitlab-ci.d/check-patch.py
/qemu/.gitlab-ci.d/containers.yml
/qemu/VERSION
/qemu/accel/stubs/hax-stub.c
/qemu/backends/tpm/tpm_emulator.c
/qemu/backends/tpm/tpm_ioctl.h
/qemu/backends/tpm/tpm_passthrough.c
/qemu/backends/tpm/tpm_util.c
/qemu/block/crypto.c
/qemu/block/crypto.h
/qemu/block/export/meson.build
/qemu/block/file-posix.c
/qemu/block/io_uring.c
/qemu/block/quorum.c
/qemu/chardev/char-stdio.c
/qemu/configure
/qemu/contrib/libvhost-user/libvhost-user.c
/qemu/contrib/libvhost-user/libvhost-user.h
/qemu/contrib/plugins/lockstep.c
/qemu/contrib/vhost-user-blk/vhost-user-blk.c
/qemu/contrib/vhost-user-scsi/vhost-user-scsi.c
/qemu/cpus-common.c
/qemu/disas/lm32.c
/qemu/docs/can.txt
/qemu/docs/interop/vhost-user.rst
/qemu/docs/replay.txt
/qemu/docs/specs/ppc-spapr-numa.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/tools/virtiofsd.rst
/qemu/exec-vary.c
/qemu/hw/acpi/core.c
/qemu/hw/acpi/hmat.c
/qemu/hw/acpi/hmat.h
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/nvdimm.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/arm/Kconfig
/qemu/hw/audio/milkymist-ac97.c
/qemu/hw/block/nand.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/char/lm32_juart.c
/qemu/hw/char/lm32_uart.c
/qemu/hw/char/milkymist-uart.c
/qemu/hw/core/bus.c
/qemu/hw/core/platform-bus.c
/qemu/hw/core/qdev.c
/qemu/hw/core/register.c
/qemu/hw/core/sysbus.c
/qemu/hw/display/ads7846.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/display/milkymist-tmu2.c
/qemu/hw/display/milkymist-vgafb.c
/qemu/hw/display/milkymist-vgafb_template.h
/qemu/hw/display/ssd0323.c
/qemu/hw/gpio/mpc8xxx.c
/qemu/hw/i2c/pm_smbus.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/ahci_internal.h
/qemu/hw/ide/ich.c
/qemu/hw/ide/qdev.c
/qemu/hw/input/milkymist-softusb.c
/qemu/hw/input/ps2.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/arm_gicv2m.c
/qemu/hw/intc/arm_gicv3_its_kvm.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/ioapic_common.c
/qemu/hw/intc/lm32_pic.c
/qemu/hw/intc/xics_pnv.c
/qemu/hw/isa/apm.c
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/lm32/lm32_boards.c
/qemu/hw/lm32/lm32_hwsetup.h
/qemu/hw/lm32/milkymist.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/misc/applesmc.c
/qemu/hw/misc/max111x.c
/qemu/hw/misc/milkymist-hpdmc.c
/qemu/hw/misc/milkymist-pfpu.c
/qemu/hw/misc/tmp105.c
/qemu/hw/misc/tmp105.h
/qemu/hw/net/e1000.c
/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/milkymist-minimac2.c
/qemu/hw/pci-bridge/i82801b11.c
/qemu/hw/pci-host/designware.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/ppce500_spin.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/mptconfig.c
/qemu/hw/scsi/mptendian.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sd/milkymist-memcard.c
/qemu/hw/sd/sd.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/lm32_timer.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/tpm/tpm_prop.h
/qemu/hw/tricore/tricore_testboard.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/hcd-xhci-pci.c
/qemu/hw/usb/hcd-xhci-pci.h
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/hcd-xhci.h
/qemu/hw/vfio/igd.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/xen/xen_pvdev.c
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/cputlb.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/ioport.h
/qemu/include/exec/memory_ldst.h.inc
/qemu/include/exec/memory_ldst_cached.h.inc
/qemu/include/exec/memory_ldst_phys.h.inc
/qemu/include/exec/tb-context.h
/qemu/include/exec/tb-hash.h
/qemu/include/exec/user/thunk.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/acpi/pcihp.h
/qemu/include/hw/display/milkymist_tmu2.h
/qemu/include/hw/i386/apic_internal.h
/qemu/include/hw/i386/ioapic.h
/qemu/include/hw/i386/ioapic_internal.h
/qemu/include/hw/ide/ahci.h
/qemu/include/hw/loader-fit.h
/qemu/include/hw/pci-host/designware.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/platform-bus.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/pnv_core.h
/qemu/include/hw/ppc/pnv_homer.h
/qemu/include/hw/ppc/pnv_lpc.h
/qemu/include/hw/ppc/pnv_occ.h
/qemu/include/hw/ppc/pnv_psi.h
/qemu/include/hw/ppc/pnv_xscom.h
/qemu/include/hw/ppc/spapr_vio.h
/qemu/include/hw/semihosting/semihost.h
/qemu/include/hw/xen/xen.h
/qemu/include/qemu/base64.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/buffer.h
/qemu/include/qemu/filemonitor.h
/qemu/include/sysemu/tpm_util.h
/qemu/linux-user/aarch64/target_cpu.h
/qemu/linux-user/aarch64/target_structs.h
/qemu/linux-user/alpha/target_cpu.h
/qemu/linux-user/alpha/target_structs.h
/qemu/linux-user/arm/target_cpu.h
/qemu/linux-user/arm/target_structs.h
/qemu/linux-user/cris/target_cpu.h
/qemu/linux-user/cris/target_structs.h
/qemu/linux-user/fd-trans.c
/qemu/linux-user/hppa/target_cpu.h
/qemu/linux-user/hppa/target_structs.h
/qemu/linux-user/i386/target_cpu.h
/qemu/linux-user/i386/target_structs.h
/qemu/linux-user/microblaze/target_cpu.h
/qemu/linux-user/microblaze/target_structs.h
/qemu/linux-user/mips/target_cpu.h
/qemu/linux-user/mips/target_structs.h
/qemu/linux-user/mips64/target_cpu.h
/qemu/linux-user/nios2/target_cpu.h
/qemu/linux-user/nios2/target_structs.h
/qemu/linux-user/ppc/target_cpu.h
/qemu/linux-user/ppc/target_structs.h
/qemu/linux-user/ppc/target_syscall.h
/qemu/linux-user/s390x/target_structs.h
/qemu/linux-user/sparc/target_cpu.h
/qemu/linux-user/sparc/target_structs.h
/qemu/linux-user/sparc64/target_structs.h
/qemu/linux-user/tilegx/target_cpu.h
/qemu/linux-user/tilegx/target_structs.h
/qemu/linux-user/x86_64/target_structs.h
/qemu/memory_ldst.c.inc
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/tls.c
/qemu/migration/tls.h
/qemu/nbd/nbd-internal.h
/qemu/nbd/server.c
/qemu/qapi/char.json
meson.build
/qemu/qobject/json-parser.c
/qemu/scripts/analyze-migration.py
/qemu/scripts/decodetree.py
/qemu/scripts/nsis.py
/qemu/scripts/replay-dump.py
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/stubs/ram-block.c
/qemu/stubs/xen-hw-stub.c
/qemu/target/alpha/cpu.h
/qemu/target/alpha/fpu_helper.c
/qemu/target/alpha/gdbstub.c
/qemu/target/alpha/helper.c
/qemu/target/alpha/int_helper.c
/qemu/target/alpha/mem_helper.c
/qemu/target/alpha/sys_helper.c
/qemu/target/alpha/translate.c
/qemu/target/alpha/vax_helper.c
/qemu/target/arm/a32-uncond.decode
/qemu/target/arm/a32.decode
/qemu/target/arm/arm_ldst.h
/qemu/target/arm/cpu.h
/qemu/target/arm/crypto_helper.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper-a64.h
/qemu/target/arm/helper-sve.h
/qemu/target/arm/iwmmxt_helper.c
/qemu/target/arm/neon-dp.decode
/qemu/target/arm/neon-ls.decode
/qemu/target/arm/neon-shared.decode
/qemu/target/arm/op_helper.c
/qemu/target/arm/pauth_helper.c
/qemu/target/arm/sve.decode
/qemu/target/arm/sve_helper.c
/qemu/target/arm/t16.decode
/qemu/target/arm/t32.decode
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-a64.h
/qemu/target/arm/translate-neon.c.inc
/qemu/target/arm/translate-sve.c
/qemu/target/arm/translate-vfp.c.inc
/qemu/target/arm/translate.c
/qemu/target/arm/vec_helper.c
/qemu/target/arm/vec_internal.h
/qemu/target/arm/vfp-uncond.decode
/qemu/target/arm/vfp.decode
/qemu/target/cris/cpu.h
/qemu/target/cris/crisv10-decode.h
/qemu/target/cris/crisv32-decode.h
/qemu/target/cris/gdbstub.c
/qemu/target/cris/helper.c
/qemu/target/cris/machine.c
/qemu/target/cris/mmu.c
/qemu/target/cris/op_helper.c
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hppa/cpu.h
/qemu/target/hppa/gdbstub.c
/qemu/target/hppa/helper.c
/qemu/target/hppa/insns.decode
/qemu/target/hppa/int_helper.c
/qemu/target/hppa/machine.c
/qemu/target/hppa/mem_helper.c
/qemu/target/hppa/op_helper.c
/qemu/target/hppa/translate.c
/qemu/target/i386/bpt_helper.c
/qemu/target/i386/cc_helper.c
/qemu/target/i386/cc_helper_template.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/excp_helper.c
/qemu/target/i386/fpu_helper.c
/qemu/target/i386/gdbstub.c
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/panic.h
/qemu/target/i386/hvf/vmx.h
/qemu/target/i386/hvf/x86.c
/qemu/target/i386/hvf/x86.h
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/hvf/x86_decode.c
/qemu/target/i386/hvf/x86_decode.h
/qemu/target/i386/hvf/x86_descr.c
/qemu/target/i386/hvf/x86_descr.h
/qemu/target/i386/hvf/x86_emu.c
/qemu/target/i386/hvf/x86_emu.h
/qemu/target/i386/hvf/x86_flags.c
/qemu/target/i386/hvf/x86_flags.h
/qemu/target/i386/hvf/x86_mmu.c
/qemu/target/i386/hvf/x86_mmu.h
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/hvf/x86hvf.h
/qemu/target/i386/int_helper.c
/qemu/target/i386/kvm.c
/qemu/target/i386/mem_helper.c
/qemu/target/i386/misc_helper.c
/qemu/target/i386/mpx_helper.c
/qemu/target/i386/ops_sse.h
/qemu/target/i386/ops_sse_header.h
/qemu/target/i386/seg_helper.c
/qemu/target/i386/shift_helper_template.h
/qemu/target/i386/smm_helper.c
/qemu/target/i386/svm_helper.c
/qemu/target/i386/tcg-stub.c
/qemu/target/i386/translate.c
/qemu/target/lm32/cpu.h
/qemu/target/lm32/gdbstub.c
/qemu/target/lm32/helper.c
/qemu/target/lm32/translate.c
/qemu/target/microblaze/cpu.h
/qemu/target/microblaze/gdbstub.c
/qemu/target/microblaze/helper.c
/qemu/target/microblaze/machine.c
/qemu/target/microblaze/mmu.c
/qemu/target/microblaze/mmu.h
/qemu/target/microblaze/op_helper.c
/qemu/target/microblaze/translate.c
/qemu/target/openrisc/sys_helper.c
/qemu/target/ppc/compat.c
/qemu/target/ppc/cpu-models.c
/qemu/target/ppc/cpu-models.h
/qemu/target/ppc/cpu.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/dfp_helper.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/helper_regs.h
/qemu/target/ppc/int_helper.c
/qemu/target/ppc/internal.h
/qemu/target/ppc/mem_helper.c
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/mmu-book3s-v3.c
/qemu/target/ppc/mmu-book3s-v3.h
/qemu/target/ppc/mmu-hash32.c
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/mmu-radix64.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/timebase_helper.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate_init.c.inc
/qemu/target/ppc/user_only_helper.c
/qemu/target/sparc/cc_helper.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/fop_helper.c
/qemu/target/sparc/gdbstub.c
/qemu/target/sparc/helper.c
/qemu/target/sparc/int32_helper.c
/qemu/target/sparc/int64_helper.c
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/translate.c
/qemu/target/sparc/vis_helper.c
/qemu/target/sparc/win_helper.c
/qemu/target/tilegx/cpu.h
/qemu/target/tricore/gdbstub.c
/qemu/target/xtensa/gdbstub.c
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/pc_cpu_hotplug_props.py
/qemu/tests/acceptance/replay_kernel.py
/qemu/tests/acceptance/x86_cpu_model_versions.py
/qemu/tests/check-qjson.c
/qemu/tests/io-channel-helpers.c
/qemu/tests/io-channel-helpers.h
/qemu/tests/keys/vagrant
/qemu/tests/keys/vagrant.pub
/qemu/tests/migration/guestperf-batch.py
/qemu/tests/migration/guestperf-plot.py
/qemu/tests/migration/guestperf.py
/qemu/tests/migration/guestperf/comparison.py
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/migration/guestperf/hardware.py
/qemu/tests/migration/guestperf/plot.py
/qemu/tests/migration/guestperf/progress.py
/qemu/tests/migration/guestperf/report.py
/qemu/tests/migration/guestperf/scenario.py
/qemu/tests/migration/guestperf/shell.py
/qemu/tests/migration/guestperf/timings.py
/qemu/tests/migration/stress.c
/qemu/tests/qemu-iotests/081
/qemu/tests/qemu-iotests/081.out
/qemu/tests/qemu-iotests/nbd-fault-injector.py
/qemu/tests/test-base64.c
/qemu/tests/test-bufferiszero.c
/qemu/tests/test-crypto-pbkdf.c
/qemu/tests/test-qgraph.c
/qemu/tests/test-uuid.c
/qemu/tests/vm/Makefile.include
/qemu/tests/vm/basevm.py
/qemu/tests/vm/haiku.x86_64
/qemu/tests/vm/netbsd
/qemu/thunk.c
/qemu/ui/x_keymap.c
/qemu/util/base64.c
/qemu/util/buffer.c
/qemu/util/cutils.c
/qemu/util/filemonitor-inotify.c
/qemu/util/filemonitor-stub.c
/qemu/util/log.c
/qemu/util/oslib-win32.c
/qemu/util/vfio-helpers.c
a8aa94b513-Nov-2020 Michael Roth <michael.roth@amd.com>

qga: update schema for guest-get-disks 'dependents' field

The recently-added 'guest-get-disk' command returns a list of
GuestDiskInfo entries, which in turn have a 'dependents' field which
lists dev

qga: update schema for guest-get-disks 'dependents' field

The recently-added 'guest-get-disk' command returns a list of
GuestDiskInfo entries, which in turn have a 'dependents' field which
lists devices these entries are dependent upon. Thus, 'dependencies'
is a better name for this field. Address this by renaming the field
accordingly.

Additionally, 'dependents' is specified as non-optional, even though
it's not implemented for w32. This is misleading, since it gives users
the impression that a particular disk might not have dependencies,
when in reality that information is simply not known to the guest
agent. Address this by making 'dependents' an optional field, and only
marking it as in-use when the facilities to obtain this information are
available to the guest agent.

Cc: Eric Blake <eblake@redhat.com>
Cc: Tomáš Golembiovský <tgolembi@redhat.com>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...


/qemu/.cirrus.yml
/qemu/.gitlab-ci.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/VERSION
/qemu/audio/jackaudio.c
/qemu/block.c
/qemu/block/blkdebug.c
/qemu/block/dmg-lzfse.c
/qemu/block/dmg.c
/qemu/block/nfs.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/vpc.c
/qemu/bsd-user/main.c
/qemu/configure
/qemu/docs/_templates/editpage.html
/qemu/docs/conf.py
/qemu/docs/devel/_templates/editpage.html
/qemu/docs/devel/fuzzing.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/qapi-code-gen.txt
/qemu/docs/interop/_templates/editpage.html
/qemu/docs/specs/_templates/editpage.html
/qemu/docs/system/_templates/editpage.html
/qemu/docs/system/arm/sbsa.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/target-arm.rst
/qemu/docs/tools/_templates/editpage.html
/qemu/docs/user/_templates/editpage.html
/qemu/hw/acpi/generic_event_device.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/armsse.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/stm32f205_soc.c
/qemu/hw/block/nvme.c
/qemu/hw/core/machine.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/intc/ibex_plic.c
/qemu/hw/mips/boston.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/pvpanic.c
/qemu/hw/misc/stm32f2xx_syscfg.c
/qemu/hw/net/can/ctucan_core.c
/qemu/hw/net/can/ctucan_core.h
/qemu/hw/net/virtio-net.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/s390x/ipl.h
/qemu/hw/ssi/imx_spi.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/usb/Kconfig
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/trace-events
/qemu/hw/vfio/migration.c
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/hw/intc/ibex_plic.h
/qemu/include/hw/misc/stm32f2xx_syscfg.h
/qemu/include/monitor/hmp-target.h
/qemu/linux-user/alpha/target_signal.h
/qemu/linux-user/arm/target_signal.h
/qemu/linux-user/cris/target_signal.h
/qemu/linux-user/hppa/target_signal.h
/qemu/linux-user/i386/target_signal.h
/qemu/linux-user/m68k/target_signal.h
/qemu/linux-user/main.c
/qemu/linux-user/microblaze/target_signal.h
/qemu/linux-user/mips/target_signal.h
/qemu/linux-user/mips64/target_signal.h
/qemu/linux-user/nios2/target_signal.h
/qemu/linux-user/ppc/target_signal.h
/qemu/linux-user/s390x/target_signal.h
/qemu/linux-user/sh4/target_signal.h
/qemu/linux-user/sparc/signal.c
/qemu/linux-user/sparc/target_signal.h
/qemu/linux-user/syscall.c
/qemu/linux-user/x86_64/target_signal.h
/qemu/meson.build
/qemu/migration/dirtyrate.c
/qemu/migration/migration.c
/qemu/migration/multifd.c
/qemu/migration/ram.c
/qemu/monitor/hmp.c
/qemu/monitor/misc.c
/qemu/monitor/monitor-internal.h
/qemu/net/colo-compare.c
/qemu/net/colo.c
/qemu/net/eth.c
/qemu/net/filter-rewriter.c
/qemu/net/l2tpv3.c
/qemu/qapi/audio.json
/qemu/qapi/authz.json
/qemu/qapi/block-core.json
/qemu/qemu-img.c
/qemu/qemu-io.c
/qemu/qemu-nbd.c
commands-posix.c
qapi-schema.json
/qemu/replay/replay-debugging.c
/qemu/scripts/device-crash-test
/qemu/scripts/oss-fuzz/build.sh
/qemu/scripts/tracetool/format/d.py
/qemu/scsi/qemu-pr-helper.c
/qemu/softmmu/physmem.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/target/arm/arch_dump.c
/qemu/target/arm/arm-semi.c
/qemu/target/arm/helper.c
/qemu/target/arm/helper.h
/qemu/target/arm/op_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-neon.c.inc
/qemu/target/arm/translate.c
/qemu/target/i386/monitor.c
/qemu/target/m68k/monitor.c
/qemu/target/mips/cp0_helper.c
/qemu/target/mips/cpu.h
/qemu/target/nios2/monitor.c
/qemu/target/ppc/monitor.c
/qemu/target/riscv/cpu-param.h
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/helper.h
/qemu/target/riscv/insn_trans/trans_rvh.c.inc
/qemu/target/riscv/monitor.c
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/translate.c
/qemu/target/s390x/cpu_models.c
/qemu/target/sh4/monitor.c
/qemu/target/sparc/monitor.c
/qemu/target/xtensa/monitor.c
/qemu/tests/qemu-iotests/240
/qemu/tests/qemu-iotests/240.out
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qtest/arm-cpu-features.c
/qemu/tests/qtest/fuzz/fork_fuzz.ld
/qemu/tests/qtest/fuzz/meson.build
/qemu/tests/qtest/fuzz/virtio_blk_fuzz.c
/qemu/tests/qtest/libqos/libqtest.h
/qemu/tests/qtest/libqtest-single.h
/qemu/tests/qtest/npcm7xx_rng-test.c
/qemu/tests/qtest/pvpanic-test.c
/qemu/tests/qtest/tpm-tests.c
/qemu/tests/vm/openbsd
/qemu/tools/virtiofsd/buffer.c
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/trace/control.c
/qemu/trace/control.h
/qemu/ui/console.c
b1b9ab1c08-Nov-2020 Michael Roth <michael.roth@amd.com>

qga: fix missing closedir() in qmp_guest_get_disks()

We opendir("/sys/block") at the beginning of the function, but we never
close it prior to returning.

Fixes: Coverity CID 1436130
Fixes: fed39564

qga: fix missing closedir() in qmp_guest_get_disks()

We opendir("/sys/block") at the beginning of the function, but we never
close it prior to returning.

Fixes: Coverity CID 1436130
Fixes: fed3956429d5 ("qga: add implementation of guest-get-disks for Linux")
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Cc: Tomáš Golembiovský <tgolembi@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...


/qemu/MAINTAINERS
/qemu/VERSION
/qemu/block/export/export.c
/qemu/block/export/meson.build
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/vvfat.c
/qemu/chardev/char-socket.c
/qemu/chardev/char.c
/qemu/configure
/qemu/contrib/libvhost-user/libvhost-user.h
/qemu/contrib/vhost-user-blk/vhost-user-blk.c
/qemu/contrib/vhost-user-gpu/meson.build
/qemu/default-configs/devices/mips-softmmu-common.mak
/qemu/disas/capstone.c
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/kconfig.rst
/qemu/docs/meson.build
/qemu/docs/qemu-option-trace.rst.inc
/qemu/docs/specs/nvme.txt
/qemu/docs/specs/pci-ids.txt
/qemu/docs/system/deprecated.rst
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p-local.c
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/9p.h
/qemu/hw/9pfs/Kconfig
/qemu/hw/9pfs/cofs.c
/qemu/hw/9pfs/meson.build
/qemu/hw/acpi/core.c
/qemu/hw/acpi/nvdimm.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/block/meson.build
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/nvme-ns.h
/qemu/hw/block/nvme.c
/qemu/hw/block/nvme.h
/qemu/hw/block/trace-events
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/core/loader-fit.c
/qemu/hw/core/machine.c
/qemu/hw/display/ati_2d.c
/qemu/hw/display/exynos4210_fimd.c
/qemu/hw/display/omap_lcdc.c
/qemu/hw/i386/pc.c
/qemu/hw/ide/piix.c
/qemu/hw/intc/arm_gicv3_cpuif.c
/qemu/hw/intc/loongson_liointc.c
/qemu/hw/intc/sifive_plic.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/mem/memory-device.c
/qemu/hw/mips/Kconfig
/qemu/hw/mips/boston.c
/qemu/hw/mips/cps.c
/qemu/hw/mips/meson.build
/qemu/hw/misc/Kconfig
/qemu/hw/misc/mchp_pfsoc_dmc.c
/qemu/hw/misc/mchp_pfsoc_ioscb.c
/qemu/hw/misc/mchp_pfsoc_sysreg.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/mips_cpc.c
/qemu/hw/misc/mips_itu.c
/qemu/hw/pci-host/xilinx-pcie.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/virt.c
/qemu/hw/s390x/meson.build
/qemu/hw/smbios/smbios.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/trace-events
/qemu/hw/vfio/common.c
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vhost-backend.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-mem.c
/qemu/include/block/nvme.h
/qemu/include/exec/memory.h
/qemu/include/hw/i386/ich9.h
/qemu/include/hw/intc/arm_gicv3_common.h
/qemu/include/hw/intc/sifive_plic.h
/qemu/include/hw/mem/memory-device.h
/qemu/include/hw/mips/cps.h
/qemu/include/hw/misc/mchp_pfsoc_dmc.h
/qemu/include/hw/misc/mchp_pfsoc_ioscb.h
/qemu/include/hw/misc/mchp_pfsoc_sysreg.h
/qemu/include/hw/misc/mips_cpc.h
/qemu/include/hw/misc/mips_itu.h
/qemu/include/hw/pci-host/xilinx-pcie.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/riscv/microchip_pfsoc.h
/qemu/include/hw/s390x/s390-pci-vfio.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/qapi/util.h
/qemu/include/qemu/cutils.h
/qemu/linux-user/elfload.c
/qemu/linux-user/mips/cpu_loop.c
/qemu/linux-user/syscall.c
/qemu/meson.build
/qemu/migration/postcopy-ram.c
/qemu/migration/savevm.c
/qemu/monitor/hmp-cmds.c
/qemu/net/net.c
/qemu/net/vhost-vdpa.c
/qemu/pc-bios/s390-ccw.img
/qemu/pc-bios/s390-ccw/main.c
/qemu/pc-bios/s390-netboot.img
/qemu/qapi/opts-visitor.c
/qemu/qapi/qapi-util.c
/qemu/qapi/qobject-input-visitor.c
/qemu/qapi/sockets.json
/qemu/qapi/string-input-visitor.c
/qemu/qapi/ui.json
/qemu/qemu-img.c
commands-posix.c
/qemu/roms/Makefile
/qemu/scripts/kernel-doc
/qemu/scripts/oss-fuzz/build.sh
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/vl.c
/qemu/target/arm/helper.c
/qemu/target/arm/m_helper.c
/qemu/target/arm/translate-neon.c.inc
/qemu/target/arm/translate-vfp.c.inc
/qemu/target/arm/translate.c
/qemu/target/arm/vec_helper.c
/qemu/target/mips/cp0_helper.c
/qemu/target/mips/dsp_helper.c
/qemu/target/mips/fpu_helper.c
/qemu/target/mips/gdbstub.c
/qemu/target/mips/helper.c
/qemu/target/mips/lmmi_helper.c
/qemu/target/mips/mips-semi.c
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate_init.c.inc
/qemu/target/ppc/excp_helper.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/internals.h
/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/s390x/insn-data.def
/qemu/target/s390x/translate.c
/qemu/tcg/optimize.c
/qemu/tcg/tcg.c
/qemu/tests/acceptance/boot_linux.py
/qemu/tests/acceptance/virtiofs_submounts.py
/qemu/tests/acceptance/virtiofs_submounts.py.data/cleanup.sh
/qemu/tests/acceptance/virtiofs_submounts.py.data/guest-cleanup.sh
/qemu/tests/acceptance/virtiofs_submounts.py.data/guest.sh
/qemu/tests/acceptance/virtiofs_submounts.py.data/host.sh
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/pylintrc
/qemu/tests/qtest/cdrom-test.c
/qemu/tests/qtest/device-introspect-test.c
/qemu/tests/qtest/endianness-test.c
/qemu/tests/qtest/fuzz-test.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/qos_fuzz.c
/qemu/tests/qtest/ivshmem-test.c
/qemu/tests/qtest/libqos/ahci.c
/qemu/tests/qtest/libqos/virtio-9p.c
/qemu/tests/qtest/libqos/virtio-9p.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/npcm7xx_rng-test.c
/qemu/tests/qtest/virtio-9p-test.c
/qemu/tests/test-util-sockets.c
/qemu/tools/virtiofsd/fuse_common.h
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/fuse_lowlevel.h
/qemu/tools/virtiofsd/fuse_virtio.c
/qemu/tools/virtiofsd/helper.c
/qemu/tools/virtiofsd/meson.build
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/ui/console.c
/qemu/ui/trace-events
/qemu/ui/vnc-auth-sasl.c
/qemu/ui/vnc-auth-vencrypt.c
/qemu/ui/vnc-jobs.c
/qemu/ui/vnc-ws.c
/qemu/ui/vnc.c
/qemu/util/aio-win32.c
/qemu/util/cutils.c
/qemu/util/meson.build
/qemu/util/qemu-coroutine-lock.c
/qemu/util/qemu-option.c
/qemu/util/qemu-sockets.c
cad97c0820-Oct-2020 Marc-André Lureau <marcandre.lureau@redhat.com>

qga: add ssh-get-authorized-keys

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
*fix-up merge conflicts due to qga-ssh-test being disabled in earlier
patch due to G_TEST_OPTION_ISOL

qga: add ssh-get-authorized-keys

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
*fix-up merge conflicts due to qga-ssh-test being disabled in earlier
patch due to G_TEST_OPTION_ISOLATE_DIRS triggering build-oss-fuzz
leak detector.
*fix up style and disallowed g_assert* usage reported by checkpatch
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

2a127f9620-Oct-2020 Marc-André Lureau <marcandre.lureau@redhat.com>

meson: minor simplification

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>

0e3c947503-Nov-2020 Michael Roth <michael.roth@amd.com>

qga: add *reset argument to ssh-add-authorized-keys

I prefer 'reset' over 'clear', since 'clear' and keys may have some
other relations or meaning.

Signed-off-by: Marc-André Lureau <marcandre.lurea

qga: add *reset argument to ssh-add-authorized-keys

I prefer 'reset' over 'clear', since 'clear' and keys may have some
other relations or meaning.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
*fix disallowed g_assert* usage reported by checkpatch
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

8d769ec720-Oct-2020 Marc-André Lureau <marcandre.lureau@redhat.com>

qga: add ssh-{add,remove}-authorized-keys

Add new commands to add and remove SSH public keys from
~/.ssh/authorized_keys.

I took a different approach for testing, including the unit tests right
wit

qga: add ssh-{add,remove}-authorized-keys

Add new commands to add and remove SSH public keys from
~/.ssh/authorized_keys.

I took a different approach for testing, including the unit tests right
with the code. I wanted to overwrite the function to get the user
details, I couldn't easily do that over QMP. Furthermore, I prefer
having unit tests very close to the code, and unit files that are domain
specific (commands-posix is too crowded already). FWIW, that
coding/testing style is Rust-style (where tests can or should even be
part of the documentation!).

Fixes:
https://bugzilla.redhat.com/show_bug.cgi?id=1885332

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
*squashed in fix-ups for setting file ownership and use of QAPI
conditionals for CONFIG_POSIX instead of stub definitions
*disable qga-ssh-test for now due to G_TEST_OPTION_ISOLATE_DIRS
triggering leak detector in build-oss-fuzz
*fix disallowed g_assert* usage reported by checkpatch
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

c67d2efd12-Oct-2020 Tomáš Golembiovský <tgolembi@redhat.com>

qga: add implementation of guest-get-disks for Windows

The command lists all the physical disk drives. Unlike for Linux
partitions and virtual volumes are not listed.

Example output:

{
"return":

qga: add implementation of guest-get-disks for Windows

The command lists all the physical disk drives. Unlike for Linux
partitions and virtual volumes are not listed.

Example output:

{
"return": [
{
"name": "\\\\.\\PhysicalDrive0",
"partition": false,
"address": {
"serial": "QM00001",
"bus-type": "sata",
...
},
"dependents": []
}
]
}

Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

fed3956412-Oct-2020 Tomáš Golembiovský <tgolembi@redhat.com>

qga: add implementation of guest-get-disks for Linux

The command lists all disks (real and virtual) as well as disk
partitions. For each disk the list of dependent disks is also listed and
/dev path

qga: add implementation of guest-get-disks for Linux

The command lists all disks (real and virtual) as well as disk
partitions. For each disk the list of dependent disks is also listed and
/dev path is used as a handle so it can be matched with "name" field of
other returned disk entries. For disk partitions the "dependents" list
is populated with the the parent device for easier tracking of
hierarchy.

Example output:
{
"return": [
...
{
"name": "/dev/dm-0",
"partition": false,
"dependents": [
"/dev/sda2"
],
"alias": "luks-7062202e-5b9b-433e-81e8-6628c40da9f7"
},
{
"name": "/dev/sda2",
"partition": true,
"dependents": [
"/dev/sda"
]
},
{
"name": "/dev/sda",
"partition": false,
"address": {
"serial": "SAMSUNG_MZ7LN512HCHP-000L1_S1ZKNXAG822493",
"bus-type": "sata",
...
"dev": "/dev/sda",
"target": 0
},
"dependents": []
},
...
]
}

Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
*add missing stub for !defined(CONFIG_FSFREEZE)
*remove unused deps_dir variable
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

c27ea3f912-Oct-2020 Tomáš Golembiovský <tgolembi@redhat.com>

qga: add command guest-get-disks

Add API and stubs for new guest-get-disks command.

The command guest-get-fsinfo can be used to list information about disks
and partitions but it is limited only to

qga: add command guest-get-disks

Add API and stubs for new guest-get-disks command.

The command guest-get-fsinfo can be used to list information about disks
and partitions but it is limited only to mounted disks with filesystem.
This new command should allow listing information about disks of the VM
regardles whether they are mounted or not. This can be usefull for
management applications for mapping virtualized devices or pass-through
devices to device names in the guest OS.

Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>

show more ...

12345678910>>...26