History log of /qemu/hw/char/ (Results 201 – 225 of 620)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
9bc7176c20-Nov-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial-mm: use sysbus facilities

Make SerialMM a regular sysbus device, by registering the irq, and the
mmio region. Reexport the internal serial properties.

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

serial-mm: use sysbus facilities

Make SerialMM a regular sysbus device, by registering the irq, and the
mmio region. Reexport the internal serial properties.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

show more ...

80b2eed923-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial-mm: add endianness property

Add a qdev property for endianness, so memory region setup can be done
in realize.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Pet

serial-mm: add endianness property

Add a qdev property for endianness, so memory region setup can be done
in realize.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

show more ...

17fd1a6421-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial-mm: add "regshift" property

And a property and rename "it_shift" field to "regshift", as it seems
to be more popular (and I don't know what "it" stands for).

Signed-off-by: Marc-André Lureau

serial-mm: add "regshift" property

And a property and rename "it_shift" field to "regshift", as it seems
to be more popular (and I don't know what "it" stands for).

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

show more ...

490a9d9b23-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial: start making SerialMM a sysbus device

Memory mapped serial device is in fact a sysbus device. The following
patches will make use of sysbus facilities for resource and
registration. In parti

serial: start making SerialMM a sysbus device

Memory mapped serial device is in fact a sysbus device. The following
patches will make use of sysbus facilities for resource and
registration. In particular, "serial-mm: use sysbus facilities" will
move internal serial realization to serial_mm_realize callback to
follow qdev best practices.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

show more ...

b997500021-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial: replace serial_exit_core() with unrealize

Instead of calling serial_exit_core() directly, use the QDev unrealize
callback.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Rev

serial: replace serial_exit_core() with unrealize

Instead of calling serial_exit_core() directly, use the QDev unrealize
callback.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

show more ...

c9808d6021-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial: realize the serial device

Instead of calling serial_realize_core(), use the QDev realize
callback.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathi

serial: realize the serial device

Instead of calling serial_realize_core(), use the QDev realize
callback.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

show more ...

96651db421-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial: add "baudbase" property

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linar

serial: add "baudbase" property

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

show more ...

ff22c58821-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial: add "chardev" property

This is more QOM-friendly, callers may set/get the property themself.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Dau

serial: add "chardev" property

This is more QOM-friendly, callers may set/get the property themself.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

show more ...

4cc017e521-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial: register vmsd with DeviceClass

Migration from old to new code works, however the other way fails for
devices that use serial_init/serial_mm_init with "base", used as
instance_id previously.

serial: register vmsd with DeviceClass

Migration from old to new code works, however the other way fails for
devices that use serial_init/serial_mm_init with "base", used as
instance_id previously.

(with qdev_set_legacy_instance_id, the alias_id is only used in
savevm.c:find_se(), and thus can only be used to match against
"legacy" instance id values. On new code, instance_id is generated
incrementally from 0 with calculate_new_instance_id(), based on
"qdev-path/vmsd-name")

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: xiaoqiang zhao <zxq_yx_007@163.com>

show more ...

7781b88e21-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial: initial qom-ification

Make SerialState a device (the following patches will introduce IO/MM
sysbus serial devices)

None of the serial_{,mm}_init() callers actually free the returned
value (

serial: initial qom-ification

Make SerialState a device (the following patches will introduce IO/MM
sysbus serial devices)

None of the serial_{,mm}_init() callers actually free the returned
value (even if they did, it would be quite harmless), so we can change
the object allocation at will.

However, the devices that embed SerialState must now have their field
QOM-initialized manually (isa, pci, pci-multi).

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

show more ...

4305d48221-Oct-2019 Marc-André Lureau <marcandre.lureau@redhat.com>

serial-pci-multi: factor out multi_serial_get_port_count()

Common function to be reused in next patch.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-D

serial-pci-multi: factor out multi_serial_get_port_count()

Common function to be reused in next patch.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

show more ...


/qemu/.cirrus.yml
/qemu/.gitlab-ci.yml
/qemu/.gitmodules
/qemu/.mailmap
/qemu/.shippable.yml
/qemu/.travis.yml
/qemu/Kconfig.host
/qemu/LICENSE
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/Makefile.objs
/qemu/Makefile.target
/qemu/VERSION
/qemu/accel/Makefile.objs
/qemu/accel/accel.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/stubs/kvm-stub.c
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/Makefile.objs
/qemu/accel/tcg/atomic_common.inc.c
/qemu/accel/tcg/atomic_template.h
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/plugin-helpers.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/arch_init.c
/qemu/audio/audio.c
/qemu/audio/paaudio.c
/qemu/backends/Makefile.objs
/qemu/backends/cryptodev.c
/qemu/backends/dbus-vmstate.c
/qemu/backends/hostmem.c
/qemu/backends/trace-events
/qemu/block.c
/qemu/block/Makefile.objs
/qemu/block/backup-top.c
/qemu/block/backup.c
/qemu/block/blkdebug.c
/qemu/block/block-backend.c
/qemu/block/block-copy.c
/qemu/block/commit.c
/qemu/block/copy-on-read.c
/qemu/block/crypto.c
/qemu/block/dirty-bitmap.c
/qemu/block/file-posix.c
/qemu/block/file-win32.c
/qemu/block/filter-compress.c
/qemu/block/gluster.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/mirror.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/nvme.c
/qemu/block/parallels.c
/qemu/block/qcow.c
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2-cache.c
/qemu/block/qcow2-refcount.c
/qemu/block/qcow2-snapshot.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/qed.c
/qemu/block/raw-format.c
/qemu/block/rbd.c
/qemu/block/sheepdog.c
/qemu/block/snapshot.c
/qemu/block/ssh.c
/qemu/block/throttle-groups.c
/qemu/block/trace-events
/qemu/block/vdi.c
/qemu/block/vhdx-log.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/blockdev-nbd.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bootdevice.c
/qemu/bsd-user/main.c
/qemu/bsd-user/syscall.c
/qemu/chardev/char.c
/qemu/configure
/qemu/contrib/gitdm/domain-map
/qemu/contrib/gitdm/group-map-individuals
/qemu/contrib/ivshmem-server/ivshmem-server.c
/qemu/contrib/ivshmem-server/main.c
/qemu/contrib/libvhost-user/libvhost-user.c
/qemu/contrib/vhost-user-gpu/50-qemu-gpu.json.in
/qemu/contrib/vhost-user-gpu/vugbm.c
/qemu/contrib/vhost-user-input/main.c
/qemu/contrib/vhost-user-scsi/vhost-user-scsi.c
/qemu/cpus-common.c
/qemu/cpus.c
/qemu/crypto/Makefile.objs
/qemu/crypto/cipher-gcrypt.c
/qemu/crypto/cipher-nettle.c
/qemu/crypto/tlscredsx509.c
/qemu/default-configs/i386-softmmu.mak
/qemu/default-configs/m68k-softmmu.mak
/qemu/disas.c
/qemu/disas/libvixl/Makefile.objs
/qemu/docs/arm-cpu-features.rst
/qemu/docs/conf.py
/qemu/docs/devel/bitops.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/memory.rst
/qemu/docs/devel/tcg-plugins.rst
/qemu/docs/devel/testing.rst
/qemu/docs/hyperv.txt
/qemu/docs/interop/dbus-vmstate.rst
/qemu/docs/interop/dbus.rst
/qemu/docs/interop/index.rst
/qemu/docs/interop/pr-helper.rst
/qemu/docs/microvm.rst
/qemu/docs/specs/ppc-spapr-hotplug.txt
/qemu/docs/specs/ppc-xive.rst
/qemu/docs/specs/tpm.txt
/qemu/docs/sphinx/kerneldoc.py
/qemu/docs/sphinx/kernellog.py
/qemu/docs/virtio-net-failover.rst
/qemu/docs/virtio-pmem.rst
/qemu/dump/dump-hmp-cmds.c
/qemu/exec-vary.c
/qemu/exec.c
/qemu/fpu/softfloat.c
/qemu/fsdev/virtfs-proxy-helper.c
/qemu/gdb-xml/riscv-32bit-virtual.xml
/qemu/gdb-xml/riscv-64bit-virtual.xml
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p-local.c
/qemu/hw/9pfs/9p-proxy.c
/qemu/hw/9pfs/9p.c
/qemu/hw/Kconfig
/qemu/hw/Makefile.objs
/qemu/hw/acpi/Makefile.objs
/qemu/hw/acpi/acpi-x86-stub.c
/qemu/hw/acpi/cpu_hotplug.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/alpha/alpha_sys.h
/qemu/hw/alpha/dp264.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/bcm2835_peripherals.c
/qemu/hw/arm/bcm2836.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmuv3-internal.h
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/block/Kconfig
/qemu/hw/block/Makefile.objs
/qemu/hw/block/dataplane/virtio-blk.c
/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/bt/Kconfig
serial-pci-multi.c
/qemu/hw/core/Makefile.objs
/qemu/hw/core/cpu.c
/qemu/hw/core/irq.c
/qemu/hw/core/loader-fit.c
/qemu/hw/core/machine-hmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/numa.c
/qemu/hw/core/ptimer.c
/qemu/hw/core/qdev.c
/qemu/hw/core/sysbus.c
/qemu/hw/core/vmstate-if.c
/qemu/hw/display/Kconfig
/qemu/hw/display/Makefile.objs
/qemu/hw/display/bochs-display.c
/qemu/hw/display/jazz_led.c
/qemu/hw/display/macfb.c
/qemu/hw/display/qxl-render.c
/qemu/hw/display/qxl.c
/qemu/hw/display/sm501.c
/qemu/hw/display/vga-isa-mm.c
/qemu/hw/display/vga-isa.c
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vga.c
/qemu/hw/display/vga_int.h
/qemu/hw/display/vmware_vga.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/dma/rc4030.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/gpio/aspeed_gpio.c
/qemu/hw/hppa/hppa_sys.h
/qemu/hw/hppa/machine.c
/qemu/hw/hyperv/hyperv.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/trace-events
/qemu/hw/i386/Kconfig
/qemu/hw/i386/Makefile.objs
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/fw_cfg.c
/qemu/hw/i386/fw_cfg.h
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/intel_iommu_internal.h
/qemu/hw/i386/kvm/Makefile.objs
/qemu/hw/i386/kvm/i8259.c
/qemu/hw/i386/kvm/ioapic.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/port92.c
/qemu/hw/i386/trace-events
/qemu/hw/i386/x86-iommu-stub.c
/qemu/hw/i386/x86.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/isa.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/qdev.c
/qemu/hw/ide/via.c
/qemu/hw/input/pckbd.c
/qemu/hw/input/virtio-input.c
/qemu/hw/intc/Kconfig
/qemu/hw/intc/apic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/exynos4210_gic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/i8259_common.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/s390_flic_kvm.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xics_spapr.c
/qemu/hw/intc/xive.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/ipmi/pci_ipmi_bt.c
/qemu/hw/ipmi/pci_ipmi_kcs.c
/qemu/hw/isa/Kconfig
/qemu/hw/isa/Makefile.objs
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix3.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/Makefile.objs
/qemu/hw/m68k/bootinfo.h
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/q800.c
/qemu/hw/mem/Makefile.objs
/qemu/hw/mem/memory-device.c
/qemu/hw/mips/gt64xxx_pci.c
/qemu/hw/mips/mips_fulong2e.c
/qemu/hw/mips/mips_jazz.c
/qemu/hw/mips/mips_malta.c
/qemu/hw/mips/mips_r4k.c
/qemu/hw/mips/trace-events
/qemu/hw/misc/Kconfig
/qemu/hw/misc/Makefile.objs
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/aspeed_sdmc.c
/qemu/hw/misc/bcm2835_thermal.c
/qemu/hw/misc/grlib_ahb_apb_pnp.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/max111x.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/tmp421.c
/qemu/hw/net/Kconfig
/qemu/hw/net/Makefile.objs
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/can/can_sja1000.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/eepro100.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/fsl_etsec/etsec.h
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/mipsnet.c
/qemu/hw/net/trace-events
/qemu/hw/net/tulip.c
/qemu/hw/net/tulip.h
/qemu/hw/net/vhost_net.c
/qemu/hw/net/virtio-net.c
/qemu/hw/nubus/Kconfig
/qemu/hw/nubus/Makefile.objs
/qemu/hw/nubus/mac-nubus-bridge.c
/qemu/hw/nubus/nubus-bridge.c
/qemu/hw/nubus/nubus-bus.c
/qemu/hw/nubus/nubus-device.c
/qemu/hw/nvram/eeprom93xx.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/Makefile.objs
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/i440fx.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/xen_igd_pt.c
/qemu/hw/pci/pci-stub.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pci_bridge.c
/qemu/hw/pci/pcie.c
/qemu/hw/ppc/Makefile.objs
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_homer.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc405_boards.c
/qemu/hw/ppc/prep.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_iommu.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_ovec.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_pci_nvlink2.c
/qemu/hw/rdma/rdma_backend.c
/qemu/hw/rdma/rdma_backend.h
/qemu/hw/rdma/rdma_rm.c
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/Kconfig
/qemu/hw/rtc/Makefile.objs
/qemu/hw/rtc/aspeed_rtc.c
/qemu/hw/rtc/ds1338.c
/qemu/hw/rtc/exynos4210_rtc.c
/qemu/hw/rtc/m41t80.c
/qemu/hw/rtc/m48t59-internal.h
/qemu/hw/rtc/m48t59-isa.c
/qemu/hw/rtc/m48t59.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/rtc/pl031.c
/qemu/hw/rtc/sun4v-rtc.c
/qemu/hw/rtc/trace-events
/qemu/hw/rtc/twl92230.c
/qemu/hw/rtc/xlnx-zynqmp-rtc.c
/qemu/hw/s390x/event-facility.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/timer/Kconfig
/qemu/hw/timer/Makefile.objs
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/timer/bcm2835_systmr.c
/qemu/hw/timer/grlib_gptimer.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/i8254_common.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/timer/trace-events
/qemu/hw/timer/xilinx_timer.c
/qemu/hw/tpm/tpm_emulator.c
/qemu/hw/usb/Kconfig
/qemu/hw/usb/Makefile.objs
/qemu/hw/usb/dev-network.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/vfio/Kconfig
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/spapr.c
/qemu/hw/virtio/Kconfig
/qemu/hw/virtio/Makefile.objs
/qemu/hw/virtio/vhost-user-fs-pci.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-bus.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/hw/xen/xen-common.c
/qemu/hw/xen/xen_pt.c
/qemu/include/block/block-copy.h
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/dirty-bitmap.h
/qemu/include/block/nbd.h
/qemu/include/block/nvme.h
/qemu/include/block/snapshot.h
/qemu/include/crypto/tlssession.h
/qemu/include/disas/disas.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/cpu_ldst_template.h
/qemu/include/exec/cpu_ldst_useronly_template.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/helper-gen.h
/qemu/include/exec/helper-proto.h
/qemu/include/exec/helper-tcg.h
/qemu/include/exec/log.h
/qemu/include/exec/memory.h
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/translator.h
/qemu/include/hw/arm/aspeed.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/arm/bcm2835_peripherals.h
/qemu/include/hw/arm/bcm2836.h
/qemu/include/hw/arm/boot.h
/qemu/include/hw/arm/raspi_platform.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/block/block.h
/qemu/include/hw/block/swim.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/display/macfb.h
/qemu/include/hw/i2c/aspeed_i2c.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/intc/i8259.h
/qemu/include/hw/ipmi/ipmi.h
/qemu/include/hw/irq.h
/qemu/include/hw/isa/i8259_internal.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/misc/bcm2835_thermal.h
/qemu/include/hw/misc/mac_via.h
/qemu/include/hw/nubus/mac-nubus-bridge.h
/qemu/include/hw/nubus/nubus.h
/qemu/include/hw/nvram/fw_cfg.h
/qemu/include/hw/pci-host/i440fx.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pci_ids.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/pnv_homer.h
/qemu/include/hw/ppc/pnv_lpc.h
/qemu/include/hw/ppc/pnv_occ.h
/qemu/include/hw/ppc/pnv_pnor.h
/qemu/include/hw/ppc/pnv_psi.h
/qemu/include/hw/ppc/pnv_xive.h
/qemu/include/hw/ppc/pnv_xscom.h
/qemu/include/hw/ppc/ppc.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_irq.h
/qemu/include/hw/ppc/spapr_ovec.h
/qemu/include/hw/ppc/spapr_vio.h
/qemu/include/hw/ppc/spapr_xive.h
/qemu/include/hw/ppc/xics.h
/qemu/include/hw/ppc/xics_spapr.h
/qemu/include/hw/ppc/xive.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/hw/ptimer.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/riscv/sifive_u.h
/qemu/include/hw/riscv/spike.h
/qemu/include/hw/riscv/virt.h
/qemu/include/hw/rtc/aspeed_rtc.h
/qemu/include/hw/rtc/m48t59.h
/qemu/include/hw/rtc/mc146818rtc.h
/qemu/include/hw/rtc/mc146818rtc_regs.h
/qemu/include/hw/rtc/pl031.h
/qemu/include/hw/rtc/sun4v-rtc.h
/qemu/include/hw/rtc/xlnx-zynqmp-rtc.h
/qemu/include/hw/scsi/esp.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/southbridge/piix.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/sysbus.h
/qemu/include/hw/timer/bcm2835_systmr.h
/qemu/include/hw/virtio/vhost-user-fs.h
/qemu/include/hw/virtio/virtio-blk.h
/qemu/include/hw/virtio/virtio-mmio.h
/qemu/include/hw/virtio/virtio-net.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/hw/vmstate-if.h
/qemu/include/hw/watchdog/wdt_aspeed.h
/qemu/include/hw/xen/interface/io/blkif.h
/qemu/include/io/task.h
/qemu/include/migration/register.h
/qemu/include/migration/vmstate.h
/qemu/include/monitor/hmp.h
/qemu/include/qapi/error.h
/qemu/include/qemu-common.h
/qemu/include/qemu/bitops.h
/qemu/include/qemu/co-shared-resource.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/coroutine.h
/qemu/include/qemu/cutils.h
/qemu/include/qemu/dbus.h
/qemu/include/qemu/error-report.h
/qemu/include/qemu/id.h
/qemu/include/qemu/log.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/plugin-memory.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/queue.h
/qemu/include/qom/object.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/virtio_ring.h
/qemu/include/sysemu/accel.h
/qemu/include/sysemu/block-backend.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/os-win32.h
/qemu/include/sysemu/sysemu.h
/qemu/include/ui/console.h
/qemu/include/ui/qemu-pixman.h
/qemu/include/user/syscall-trace.h
/qemu/linux-headers/asm-arm/kvm.h
/qemu/linux-headers/asm-arm64/kvm.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/kvm.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/psp-sev.h
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/aarch64/target_cpu.h
/qemu/linux-user/alpha/target_cpu.h
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/arm/target_cpu.h
/qemu/linux-user/cris/target_cpu.h
/qemu/linux-user/elfload.c
/qemu/linux-user/exit.c
/qemu/linux-user/hppa/target_cpu.h
/qemu/linux-user/i386/target_cpu.h
/qemu/linux-user/m68k/target_cpu.h
/qemu/linux-user/main.c
/qemu/linux-user/microblaze/target_cpu.h
/qemu/linux-user/mips/target_cpu.h
/qemu/linux-user/mmap.c
/qemu/linux-user/nios2/target_cpu.h
/qemu/linux-user/openrisc/target_cpu.h
/qemu/linux-user/ppc/cpu_loop.c
/qemu/linux-user/ppc/target_cpu.h
/qemu/linux-user/riscv/cpu_loop.c
/qemu/linux-user/riscv/target_cpu.h
/qemu/linux-user/s390x/target_cpu.h
/qemu/linux-user/sh4/target_cpu.h
/qemu/linux-user/sparc/signal.c
/qemu/linux-user/sparc/target_cpu.h
/qemu/linux-user/syscall.c
/qemu/linux-user/tilegx/target_cpu.h
/qemu/linux-user/trace-events
/qemu/linux-user/xtensa/target_cpu.h
/qemu/memory.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/postcopy-ram.c
/qemu/migration/ram.c
/qemu/migration/savevm.c
/qemu/migration/savevm.h
/qemu/monitor/hmp-cmds.c
/qemu/monitor/misc.c
/qemu/monitor/qmp-cmds.c
/qemu/monitor/qmp.c
/qemu/nbd/client.c
/qemu/nbd/server.c
/qemu/net/can/can_socketcan.c
/qemu/net/colo-compare.c
/qemu/net/net.c
/qemu/os-posix.c
/qemu/os-win32.c
/qemu/pc-bios/README
/qemu/pc-bios/bios-256k.bin
/qemu/pc-bios/bios-microvm.bin
/qemu/pc-bios/bios.bin
/qemu/pc-bios/openbios-ppc
/qemu/pc-bios/openbios-sparc32
/qemu/pc-bios/openbios-sparc64
/qemu/pc-bios/opensbi-riscv32-virt-fw_jump.bin
/qemu/pc-bios/opensbi-riscv64-sifive_u-fw_jump.bin
/qemu/pc-bios/opensbi-riscv64-virt-fw_jump.bin
/qemu/pc-bios/s390-ccw.img
/qemu/pc-bios/s390-ccw/jump2ipl.c
/qemu/pc-bios/s390-ccw/sclp.c
/qemu/pc-bios/s390-netboot.img
/qemu/pc-bios/slof.bin
/qemu/pc-bios/vgabios-ati.bin
/qemu/pc-bios/vgabios-bochs-display.bin
/qemu/pc-bios/vgabios-cirrus.bin
/qemu/pc-bios/vgabios-qxl.bin
/qemu/pc-bios/vgabios-ramfb.bin
/qemu/pc-bios/vgabios-stdvga.bin
/qemu/pc-bios/vgabios-virtio.bin
/qemu/pc-bios/vgabios-vmware.bin
/qemu/pc-bios/vgabios.bin
/qemu/plugins/.gitignore
/qemu/plugins/Makefile.objs
/qemu/plugins/api.c
/qemu/plugins/core.c
/qemu/plugins/loader.c
/qemu/plugins/plugin.h
/qemu/plugins/qemu-plugins.symbols
/qemu/po/bg.po
/qemu/po/zh_CN.po
/qemu/python/qemu/__init__.py
/qemu/python/qemu/accel.py
/qemu/python/qemu/machine.py
/qemu/python/qemu/qtest.py
/qemu/qapi/block-core.json
/qemu/qapi/machine-target.json
/qemu/qapi/migration.json
/qemu/qapi/net.json
/qemu/qdev-monitor.c
/qemu/qemu-bridge-helper.c
/qemu/qemu-deprecated.texi
/qemu/qemu-doc.texi
/qemu/qemu-img.c
/qemu/qemu-io-cmds.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/commands-posix.c
/qemu/qga/commands-win32.c
/qemu/qga/commands.c
/qemu/qom/object.c
/qemu/qom/qom-hmp-cmds.c
/qemu/roms/Makefile
/qemu/roms/SLOF
/qemu/roms/config.seabios-128k
/qemu/roms/openbios
/qemu/roms/opensbi
/qemu/roms/qboot
/qemu/roms/seabios
/qemu/scripts/analyze-migration.py
/qemu/scripts/checkpatch.pl
/qemu/scripts/dump-guest-memory.py
/qemu/scripts/get_maintainer.pl
/qemu/scripts/kernel-doc
/qemu/scripts/qapi/doc.py
/qemu/scripts/qapi/expr.py
/qemu/scripts/qapi/parser.py
/qemu/scripts/qapi/schema.py
/qemu/scripts/qemu-binfmt-conf.sh
/qemu/scripts/tracetool/transform.py
/qemu/scripts/vmstate-static-checker.py
/qemu/scsi/qemu-pr-helper.c
/qemu/stubs/Makefile.objs
/qemu/stubs/pci-host-piix.c
/qemu/stubs/vmstate.c
/qemu/target/alpha/translate.c
/qemu/target/arm/arm-powerctl.c
/qemu/target/arm/arm_ldst.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper.c
/qemu/target/arm/helper.h
/qemu/target/arm/internals.h
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm32.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/kvm_arm.h
/qemu/target/arm/m_helper.c
/qemu/target/arm/machine.c
/qemu/target/arm/monitor.c
/qemu/target/arm/op_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-vfp.inc.c
/qemu/target/arm/translate.c
/qemu/target/arm/translate.h
/qemu/target/arm/vfp_helper.c
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.inc.c
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/fpu_helper.c
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/vmx.h
/qemu/target/i386/hvf/x86_decode.c
/qemu/target/i386/hvf/x86_decode.h
/qemu/target/i386/hvf/x86_emu.c
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/hyperv-proto.h
/qemu/target/i386/kvm.c
/qemu/target/i386/kvm_i386.h
/qemu/target/i386/machine.c
/qemu/target/i386/monitor.c
/qemu/target/i386/translate.c
/qemu/target/i386/whp-dispatch.h
/qemu/target/i386/whpx-all.c
/qemu/target/lm32/translate.c
/qemu/target/m68k/translate.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/helper.c
/qemu/target/mips/helper.h
/qemu/target/mips/kvm.c
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/nios2/translate.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/compat.c
/qemu/target/ppc/cpu-models.c
/qemu/target/ppc/cpu-models.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/helper.h
/qemu/target/ppc/helper_regs.h
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/timebase_helper.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate_init.inc.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/gdbstub.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/translate.c
/qemu/target/s390x/cpu-qom.h
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/diag.c
/qemu/target/s390x/helper.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/sigp.c
/qemu/target/s390x/translate.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/translate.c
/qemu/target/tilegx/translate.c
/qemu/target/unicore32/translate.c
/qemu/target/xtensa/cpu.h
/qemu/target/xtensa/import_core.sh
/qemu/target/xtensa/overlay_tool.h
/qemu/target/xtensa/translate.c
/qemu/tcg/aarch64/tcg-target.opc.h
/qemu/tcg/i386/tcg-target.opc.h
/qemu/tcg/ppc/tcg-target.opc.h
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg-op.h
/qemu/tcg/tcg-opc.h
/qemu/tcg/tcg.c
/qemu/tcg/tcg.h
/qemu/tcg/tci.c
/qemu/tests/Makefile.include
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/cpu_queries.py
/qemu/tests/acceptance/empty_cpu_model.py
/qemu/tests/acceptance/linux_initrd.py
/qemu/tests/acceptance/linux_ssh_mips_malta.py
/qemu/tests/acceptance/machine_m68k_nextcube.py
/qemu/tests/acceptance/machine_sparc_leon3.py
/qemu/tests/acceptance/ppc_prep_40p.py
/qemu/tests/acceptance/x86_cpu_model_versions.py
/qemu/tests/arm-cpu-features.c
/qemu/tests/benchmark-crypto-cipher.c
/qemu/tests/benchmark-crypto-hash.c
/qemu/tests/bios-tables-test.c
/qemu/tests/boot-sector.c
/qemu/tests/boot-serial-test.c
/qemu/tests/cdrom-test.c
/qemu/tests/cpu-plug-test.c
/qemu/tests/data/acpi/virt/DSDT
/qemu/tests/data/acpi/virt/DSDT.memhp
/qemu/tests/data/acpi/virt/DSDT.numamem
/qemu/tests/dbus-vmstate-daemon.sh
/qemu/tests/dbus-vmstate-test.c
/qemu/tests/dbus-vmstate1.xml
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/common.rc
/qemu/tests/docker/dockerfiles/centos7.docker
/qemu/tests/docker/dockerfiles/debian10.docker
/qemu/tests/docker/dockerfiles/fedora.docker
/qemu/tests/docker/dockerfiles/travis.docker
/qemu/tests/docker/dockerfiles/ubuntu.docker
/qemu/tests/docker/dockerfiles/ubuntu1804.docker
/qemu/tests/fw_cfg-test.c
/qemu/tests/hd-geo-test.c
/qemu/tests/image-fuzzer/qcow2/__init__.py
/qemu/tests/image-fuzzer/qcow2/fuzz.py
/qemu/tests/image-fuzzer/qcow2/layout.py
/qemu/tests/image-fuzzer/runner.py
/qemu/tests/ivshmem-test.c
/qemu/tests/libqos/libqos.c
/qemu/tests/libqos/pci.c
/qemu/tests/libqos/pci.h
/qemu/tests/libqos/virtio-9p.c
/qemu/tests/libqos/virtio-mmio.c
/qemu/tests/libqos/virtio-mmio.h
/qemu/tests/libqos/virtio-net.c
/qemu/tests/libqos/virtio-pci-modern.c
/qemu/tests/libqos/virtio-pci-modern.h
/qemu/tests/libqos/virtio-pci.c
/qemu/tests/libqos/virtio-pci.h
/qemu/tests/libqos/virtio.c
/qemu/tests/libqos/virtio.h
/qemu/tests/libqtest.c
/qemu/tests/migration-helpers.c
/qemu/tests/migration-helpers.h
/qemu/tests/migration-test.c
/qemu/tests/modules-test.c
/qemu/tests/pflash-cfi02-test.c
/qemu/tests/plugin/Makefile
/qemu/tests/plugin/bb.c
/qemu/tests/plugin/empty.c
/qemu/tests/plugin/hotblocks.c
/qemu/tests/plugin/hotpages.c
/qemu/tests/plugin/howvec.c
/qemu/tests/plugin/insn.c
/qemu/tests/plugin/mem.c
/qemu/tests/pnv-xscom-test.c
/qemu/tests/prom-env-test.c
/qemu/tests/pxe-test.c
/qemu/tests/qapi-schema/doc-bad-alternate-member.err
/qemu/tests/qapi-schema/doc-bad-boxed-command-arg.err
/qemu/tests/qapi-schema/doc-bad-boxed-command-arg.json
/qemu/tests/qapi-schema/doc-bad-boxed-command-arg.out
/qemu/tests/qapi-schema/doc-bad-command-arg.err
/qemu/tests/qapi-schema/doc-bad-enum-member.err
/qemu/tests/qapi-schema/doc-bad-enum-member.json
/qemu/tests/qapi-schema/doc-bad-enum-member.out
/qemu/tests/qapi-schema/doc-bad-event-arg.err
/qemu/tests/qapi-schema/doc-bad-event-arg.json
/qemu/tests/qapi-schema/doc-bad-event-arg.out
/qemu/tests/qapi-schema/doc-bad-feature.err
/qemu/tests/qapi-schema/doc-bad-feature.json
/qemu/tests/qapi-schema/doc-bad-feature.out
/qemu/tests/qapi-schema/doc-bad-union-member.err
/qemu/tests/qapi-schema/doc-good.json
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/doc-good.texi
/qemu/tests/qapi-schema/doc-undoc-feature.err
/qemu/tests/qapi-schema/doc-undoc-feature.json
/qemu/tests/qapi-schema/doc-undoc-feature.out
/qemu/tests/qapi-schema/test-qapi.py
/qemu/tests/qemu-iotests/005
/qemu/tests/qemu-iotests/007
/qemu/tests/qemu-iotests/014
/qemu/tests/qemu-iotests/015
/qemu/tests/qemu-iotests/019
/qemu/tests/qemu-iotests/020
/qemu/tests/qemu-iotests/024
/qemu/tests/qemu-iotests/026
/qemu/tests/qemu-iotests/028
/qemu/tests/qemu-iotests/029
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/031
/qemu/tests/qemu-iotests/031.out
/qemu/tests/qemu-iotests/036
/qemu/tests/qemu-iotests/036.out
/qemu/tests/qemu-iotests/039
/qemu/tests/qemu-iotests/039.out
/qemu/tests/qemu-iotests/041
/qemu/tests/qemu-iotests/041.out
/qemu/tests/qemu-iotests/043
/qemu/tests/qemu-iotests/046
/qemu/tests/qemu-iotests/048
/qemu/tests/qemu-iotests/049
/qemu/tests/qemu-iotests/049.out
/qemu/tests/qemu-iotests/050
/qemu/tests/qemu-iotests/051
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/053
/qemu/tests/qemu-iotests/058
/qemu/tests/qemu-iotests/059
/qemu/tests/qemu-iotests/060
/qemu/tests/qemu-iotests/060.out
/qemu/tests/qemu-iotests/061
/qemu/tests/qemu-iotests/061.out
/qemu/tests/qemu-iotests/062
/qemu/tests/qemu-iotests/063
/qemu/tests/qemu-iotests/063.out
/qemu/tests/qemu-iotests/066
/qemu/tests/qemu-iotests/067
/qemu/tests/qemu-iotests/068
/qemu/tests/qemu-iotests/069
/qemu/tests/qemu-iotests/071
/qemu/tests/qemu-iotests/073
/qemu/tests/qemu-iotests/074
/qemu/tests/qemu-iotests/079
/qemu/tests/qemu-iotests/080
/qemu/tests/qemu-iotests/081
/qemu/tests/qemu-iotests/083
/qemu/tests/qemu-iotests/083.out
/qemu/tests/qemu-iotests/085
/qemu/tests/qemu-iotests/085.out
/qemu/tests/qemu-iotests/088
/qemu/tests/qemu-iotests/090
/qemu/tests/qemu-iotests/091
/qemu/tests/qemu-iotests/091.out
/qemu/tests/qemu-iotests/092
/qemu/tests/qemu-iotests/093
/qemu/tests/qemu-iotests/094
/qemu/tests/qemu-iotests/094.out
/qemu/tests/qemu-iotests/095
/qemu/tests/qemu-iotests/095.out
/qemu/tests/qemu-iotests/098
/qemu/tests/qemu-iotests/099
/qemu/tests/qemu-iotests/103
/qemu/tests/qemu-iotests/106
/qemu/tests/qemu-iotests/108
/qemu/tests/qemu-iotests/109
/qemu/tests/qemu-iotests/109.out
/qemu/tests/qemu-iotests/110
/qemu/tests/qemu-iotests/110.out
/qemu/tests/qemu-iotests/111
/qemu/tests/qemu-iotests/112
/qemu/tests/qemu-iotests/114
/qemu/tests/qemu-iotests/115
/qemu/tests/qemu-iotests/117.out
/qemu/tests/qemu-iotests/118
/qemu/tests/qemu-iotests/121
/qemu/tests/qemu-iotests/122
/qemu/tests/qemu-iotests/123
/qemu/tests/qemu-iotests/125
/qemu/tests/qemu-iotests/127.out
/qemu/tests/qemu-iotests/136
/qemu/tests/qemu-iotests/137
/qemu/tests/qemu-iotests/137.out
/qemu/tests/qemu-iotests/138
/qemu/tests/qemu-iotests/140
/qemu/tests/qemu-iotests/140.out
/qemu/tests/qemu-iotests/141
/qemu/tests/qemu-iotests/141.out
/qemu/tests/qemu-iotests/142
/qemu/tests/qemu-iotests/143
/qemu/tests/qemu-iotests/143.out
/qemu/tests/qemu-iotests/144
/qemu/tests/qemu-iotests/144.out
/qemu/tests/qemu-iotests/147
/qemu/tests/qemu-iotests/153
/qemu/tests/qemu-iotests/153.out
/qemu/tests/qemu-iotests/156
/qemu/tests/qemu-iotests/156.out
/qemu/tests/qemu-iotests/159
/qemu/tests/qemu-iotests/160
/qemu/tests/qemu-iotests/161
/qemu/tests/qemu-iotests/161.out
/qemu/tests/qemu-iotests/169
/qemu/tests/qemu-iotests/169.out
/qemu/tests/qemu-iotests/170
/qemu/tests/qemu-iotests/172
/qemu/tests/qemu-iotests/173
/qemu/tests/qemu-iotests/173.out
/qemu/tests/qemu-iotests/174
/qemu/tests/qemu-iotests/175
/qemu/tests/qemu-iotests/176
/qemu/tests/qemu-iotests/178
/qemu/tests/qemu-iotests/181
/qemu/tests/qemu-iotests/182
/qemu/tests/qemu-iotests/182.out
/qemu/tests/qemu-iotests/183
/qemu/tests/qemu-iotests/183.out
/qemu/tests/qemu-iotests/185
/qemu/tests/qemu-iotests/185.out
/qemu/tests/qemu-iotests/187
/qemu/tests/qemu-iotests/190
/qemu/tests/qemu-iotests/191
/qemu/tests/qemu-iotests/191.out
/qemu/tests/qemu-iotests/192
/qemu/tests/qemu-iotests/192.out
/qemu/tests/qemu-iotests/194
/qemu/tests/qemu-iotests/195
/qemu/tests/qemu-iotests/197
/qemu/tests/qemu-iotests/198
/qemu/tests/qemu-iotests/198.out
/qemu/tests/qemu-iotests/200
/qemu/tests/qemu-iotests/200.out
/qemu/tests/qemu-iotests/201
/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/214.out
/qemu/tests/qemu-iotests/215
/qemu/tests/qemu-iotests/217
/qemu/tests/qemu-iotests/220
/qemu/tests/qemu-iotests/222
/qemu/tests/qemu-iotests/223
/qemu/tests/qemu-iotests/223.out
/qemu/tests/qemu-iotests/225
/qemu/tests/qemu-iotests/229
/qemu/tests/qemu-iotests/229.out
/qemu/tests/qemu-iotests/232
/qemu/tests/qemu-iotests/235
/qemu/tests/qemu-iotests/237
/qemu/tests/qemu-iotests/240
/qemu/tests/qemu-iotests/241
/qemu/tests/qemu-iotests/243
/qemu/tests/qemu-iotests/244
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/247
/qemu/tests/qemu-iotests/249
/qemu/tests/qemu-iotests/249.out
/qemu/tests/qemu-iotests/250
/qemu/tests/qemu-iotests/252
/qemu/tests/qemu-iotests/255
/qemu/tests/qemu-iotests/261
/qemu/tests/qemu-iotests/261.out
/qemu/tests/qemu-iotests/264
/qemu/tests/qemu-iotests/265
/qemu/tests/qemu-iotests/266
/qemu/tests/qemu-iotests/266.out
/qemu/tests/qemu-iotests/267
/qemu/tests/qemu-iotests/267.out
/qemu/tests/qemu-iotests/272
/qemu/tests/qemu-iotests/272.out
/qemu/tests/qemu-iotests/273
/qemu/tests/qemu-iotests/273.out
/qemu/tests/qemu-iotests/277
/qemu/tests/qemu-iotests/277.out
/qemu/tests/qemu-iotests/279
/qemu/tests/qemu-iotests/279.out
/qemu/tests/qemu-iotests/280
/qemu/tests/qemu-iotests/280.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.nbd
/qemu/tests/qemu-iotests/common.qemu
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/group
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/nbd-fault-injector.py
/qemu/tests/qemu-iotests/qcow2.py
/qemu/tests/rtc-test.c
/qemu/tests/tcg/Makefile.prereqs
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/aarch64/Makefile.softmmu-target
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/arm/Makefile.softmmu-target
/qemu/tests/tcg/arm/Makefile.target
/qemu/tests/tcg/configure.sh
/qemu/tests/tcg/cris/Makefile.target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/multiarch/float_helpers.c
/qemu/tests/tcg/multiarch/linux-test.c
/qemu/tests/test-bitmap.c
/qemu/tests/test-block-iothread.c
/qemu/tests/test-blockjob.c
/qemu/tests/test-crypto-tlscredsx509.c
/qemu/tests/test-crypto-tlssession.c
/qemu/tests/test-io-channel-tls.c
/qemu/tests/test-keyval.c
/qemu/tests/test-logging.c
/qemu/tests/test-qga.c
/qemu/tests/test-qobject-output-visitor.c
/qemu/tests/test-string-output-visitor.c
/qemu/tests/test-util-filemonitor.c
/qemu/tests/test-vmstate.c
/qemu/tests/vhost-user-bridge.c
/qemu/tests/virtio-blk-test.c
/qemu/tests/virtio-scsi-test.c
/qemu/tests/vm/Makefile.include
/qemu/tests/vm/basevm.py
/qemu/tests/vm/centos
/qemu/tests/vm/fedora
/qemu/tests/vm/freebsd
/qemu/tests/vm/netbsd
/qemu/tests/vm/openbsd
/qemu/tests/vm/ubuntu.i386
/qemu/tests/vmgenid-test.c
/qemu/trace-events
/qemu/trace/control.c
/qemu/trace/mem-internal.h
/qemu/trace/mem.h
/qemu/ui/console.c
/qemu/ui/gtk.c
/qemu/ui/sdl2.c
/qemu/ui/trace-events
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/Makefile.objs
/qemu/util/async.c
/qemu/util/cutils.c
/qemu/util/dbus.c
/qemu/util/error.c
/qemu/util/event_notifier-posix.c
/qemu/util/hbitmap.c
/qemu/util/id.c
/qemu/util/log.c
/qemu/util/main-loop.c
/qemu/util/mmap-alloc.c
/qemu/util/osdep.c
/qemu/util/oslib-posix.c
/qemu/util/oslib-win32.c
/qemu/util/qemu-co-shared-resource.c
/qemu/util/qemu-coroutine-io.c
/qemu/util/qemu-coroutine-sleep.c
/qemu/util/qemu-error.c
/qemu/util/qemu-timer.c
/qemu/util/qsp.c
/qemu/util/systemd.c
/qemu/util/vfio-helpers.c
/qemu/vl.c
e615c15704-Dec-2019 Pan Nengyuan <pannengyuan@huawei.com>

virtio-serial-bus: fix memory leak while attach virtio-serial-bus

ivqs/ovqs/c_ivq/c_ovq is forgot to cleanup in
virtio_serial_device_unrealize, the memory leak stack is as bellow:

Direct leak of 12

virtio-serial-bus: fix memory leak while attach virtio-serial-bus

ivqs/ovqs/c_ivq/c_ovq is forgot to cleanup in
virtio_serial_device_unrealize, the memory leak stack is as bellow:

Direct leak of 1290240 byte(s) in 180 object(s) allocated from:
#0 0x7fc9bfc27560 in calloc (/usr/lib64/libasan.so.3+0xc7560)
#1 0x7fc9bed6f015 in g_malloc0 (/usr/lib64/libglib-2.0.so.0+0x50015)
#2 0x5650e02b83e7 in virtio_add_queue hw/virtio/virtio.c:2327
#3 0x5650e02847b5 in virtio_serial_device_realize hw/char/virtio-serial-bus.c:1089
#4 0x5650e02b56a7 in virtio_device_realize hw/virtio/virtio.c:3504
#5 0x5650e03bf031 in device_set_realized hw/core/qdev.c:876
#6 0x5650e0531efd in property_set_bool qom/object.c:2080
#7 0x5650e053650e in object_property_set_qobject qom/qom-qobject.c:26
#8 0x5650e0533e14 in object_property_set_bool qom/object.c:1338
#9 0x5650e04c0e37 in virtio_pci_realize hw/virtio/virtio-pci.c:1801

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com>
Cc: Laurent Vivier <lvivier@redhat.com>
Cc: Amit Shah <amit@kernel.org>
Cc: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <1575444716-17632-3-git-send-email-pannengyuan@huawei.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>

show more ...


/qemu/.cirrus.yml
/qemu/.gitlab-ci.yml
/qemu/.gitmodules
/qemu/.mailmap
/qemu/.shippable.yml
/qemu/.travis.yml
/qemu/Kconfig.host
/qemu/LICENSE
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/Makefile.objs
/qemu/Makefile.target
/qemu/VERSION
/qemu/accel/Makefile.objs
/qemu/accel/accel.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/stubs/kvm-stub.c
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/Makefile.objs
/qemu/accel/tcg/atomic_common.inc.c
/qemu/accel/tcg/atomic_template.h
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/plugin-helpers.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/arch_init.c
/qemu/audio/audio.c
/qemu/audio/paaudio.c
/qemu/backends/cryptodev.c
/qemu/backends/hostmem.c
/qemu/block.c
/qemu/block/backup.c
/qemu/block/block-backend.c
/qemu/block/block-copy.c
/qemu/block/commit.c
/qemu/block/copy-on-read.c
/qemu/block/crypto.c
/qemu/block/dirty-bitmap.c
/qemu/block/file-posix.c
/qemu/block/file-win32.c
/qemu/block/gluster.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/mirror.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/nvme.c
/qemu/block/parallels.c
/qemu/block/qcow.c
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2-cache.c
/qemu/block/qcow2-refcount.c
/qemu/block/qcow2-snapshot.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/qed.c
/qemu/block/raw-format.c
/qemu/block/rbd.c
/qemu/block/sheepdog.c
/qemu/block/snapshot.c
/qemu/block/ssh.c
/qemu/block/trace-events
/qemu/block/vdi.c
/qemu/block/vhdx-log.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/blockdev-nbd.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bootdevice.c
/qemu/bsd-user/main.c
/qemu/bsd-user/syscall.c
/qemu/configure
/qemu/contrib/gitdm/domain-map
/qemu/contrib/gitdm/group-map-individuals
/qemu/contrib/ivshmem-server/ivshmem-server.c
/qemu/contrib/ivshmem-server/main.c
/qemu/contrib/libvhost-user/libvhost-user.c
/qemu/contrib/vhost-user-gpu/50-qemu-gpu.json.in
/qemu/contrib/vhost-user-gpu/vugbm.c
/qemu/contrib/vhost-user-input/main.c
/qemu/contrib/vhost-user-scsi/vhost-user-scsi.c
/qemu/cpus-common.c
/qemu/cpus.c
/qemu/crypto/Makefile.objs
/qemu/crypto/cipher-gcrypt.c
/qemu/crypto/cipher-nettle.c
/qemu/crypto/tlscredsx509.c
/qemu/default-configs/i386-softmmu.mak
/qemu/default-configs/m68k-softmmu.mak
/qemu/disas.c
/qemu/disas/libvixl/Makefile.objs
/qemu/docs/arm-cpu-features.rst
/qemu/docs/conf.py
/qemu/docs/devel/bitops.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/memory.rst
/qemu/docs/devel/tcg-plugins.rst
/qemu/docs/devel/testing.rst
/qemu/docs/hyperv.txt
/qemu/docs/interop/pr-helper.rst
/qemu/docs/microvm.rst
/qemu/docs/specs/ppc-spapr-hotplug.txt
/qemu/docs/specs/ppc-xive.rst
/qemu/docs/specs/tpm.txt
/qemu/docs/sphinx/kerneldoc.py
/qemu/docs/sphinx/kernellog.py
/qemu/docs/virtio-net-failover.rst
/qemu/docs/virtio-pmem.rst
/qemu/dump/dump-hmp-cmds.c
/qemu/exec-vary.c
/qemu/exec.c
/qemu/fpu/softfloat.c
/qemu/fsdev/virtfs-proxy-helper.c
/qemu/gdb-xml/riscv-32bit-virtual.xml
/qemu/gdb-xml/riscv-64bit-virtual.xml
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p-local.c
/qemu/hw/9pfs/9p-proxy.c
/qemu/hw/9pfs/9p.c
/qemu/hw/Kconfig
/qemu/hw/Makefile.objs
/qemu/hw/acpi/Makefile.objs
/qemu/hw/acpi/acpi-x86-stub.c
/qemu/hw/acpi/cpu_hotplug.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/alpha/alpha_sys.h
/qemu/hw/alpha/dp264.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/bcm2835_peripherals.c
/qemu/hw/arm/bcm2836.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/audio/ac97.c
/qemu/hw/block/Kconfig
/qemu/hw/block/Makefile.objs
/qemu/hw/block/dataplane/virtio-blk.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/bt/Kconfig
virtio-serial-bus.c
/qemu/hw/core/cpu.c
/qemu/hw/core/irq.c
/qemu/hw/core/loader-fit.c
/qemu/hw/core/machine-hmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/numa.c
/qemu/hw/core/ptimer.c
/qemu/hw/core/qdev.c
/qemu/hw/display/Kconfig
/qemu/hw/display/Makefile.objs
/qemu/hw/display/bochs-display.c
/qemu/hw/display/jazz_led.c
/qemu/hw/display/macfb.c
/qemu/hw/display/vga-isa-mm.c
/qemu/hw/display/vga-isa.c
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vga.c
/qemu/hw/display/vga_int.h
/qemu/hw/display/vmware_vga.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/dma/rc4030.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/gpio/aspeed_gpio.c
/qemu/hw/hppa/hppa_sys.h
/qemu/hw/hppa/machine.c
/qemu/hw/hyperv/hyperv.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/trace-events
/qemu/hw/i386/Kconfig
/qemu/hw/i386/Makefile.objs
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/fw_cfg.c
/qemu/hw/i386/fw_cfg.h
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/intel_iommu_internal.h
/qemu/hw/i386/kvm/Makefile.objs
/qemu/hw/i386/kvm/i8259.c
/qemu/hw/i386/kvm/ioapic.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/port92.c
/qemu/hw/i386/trace-events
/qemu/hw/i386/x86-iommu-stub.c
/qemu/hw/i386/x86.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/ide/qdev.c
/qemu/hw/input/pckbd.c
/qemu/hw/input/virtio-input.c
/qemu/hw/intc/Kconfig
/qemu/hw/intc/apic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/exynos4210_gic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/i8259_common.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/s390_flic_kvm.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xics_spapr.c
/qemu/hw/intc/xive.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/ipmi/pci_ipmi_bt.c
/qemu/hw/ipmi/pci_ipmi_kcs.c
/qemu/hw/isa/Kconfig
/qemu/hw/isa/Makefile.objs
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix3.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/Makefile.objs
/qemu/hw/m68k/bootinfo.h
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/q800.c
/qemu/hw/mem/Makefile.objs
/qemu/hw/mem/memory-device.c
/qemu/hw/mips/gt64xxx_pci.c
/qemu/hw/mips/mips_fulong2e.c
/qemu/hw/mips/mips_jazz.c
/qemu/hw/mips/mips_malta.c
/qemu/hw/mips/mips_r4k.c
/qemu/hw/mips/trace-events
/qemu/hw/misc/Kconfig
/qemu/hw/misc/Makefile.objs
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/aspeed_sdmc.c
/qemu/hw/misc/bcm2835_thermal.c
/qemu/hw/misc/grlib_ahb_apb_pnp.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/tmp421.c
/qemu/hw/net/Kconfig
/qemu/hw/net/Makefile.objs
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/can/can_sja1000.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/fsl_etsec/etsec.h
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/mipsnet.c
/qemu/hw/net/trace-events
/qemu/hw/net/tulip.c
/qemu/hw/net/tulip.h
/qemu/hw/net/vhost_net.c
/qemu/hw/net/virtio-net.c
/qemu/hw/nubus/Kconfig
/qemu/hw/nubus/Makefile.objs
/qemu/hw/nubus/mac-nubus-bridge.c
/qemu/hw/nubus/nubus-bridge.c
/qemu/hw/nubus/nubus-bus.c
/qemu/hw/nubus/nubus-device.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/Makefile.objs
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/i440fx.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/xen_igd_pt.c
/qemu/hw/pci/pci-stub.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pci_bridge.c
/qemu/hw/pci/pcie.c
/qemu/hw/ppc/Makefile.objs
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_homer.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc405_boards.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_ovec.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_pci_nvlink2.c
/qemu/hw/rdma/rdma_backend.c
/qemu/hw/rdma/rdma_backend.h
/qemu/hw/rdma/rdma_rm.c
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/Kconfig
/qemu/hw/rtc/Makefile.objs
/qemu/hw/rtc/aspeed_rtc.c
/qemu/hw/rtc/ds1338.c
/qemu/hw/rtc/exynos4210_rtc.c
/qemu/hw/rtc/m41t80.c
/qemu/hw/rtc/m48t59-internal.h
/qemu/hw/rtc/m48t59-isa.c
/qemu/hw/rtc/m48t59.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/rtc/pl031.c
/qemu/hw/rtc/sun4v-rtc.c
/qemu/hw/rtc/trace-events
/qemu/hw/rtc/twl92230.c
/qemu/hw/rtc/xlnx-zynqmp-rtc.c
/qemu/hw/s390x/event-facility.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/timer/Kconfig
/qemu/hw/timer/Makefile.objs
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/timer/bcm2835_systmr.c
/qemu/hw/timer/grlib_gptimer.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/i8254_common.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/timer/trace-events
/qemu/hw/timer/xilinx_timer.c
/qemu/hw/tpm/tpm_emulator.c
/qemu/hw/usb/Kconfig
/qemu/hw/usb/Makefile.objs
/qemu/hw/usb/dev-network.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/vfio/Kconfig
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/spapr.c
/qemu/hw/virtio/Kconfig
/qemu/hw/virtio/Makefile.objs
/qemu/hw/virtio/vhost-user-fs-pci.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-bus.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/hw/xen/xen-common.c
/qemu/hw/xen/xen_pt.c
/qemu/include/block/block-copy.h
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/dirty-bitmap.h
/qemu/include/block/nbd.h
/qemu/include/block/nvme.h
/qemu/include/block/snapshot.h
/qemu/include/crypto/tlssession.h
/qemu/include/disas/disas.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/cpu_ldst_template.h
/qemu/include/exec/cpu_ldst_useronly_template.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/helper-gen.h
/qemu/include/exec/helper-proto.h
/qemu/include/exec/helper-tcg.h
/qemu/include/exec/log.h
/qemu/include/exec/memory.h
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/translator.h
/qemu/include/hw/arm/aspeed.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/arm/bcm2835_peripherals.h
/qemu/include/hw/arm/bcm2836.h
/qemu/include/hw/arm/boot.h
/qemu/include/hw/arm/raspi_platform.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/arm/xlnx-versal.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/block/block.h
/qemu/include/hw/block/swim.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/display/macfb.h
/qemu/include/hw/i2c/aspeed_i2c.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/intc/i8259.h
/qemu/include/hw/ipmi/ipmi.h
/qemu/include/hw/irq.h
/qemu/include/hw/isa/i8259_internal.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/misc/bcm2835_thermal.h
/qemu/include/hw/misc/mac_via.h
/qemu/include/hw/nubus/mac-nubus-bridge.h
/qemu/include/hw/nubus/nubus.h
/qemu/include/hw/nvram/fw_cfg.h
/qemu/include/hw/pci-host/i440fx.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pci_ids.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/pnv_homer.h
/qemu/include/hw/ppc/pnv_lpc.h
/qemu/include/hw/ppc/pnv_occ.h
/qemu/include/hw/ppc/pnv_pnor.h
/qemu/include/hw/ppc/pnv_psi.h
/qemu/include/hw/ppc/pnv_xive.h
/qemu/include/hw/ppc/pnv_xscom.h
/qemu/include/hw/ppc/ppc.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_irq.h
/qemu/include/hw/ppc/spapr_ovec.h
/qemu/include/hw/ppc/spapr_vio.h
/qemu/include/hw/ppc/spapr_xive.h
/qemu/include/hw/ppc/xics.h
/qemu/include/hw/ppc/xics_spapr.h
/qemu/include/hw/ppc/xive.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/hw/ptimer.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/riscv/sifive_u.h
/qemu/include/hw/riscv/spike.h
/qemu/include/hw/riscv/virt.h
/qemu/include/hw/rtc/aspeed_rtc.h
/qemu/include/hw/rtc/m48t59.h
/qemu/include/hw/rtc/mc146818rtc.h
/qemu/include/hw/rtc/mc146818rtc_regs.h
/qemu/include/hw/rtc/pl031.h
/qemu/include/hw/rtc/sun4v-rtc.h
/qemu/include/hw/rtc/xlnx-zynqmp-rtc.h
/qemu/include/hw/scsi/esp.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/southbridge/piix.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/timer/bcm2835_systmr.h
/qemu/include/hw/virtio/vhost-user-fs.h
/qemu/include/hw/virtio/virtio-blk.h
/qemu/include/hw/virtio/virtio-mmio.h
/qemu/include/hw/virtio/virtio-net.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/hw/watchdog/wdt_aspeed.h
/qemu/include/hw/xen/interface/io/blkif.h
/qemu/include/io/task.h
/qemu/include/migration/vmstate.h
/qemu/include/monitor/hmp.h
/qemu/include/qapi/error.h
/qemu/include/qemu-common.h
/qemu/include/qemu/bitops.h
/qemu/include/qemu/co-shared-resource.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/coroutine.h
/qemu/include/qemu/cutils.h
/qemu/include/qemu/error-report.h
/qemu/include/qemu/log.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/plugin-memory.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/queue.h
/qemu/include/qom/object.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/virtio_ring.h
/qemu/include/sysemu/accel.h
/qemu/include/sysemu/block-backend.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/os-win32.h
/qemu/include/sysemu/sysemu.h
/qemu/include/user/syscall-trace.h
/qemu/linux-headers/asm-arm/kvm.h
/qemu/linux-headers/asm-arm64/kvm.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/kvm.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/psp-sev.h
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/aarch64/target_cpu.h
/qemu/linux-user/alpha/target_cpu.h
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/arm/target_cpu.h
/qemu/linux-user/cris/target_cpu.h
/qemu/linux-user/elfload.c
/qemu/linux-user/exit.c
/qemu/linux-user/hppa/target_cpu.h
/qemu/linux-user/i386/target_cpu.h
/qemu/linux-user/m68k/target_cpu.h
/qemu/linux-user/main.c
/qemu/linux-user/microblaze/target_cpu.h
/qemu/linux-user/mips/target_cpu.h
/qemu/linux-user/mmap.c
/qemu/linux-user/nios2/target_cpu.h
/qemu/linux-user/openrisc/target_cpu.h
/qemu/linux-user/ppc/cpu_loop.c
/qemu/linux-user/ppc/target_cpu.h
/qemu/linux-user/riscv/cpu_loop.c
/qemu/linux-user/riscv/target_cpu.h
/qemu/linux-user/s390x/target_cpu.h
/qemu/linux-user/sh4/target_cpu.h
/qemu/linux-user/sparc/signal.c
/qemu/linux-user/sparc/target_cpu.h
/qemu/linux-user/syscall.c
/qemu/linux-user/tilegx/target_cpu.h
/qemu/linux-user/trace-events
/qemu/linux-user/xtensa/target_cpu.h
/qemu/memory.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/postcopy-ram.c
/qemu/migration/ram.c
/qemu/migration/savevm.c
/qemu/migration/savevm.h
/qemu/monitor/hmp-cmds.c
/qemu/monitor/misc.c
/qemu/monitor/qmp-cmds.c
/qemu/monitor/qmp.c
/qemu/nbd/client.c
/qemu/nbd/server.c
/qemu/net/can/can_socketcan.c
/qemu/net/colo-compare.c
/qemu/net/net.c
/qemu/os-posix.c
/qemu/os-win32.c
/qemu/pc-bios/README
/qemu/pc-bios/bios-256k.bin
/qemu/pc-bios/bios-microvm.bin
/qemu/pc-bios/bios.bin
/qemu/pc-bios/openbios-ppc
/qemu/pc-bios/openbios-sparc32
/qemu/pc-bios/openbios-sparc64
/qemu/pc-bios/opensbi-riscv32-virt-fw_jump.bin
/qemu/pc-bios/opensbi-riscv64-sifive_u-fw_jump.bin
/qemu/pc-bios/opensbi-riscv64-virt-fw_jump.bin
/qemu/pc-bios/s390-ccw.img
/qemu/pc-bios/s390-ccw/jump2ipl.c
/qemu/pc-bios/s390-ccw/sclp.c
/qemu/pc-bios/s390-netboot.img
/qemu/pc-bios/slof.bin
/qemu/pc-bios/vgabios-ati.bin
/qemu/pc-bios/vgabios-bochs-display.bin
/qemu/pc-bios/vgabios-cirrus.bin
/qemu/pc-bios/vgabios-qxl.bin
/qemu/pc-bios/vgabios-ramfb.bin
/qemu/pc-bios/vgabios-stdvga.bin
/qemu/pc-bios/vgabios-virtio.bin
/qemu/pc-bios/vgabios-vmware.bin
/qemu/pc-bios/vgabios.bin
/qemu/plugins/.gitignore
/qemu/plugins/Makefile.objs
/qemu/plugins/api.c
/qemu/plugins/core.c
/qemu/plugins/loader.c
/qemu/plugins/plugin.h
/qemu/plugins/qemu-plugins.symbols
/qemu/po/bg.po
/qemu/po/zh_CN.po
/qemu/python/qemu/__init__.py
/qemu/python/qemu/accel.py
/qemu/python/qemu/machine.py
/qemu/python/qemu/qtest.py
/qemu/qapi/block-core.json
/qemu/qapi/machine-target.json
/qemu/qapi/migration.json
/qemu/qapi/net.json
/qemu/qdev-monitor.c
/qemu/qemu-bridge-helper.c
/qemu/qemu-deprecated.texi
/qemu/qemu-doc.texi
/qemu/qemu-img.c
/qemu/qemu-io-cmds.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/commands-posix.c
/qemu/qga/commands-win32.c
/qemu/qga/commands.c
/qemu/qom/object.c
/qemu/qom/qom-hmp-cmds.c
/qemu/roms/Makefile
/qemu/roms/SLOF
/qemu/roms/config.seabios-128k
/qemu/roms/openbios
/qemu/roms/opensbi
/qemu/roms/qboot
/qemu/roms/seabios
/qemu/scripts/analyze-migration.py
/qemu/scripts/checkpatch.pl
/qemu/scripts/dump-guest-memory.py
/qemu/scripts/get_maintainer.pl
/qemu/scripts/kernel-doc
/qemu/scripts/qapi/doc.py
/qemu/scripts/qapi/expr.py
/qemu/scripts/qapi/parser.py
/qemu/scripts/qapi/schema.py
/qemu/scripts/qemu-binfmt-conf.sh
/qemu/scripts/tracetool/transform.py
/qemu/scripts/vmstate-static-checker.py
/qemu/scsi/qemu-pr-helper.c
/qemu/stubs/Makefile.objs
/qemu/stubs/pci-host-piix.c
/qemu/target/alpha/translate.c
/qemu/target/arm/arm-powerctl.c
/qemu/target/arm/arm_ldst.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper.c
/qemu/target/arm/helper.h
/qemu/target/arm/internals.h
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm32.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/kvm_arm.h
/qemu/target/arm/m_helper.c
/qemu/target/arm/machine.c
/qemu/target/arm/monitor.c
/qemu/target/arm/op_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-vfp.inc.c
/qemu/target/arm/translate.c
/qemu/target/arm/translate.h
/qemu/target/arm/vfp_helper.c
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.inc.c
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/fpu_helper.c
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/vmx.h
/qemu/target/i386/hvf/x86_decode.c
/qemu/target/i386/hvf/x86_decode.h
/qemu/target/i386/hvf/x86_emu.c
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/hyperv-proto.h
/qemu/target/i386/kvm.c
/qemu/target/i386/kvm_i386.h
/qemu/target/i386/machine.c
/qemu/target/i386/monitor.c
/qemu/target/i386/translate.c
/qemu/target/i386/whp-dispatch.h
/qemu/target/i386/whpx-all.c
/qemu/target/lm32/translate.c
/qemu/target/m68k/translate.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/helper.c
/qemu/target/mips/helper.h
/qemu/target/mips/kvm.c
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/nios2/translate.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/compat.c
/qemu/target/ppc/cpu-models.c
/qemu/target/ppc/cpu-models.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/helper.h
/qemu/target/ppc/helper_regs.h
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/timebase_helper.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate_init.inc.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/gdbstub.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/translate.c
/qemu/target/s390x/cpu-qom.h
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/diag.c
/qemu/target/s390x/helper.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/sigp.c
/qemu/target/s390x/translate.c
/qemu/target/sh4/translate.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/translate.c
/qemu/target/tilegx/translate.c
/qemu/target/unicore32/translate.c
/qemu/target/xtensa/translate.c
/qemu/tcg/aarch64/tcg-target.opc.h
/qemu/tcg/i386/tcg-target.opc.h
/qemu/tcg/ppc/tcg-target.opc.h
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg-op.h
/qemu/tcg/tcg-opc.h
/qemu/tcg/tcg.c
/qemu/tcg/tcg.h
/qemu/tcg/tci.c
/qemu/tests/Makefile.include
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/cpu_queries.py
/qemu/tests/acceptance/empty_cpu_model.py
/qemu/tests/acceptance/linux_initrd.py
/qemu/tests/acceptance/linux_ssh_mips_malta.py
/qemu/tests/acceptance/machine_m68k_nextcube.py
/qemu/tests/acceptance/machine_sparc_leon3.py
/qemu/tests/acceptance/ppc_prep_40p.py
/qemu/tests/acceptance/x86_cpu_model_versions.py
/qemu/tests/arm-cpu-features.c
/qemu/tests/benchmark-crypto-cipher.c
/qemu/tests/benchmark-crypto-hash.c
/qemu/tests/bios-tables-test.c
/qemu/tests/boot-sector.c
/qemu/tests/boot-serial-test.c
/qemu/tests/cdrom-test.c
/qemu/tests/cpu-plug-test.c
/qemu/tests/data/acpi/virt/DSDT
/qemu/tests/data/acpi/virt/DSDT.memhp
/qemu/tests/data/acpi/virt/DSDT.numamem
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/common.rc
/qemu/tests/docker/dockerfiles/fedora.docker
/qemu/tests/docker/dockerfiles/travis.docker
/qemu/tests/docker/dockerfiles/ubuntu.docker
/qemu/tests/docker/dockerfiles/ubuntu1804.docker
/qemu/tests/fw_cfg-test.c
/qemu/tests/hd-geo-test.c
/qemu/tests/image-fuzzer/qcow2/__init__.py
/qemu/tests/image-fuzzer/qcow2/fuzz.py
/qemu/tests/image-fuzzer/qcow2/layout.py
/qemu/tests/image-fuzzer/runner.py
/qemu/tests/ivshmem-test.c
/qemu/tests/libqos/libqos.c
/qemu/tests/libqos/pci.c
/qemu/tests/libqos/pci.h
/qemu/tests/libqos/virtio-9p.c
/qemu/tests/libqos/virtio-mmio.c
/qemu/tests/libqos/virtio-mmio.h
/qemu/tests/libqos/virtio-net.c
/qemu/tests/libqos/virtio-pci-modern.c
/qemu/tests/libqos/virtio-pci-modern.h
/qemu/tests/libqos/virtio-pci.c
/qemu/tests/libqos/virtio-pci.h
/qemu/tests/libqos/virtio.c
/qemu/tests/libqos/virtio.h
/qemu/tests/libqtest.c
/qemu/tests/migration-test.c
/qemu/tests/modules-test.c
/qemu/tests/pflash-cfi02-test.c
/qemu/tests/plugin/Makefile
/qemu/tests/plugin/bb.c
/qemu/tests/plugin/empty.c
/qemu/tests/plugin/hotblocks.c
/qemu/tests/plugin/hotpages.c
/qemu/tests/plugin/howvec.c
/qemu/tests/plugin/insn.c
/qemu/tests/plugin/mem.c
/qemu/tests/pnv-xscom-test.c
/qemu/tests/prom-env-test.c
/qemu/tests/pxe-test.c
/qemu/tests/qapi-schema/doc-bad-alternate-member.err
/qemu/tests/qapi-schema/doc-bad-boxed-command-arg.err
/qemu/tests/qapi-schema/doc-bad-boxed-command-arg.json
/qemu/tests/qapi-schema/doc-bad-boxed-command-arg.out
/qemu/tests/qapi-schema/doc-bad-command-arg.err
/qemu/tests/qapi-schema/doc-bad-enum-member.err
/qemu/tests/qapi-schema/doc-bad-enum-member.json
/qemu/tests/qapi-schema/doc-bad-enum-member.out
/qemu/tests/qapi-schema/doc-bad-event-arg.err
/qemu/tests/qapi-schema/doc-bad-event-arg.json
/qemu/tests/qapi-schema/doc-bad-event-arg.out
/qemu/tests/qapi-schema/doc-bad-feature.err
/qemu/tests/qapi-schema/doc-bad-feature.json
/qemu/tests/qapi-schema/doc-bad-feature.out
/qemu/tests/qapi-schema/doc-bad-union-member.err
/qemu/tests/qapi-schema/doc-good.json
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/doc-good.texi
/qemu/tests/qapi-schema/doc-undoc-feature.err
/qemu/tests/qapi-schema/doc-undoc-feature.json
/qemu/tests/qapi-schema/doc-undoc-feature.out
/qemu/tests/qapi-schema/test-qapi.py
/qemu/tests/qemu-iotests/005
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/049
/qemu/tests/qemu-iotests/049.out
/qemu/tests/qemu-iotests/051
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/060
/qemu/tests/qemu-iotests/079
/qemu/tests/qemu-iotests/083
/qemu/tests/qemu-iotests/083.out
/qemu/tests/qemu-iotests/085.out
/qemu/tests/qemu-iotests/093
/qemu/tests/qemu-iotests/094.out
/qemu/tests/qemu-iotests/095.out
/qemu/tests/qemu-iotests/109.out
/qemu/tests/qemu-iotests/117.out
/qemu/tests/qemu-iotests/118
/qemu/tests/qemu-iotests/127.out
/qemu/tests/qemu-iotests/136
/qemu/tests/qemu-iotests/140
/qemu/tests/qemu-iotests/140.out
/qemu/tests/qemu-iotests/141.out
/qemu/tests/qemu-iotests/143
/qemu/tests/qemu-iotests/143.out
/qemu/tests/qemu-iotests/144.out
/qemu/tests/qemu-iotests/147
/qemu/tests/qemu-iotests/153.out
/qemu/tests/qemu-iotests/156.out
/qemu/tests/qemu-iotests/161.out
/qemu/tests/qemu-iotests/169
/qemu/tests/qemu-iotests/169.out
/qemu/tests/qemu-iotests/173
/qemu/tests/qemu-iotests/173.out
/qemu/tests/qemu-iotests/181
/qemu/tests/qemu-iotests/182
/qemu/tests/qemu-iotests/182.out
/qemu/tests/qemu-iotests/183
/qemu/tests/qemu-iotests/183.out
/qemu/tests/qemu-iotests/185.out
/qemu/tests/qemu-iotests/191.out
/qemu/tests/qemu-iotests/192
/qemu/tests/qemu-iotests/192.out
/qemu/tests/qemu-iotests/194
/qemu/tests/qemu-iotests/200.out
/qemu/tests/qemu-iotests/201
/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/220
/qemu/tests/qemu-iotests/222
/qemu/tests/qemu-iotests/223
/qemu/tests/qemu-iotests/223.out
/qemu/tests/qemu-iotests/229.out
/qemu/tests/qemu-iotests/237
/qemu/tests/qemu-iotests/240
/qemu/tests/qemu-iotests/241
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/249.out
/qemu/tests/qemu-iotests/255
/qemu/tests/qemu-iotests/261
/qemu/tests/qemu-iotests/261.out
/qemu/tests/qemu-iotests/264
/qemu/tests/qemu-iotests/266
/qemu/tests/qemu-iotests/266.out
/qemu/tests/qemu-iotests/267
/qemu/tests/qemu-iotests/267.out
/qemu/tests/qemu-iotests/272
/qemu/tests/qemu-iotests/272.out
/qemu/tests/qemu-iotests/273
/qemu/tests/qemu-iotests/273.out
/qemu/tests/qemu-iotests/277
/qemu/tests/qemu-iotests/277.out
/qemu/tests/qemu-iotests/279
/qemu/tests/qemu-iotests/279.out
/qemu/tests/qemu-iotests/280
/qemu/tests/qemu-iotests/280.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.nbd
/qemu/tests/qemu-iotests/common.qemu
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/group
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/nbd-fault-injector.py
/qemu/tests/rtc-test.c
/qemu/tests/tcg/Makefile.prereqs
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/aarch64/Makefile.softmmu-target
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/arm/Makefile.softmmu-target
/qemu/tests/tcg/arm/Makefile.target
/qemu/tests/tcg/configure.sh
/qemu/tests/tcg/cris/Makefile.target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/multiarch/float_helpers.c
/qemu/tests/tcg/multiarch/linux-test.c
/qemu/tests/test-bitmap.c
/qemu/tests/test-block-iothread.c
/qemu/tests/test-blockjob.c
/qemu/tests/test-crypto-tlscredsx509.c
/qemu/tests/test-crypto-tlssession.c
/qemu/tests/test-io-channel-tls.c
/qemu/tests/test-keyval.c
/qemu/tests/test-logging.c
/qemu/tests/test-qga.c
/qemu/tests/test-qobject-output-visitor.c
/qemu/tests/test-string-output-visitor.c
/qemu/tests/test-util-filemonitor.c
/qemu/tests/test-vmstate.c
/qemu/tests/vhost-user-bridge.c
/qemu/tests/virtio-blk-test.c
/qemu/tests/virtio-scsi-test.c
/qemu/tests/vm/Makefile.include
/qemu/tests/vm/basevm.py
/qemu/tests/vm/centos
/qemu/tests/vm/fedora
/qemu/tests/vm/freebsd
/qemu/tests/vm/netbsd
/qemu/tests/vm/openbsd
/qemu/tests/vm/ubuntu.i386
/qemu/tests/vmgenid-test.c
/qemu/trace-events
/qemu/trace/control.c
/qemu/trace/mem-internal.h
/qemu/trace/mem.h
/qemu/ui/gtk.c
/qemu/ui/sdl2.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/Makefile.objs
/qemu/util/async.c
/qemu/util/cutils.c
/qemu/util/error.c
/qemu/util/event_notifier-posix.c
/qemu/util/hbitmap.c
/qemu/util/log.c
/qemu/util/main-loop.c
/qemu/util/mmap-alloc.c
/qemu/util/oslib-posix.c
/qemu/util/oslib-win32.c
/qemu/util/qemu-co-shared-resource.c
/qemu/util/qemu-coroutine-io.c
/qemu/util/qemu-coroutine-sleep.c
/qemu/util/qemu-error.c
/qemu/util/qemu-timer.c
/qemu/util/qsp.c
/qemu/util/systemd.c
/qemu/util/vfio-helpers.c
/qemu/vl.c
86044b2425-Oct-2019 Jason Wang <jasowang@redhat.com>

virtio: basic packed virtqueue support

This patch implements basic support for the packed virtqueue. Compare
the split virtqueue which has three rings, packed virtqueue only have
one which is suppos

virtio: basic packed virtqueue support

This patch implements basic support for the packed virtqueue. Compare
the split virtqueue which has three rings, packed virtqueue only have
one which is supposed to have better cache utilization and more
hardware friendly.

Please refer virtio specification for more information.

Signed-off-by: Wei Xu <wexu@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Message-Id: <20191025083527.30803-6-eperezma@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

show more ...


/qemu/MAINTAINERS
/qemu/Makefile
/qemu/audio/alsaaudio.c
/qemu/audio/audio.c
/qemu/audio/audio.h
/qemu/audio/audio_int.h
/qemu/audio/audio_template.h
/qemu/audio/coreaudio.c
/qemu/audio/dsound_template.h
/qemu/audio/dsoundaudio.c
/qemu/audio/noaudio.c
/qemu/audio/ossaudio.c
/qemu/audio/paaudio.c
/qemu/audio/spiceaudio.c
/qemu/audio/wavaudio.c
/qemu/block.c
/qemu/block/backup.c
/qemu/block/block-copy.c
/qemu/block/dirty-bitmap.c
/qemu/block/mirror.c
/qemu/block/nbd.c
/qemu/block/qcow2-bitmap.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/blockdev.c
/qemu/configure
/qemu/cpus.c
/qemu/default-configs/xtensa-softmmu.mak
/qemu/docs/devel/qapi-code-gen.txt
/qemu/docs/specs/acpi_hw_reduced_hotplug.rst
/qemu/docs/specs/index.rst
/qemu/hw/acpi/Kconfig
/qemu/hw/acpi/Makefile.objs
/qemu/hw/acpi/generic_event_device.c
/qemu/hw/acpi/memory_hotplug.c
/qemu/hw/acpi/piix4.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/bcm2835_peripherals.c
/qemu/hw/arm/bcm2836.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/digic_boards.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/strongarm.h
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xilinx_zynq.c
/qemu/hw/block/virtio-blk.c
virtio-serial-bus.c
/qemu/hw/core/numa.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/dma/bcm2835_dma.c
/qemu/hw/hppa/machine.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/pc.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/sii3112.c
/qemu/hw/ide/via.c
/qemu/hw/input/lm832x.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xics_spapr.c
/qemu/hw/intc/xive.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/m68k/mcf5208.c
/qemu/hw/mem/memory-device.c
/qemu/hw/misc/bcm2835_mbox.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/misc/trace-events
/qemu/hw/misc/vmcoreinfo.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/rs6000_mc.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/timer/altera_timer.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/etraxfs_timer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/lm32_timer.c
/qemu/hw/timer/puv3_ost.c
/qemu/hw/timer/sh_timer.c
/qemu/hw/usb/dev-audio.c
/qemu/hw/virtio/Makefile.objs
/qemu/hw/virtio/vhost-user-fs-pci.c
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/virtio-rng.c
/qemu/hw/virtio/virtio.c
/qemu/hw/xtensa/Kconfig
/qemu/hw/xtensa/Makefile.objs
/qemu/hw/xtensa/sim.c
/qemu/hw/xtensa/virt.c
/qemu/hw/xtensa/xtensa_sim.h
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/dirty-bitmap.h
/qemu/include/hw/acpi/acpi_dev_interface.h
/qemu/include/hw/acpi/generic_event_device.h
/qemu/include/hw/acpi/memory_hotplug.h
/qemu/include/hw/arm/bcm2835_peripherals.h
/qemu/include/hw/arm/omap.h
/qemu/include/hw/arm/raspi_platform.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/boards.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/pnv_core.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_irq.h
/qemu/include/hw/ppc/spapr_xive.h
/qemu/include/hw/ppc/xics.h
/qemu/include/hw/ppc/xics_spapr.h
/qemu/include/hw/ppc/xive.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/hw/sd/sdhci.h
/qemu/include/hw/virtio/vhost-user-fs.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/qemu/coroutine.h
/qemu/include/qemu/hbitmap.h
/qemu/linux-user/fd-trans.c
/qemu/linux-user/strace.c
/qemu/linux-user/strace.list
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/block.c
/qemu/net/vhost-user.c
/qemu/pc-bios/README
/qemu/pc-bios/slof.bin
/qemu/qapi/audio.json
/qemu/qapi/block-core.json
/qemu/qapi/introspect.json
/qemu/qapi/misc.json
/qemu/qemu-deprecated.texi
/qemu/qemu-doc.texi
/qemu/qemu-options.hx
/qemu/roms/SLOF
/qemu/scripts/qapi-gen.py
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/common.py
/qemu/scripts/qapi/doc.py
/qemu/scripts/qapi/error.py
/qemu/scripts/qapi/events.py
/qemu/scripts/qapi/expr.py
/qemu/scripts/qapi/gen.py
/qemu/scripts/qapi/introspect.py
/qemu/scripts/qapi/parser.py
/qemu/scripts/qapi/schema.py
/qemu/scripts/qapi/source.py
/qemu/scripts/qapi/types.py
/qemu/scripts/qapi/visit.py
/qemu/target/arm/translate.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/kvm.c
/qemu/target/ppc/translate/vmx-impl.inc.c
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/kvm.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/s390x/translate_vx.inc.c
/qemu/target/s390x/vec_int_helper.c
/qemu/target/xtensa/core-test_mmuhifi_c3.c
/qemu/target/xtensa/core-test_mmuhifi_c3/core-isa.h
/qemu/target/xtensa/core-test_mmuhifi_c3/gdb-config.inc.c
/qemu/target/xtensa/core-test_mmuhifi_c3/xtensa-modules.inc.c
/qemu/tcg/ppc/tcg-target.h
/qemu/tcg/ppc/tcg-target.inc.c
/qemu/tcg/ppc/tcg-target.opc.h
/qemu/tests/Makefile.include
/qemu/tests/bios-tables-test.c
/qemu/tests/cpu-plug-test.c
/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/FACP.memhp
/qemu/tests/data/acpi/virt/FACP.numamem
/qemu/tests/data/acpi/virt/GTDT.memhp
/qemu/tests/data/acpi/virt/GTDT.numamem
/qemu/tests/data/acpi/virt/MCFG.memhp
/qemu/tests/data/acpi/virt/MCFG.numamem
/qemu/tests/data/acpi/virt/SLIT.memhp
/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/libqtest.c
/qemu/tests/libqtest.h
/qemu/tests/migration/stress.c
/qemu/tests/qapi-schema/allow-preconfig-test.err
/qemu/tests/qapi-schema/alternate-any.err
/qemu/tests/qapi-schema/alternate-array.err
/qemu/tests/qapi-schema/alternate-base.err
/qemu/tests/qapi-schema/alternate-branch-if-invalid.err
/qemu/tests/qapi-schema/alternate-clash.err
/qemu/tests/qapi-schema/alternate-conflict-bool-string.err
/qemu/tests/qapi-schema/alternate-conflict-dict.err
/qemu/tests/qapi-schema/alternate-conflict-enum-bool.err
/qemu/tests/qapi-schema/alternate-conflict-enum-int.err
/qemu/tests/qapi-schema/alternate-conflict-num-string.err
/qemu/tests/qapi-schema/alternate-conflict-string.err
/qemu/tests/qapi-schema/alternate-empty.err
/qemu/tests/qapi-schema/alternate-invalid-dict.err
/qemu/tests/qapi-schema/alternate-nested.err
/qemu/tests/qapi-schema/alternate-unknown.err
/qemu/tests/qapi-schema/args-alternate.err
/qemu/tests/qapi-schema/args-any.err
/qemu/tests/qapi-schema/args-array-empty.err
/qemu/tests/qapi-schema/args-array-unknown.err
/qemu/tests/qapi-schema/args-bad-boxed.err
/qemu/tests/qapi-schema/args-boxed-anon.err
/qemu/tests/qapi-schema/args-boxed-string.err
/qemu/tests/qapi-schema/args-int.err
/qemu/tests/qapi-schema/args-invalid.err
/qemu/tests/qapi-schema/args-member-array-bad.err
/qemu/tests/qapi-schema/args-member-case.err
/qemu/tests/qapi-schema/args-member-unknown.err
/qemu/tests/qapi-schema/args-name-clash.err
/qemu/tests/qapi-schema/args-union.err
/qemu/tests/qapi-schema/args-unknown.err
/qemu/tests/qapi-schema/bad-base.err
/qemu/tests/qapi-schema/bad-data.err
/qemu/tests/qapi-schema/bad-ident.err
/qemu/tests/qapi-schema/bad-if-empty-list.err
/qemu/tests/qapi-schema/bad-if-empty.err
/qemu/tests/qapi-schema/bad-if-list.err
/qemu/tests/qapi-schema/bad-if.err
/qemu/tests/qapi-schema/bad-type-bool.err
/qemu/tests/qapi-schema/bad-type-dict.err
/qemu/tests/qapi-schema/bad-type-int.err
/qemu/tests/qapi-schema/base-cycle-direct.err
/qemu/tests/qapi-schema/base-cycle-indirect.err
/qemu/tests/qapi-schema/command-int.err
/qemu/tests/qapi-schema/doc-bad-alternate-member.err
/qemu/tests/qapi-schema/doc-bad-command-arg.err
/qemu/tests/qapi-schema/doc-bad-symbol.err
/qemu/tests/qapi-schema/doc-bad-union-member.err
/qemu/tests/qapi-schema/doc-before-include.err
/qemu/tests/qapi-schema/doc-before-pragma.err
/qemu/tests/qapi-schema/doc-duplicated-arg.err
/qemu/tests/qapi-schema/doc-duplicated-return.err
/qemu/tests/qapi-schema/doc-duplicated-since.err
/qemu/tests/qapi-schema/doc-empty-arg.err
/qemu/tests/qapi-schema/doc-empty-section.err
/qemu/tests/qapi-schema/doc-empty-symbol.err
/qemu/tests/qapi-schema/doc-good.json
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/doc-good.texi
/qemu/tests/qapi-schema/doc-interleaved-section.err
/qemu/tests/qapi-schema/doc-invalid-end.err
/qemu/tests/qapi-schema/doc-invalid-end2.err
/qemu/tests/qapi-schema/doc-invalid-return.err
/qemu/tests/qapi-schema/doc-invalid-section.err
/qemu/tests/qapi-schema/doc-invalid-start.err
/qemu/tests/qapi-schema/doc-missing-colon.err
/qemu/tests/qapi-schema/doc-missing-expr.err
/qemu/tests/qapi-schema/doc-missing-space.err
/qemu/tests/qapi-schema/doc-missing.err
/qemu/tests/qapi-schema/doc-no-symbol.err
/qemu/tests/qapi-schema/double-type.err
/qemu/tests/qapi-schema/duplicate-key.err
/qemu/tests/qapi-schema/enum-bad-member.err
/qemu/tests/qapi-schema/enum-bad-name.err
/qemu/tests/qapi-schema/enum-bad-prefix.err
/qemu/tests/qapi-schema/enum-clash-member.err
/qemu/tests/qapi-schema/enum-dict-member-unknown.err
/qemu/tests/qapi-schema/enum-if-invalid.err
/qemu/tests/qapi-schema/enum-int-member.err
/qemu/tests/qapi-schema/enum-member-case.err
/qemu/tests/qapi-schema/enum-missing-data.err
/qemu/tests/qapi-schema/enum-wrong-data.err
/qemu/tests/qapi-schema/escape-outside-string.err
/qemu/tests/qapi-schema/event-boxed-empty.err
/qemu/tests/qapi-schema/event-case.out
/qemu/tests/qapi-schema/event-member-invalid-dict.err
/qemu/tests/qapi-schema/event-nest-struct.err
/qemu/tests/qapi-schema/features-bad-type.err
/qemu/tests/qapi-schema/features-duplicate-name.err
/qemu/tests/qapi-schema/features-if-invalid.err
/qemu/tests/qapi-schema/features-missing-name.err
/qemu/tests/qapi-schema/features-name-bad-type.err
/qemu/tests/qapi-schema/features-no-list.err
/qemu/tests/qapi-schema/features-unknown-key.err
/qemu/tests/qapi-schema/flat-union-array-branch.err
/qemu/tests/qapi-schema/flat-union-bad-base.err
/qemu/tests/qapi-schema/flat-union-bad-discriminator.err
/qemu/tests/qapi-schema/flat-union-base-any.err
/qemu/tests/qapi-schema/flat-union-base-union.err
/qemu/tests/qapi-schema/flat-union-clash-member.err
/qemu/tests/qapi-schema/flat-union-discriminator-bad-name.err
/qemu/tests/qapi-schema/flat-union-empty.err
/qemu/tests/qapi-schema/flat-union-inline-invalid-dict.err
/qemu/tests/qapi-schema/flat-union-inline.err
/qemu/tests/qapi-schema/flat-union-int-branch.err
/qemu/tests/qapi-schema/flat-union-invalid-branch-key.err
/qemu/tests/qapi-schema/flat-union-invalid-discriminator.err
/qemu/tests/qapi-schema/flat-union-invalid-if-discriminator.err
/qemu/tests/qapi-schema/flat-union-no-base.err
/qemu/tests/qapi-schema/flat-union-optional-discriminator.err
/qemu/tests/qapi-schema/flat-union-string-discriminator.err
/qemu/tests/qapi-schema/funny-char.err
/qemu/tests/qapi-schema/funny-word.err
/qemu/tests/qapi-schema/ident-with-escape.err
/qemu/tests/qapi-schema/include-before-err.err
/qemu/tests/qapi-schema/include-cycle.err
/qemu/tests/qapi-schema/include-extra-junk.err
/qemu/tests/qapi-schema/include-nested-err.err
/qemu/tests/qapi-schema/include-no-file.err
/qemu/tests/qapi-schema/include-non-file.err
/qemu/tests/qapi-schema/include-self-cycle.err
/qemu/tests/qapi-schema/indented-expr.out
/qemu/tests/qapi-schema/leading-comma-list.err
/qemu/tests/qapi-schema/leading-comma-object.err
/qemu/tests/qapi-schema/missing-colon.err
/qemu/tests/qapi-schema/missing-comma-list.err
/qemu/tests/qapi-schema/missing-comma-object.err
/qemu/tests/qapi-schema/missing-type.err
/qemu/tests/qapi-schema/nested-struct-data-invalid-dict.err
/qemu/tests/qapi-schema/nested-struct-data.err
/qemu/tests/qapi-schema/non-objects.err
/qemu/tests/qapi-schema/oob-test.err
/qemu/tests/qapi-schema/pragma-doc-required-crap.err
/qemu/tests/qapi-schema/pragma-extra-junk.err
/qemu/tests/qapi-schema/pragma-name-case-whitelist-crap.err
/qemu/tests/qapi-schema/pragma-non-dict.err
/qemu/tests/qapi-schema/pragma-returns-whitelist-crap.err
/qemu/tests/qapi-schema/pragma-unknown.err
/qemu/tests/qapi-schema/qapi-schema-test.json
/qemu/tests/qapi-schema/qapi-schema-test.out
/qemu/tests/qapi-schema/quoted-structural-chars.err
/qemu/tests/qapi-schema/redefined-builtin.err
/qemu/tests/qapi-schema/redefined-command.err
/qemu/tests/qapi-schema/redefined-event.err
/qemu/tests/qapi-schema/redefined-type.err
/qemu/tests/qapi-schema/reserved-command-q.err
/qemu/tests/qapi-schema/reserved-enum-q.err
/qemu/tests/qapi-schema/reserved-member-has.err
/qemu/tests/qapi-schema/reserved-member-q.err
/qemu/tests/qapi-schema/reserved-member-u.err
/qemu/tests/qapi-schema/reserved-member-underscore.err
/qemu/tests/qapi-schema/reserved-type-kind.err
/qemu/tests/qapi-schema/reserved-type-list.err
/qemu/tests/qapi-schema/returns-alternate.err
/qemu/tests/qapi-schema/returns-array-bad.err
/qemu/tests/qapi-schema/returns-dict.err
/qemu/tests/qapi-schema/returns-unknown.err
/qemu/tests/qapi-schema/returns-whitelist.err
/qemu/tests/qapi-schema/string-code-point-127.err
/qemu/tests/qapi-schema/string-code-point-31.err
/qemu/tests/qapi-schema/struct-base-clash-deep.err
/qemu/tests/qapi-schema/struct-base-clash.err
/qemu/tests/qapi-schema/struct-data-invalid.err
/qemu/tests/qapi-schema/struct-member-if-invalid.err
/qemu/tests/qapi-schema/struct-member-invalid-dict.err
/qemu/tests/qapi-schema/struct-member-invalid.err
/qemu/tests/qapi-schema/test-qapi.py
/qemu/tests/qapi-schema/trailing-comma-list.err
/qemu/tests/qapi-schema/trailing-comma-object.err
/qemu/tests/qapi-schema/type-bypass-bad-gen.err
/qemu/tests/qapi-schema/unclosed-list.err
/qemu/tests/qapi-schema/unclosed-object.err
/qemu/tests/qapi-schema/unclosed-string.err
/qemu/tests/qapi-schema/union-base-empty.err
/qemu/tests/qapi-schema/union-base-no-discriminator.err
/qemu/tests/qapi-schema/union-branch-case.err
/qemu/tests/qapi-schema/union-branch-if-invalid.err
/qemu/tests/qapi-schema/union-branch-invalid-dict.err
/qemu/tests/qapi-schema/union-clash-branches.err
/qemu/tests/qapi-schema/union-empty.err
/qemu/tests/qapi-schema/union-invalid-base.err
/qemu/tests/qapi-schema/union-optional-branch.err
/qemu/tests/qapi-schema/union-unknown.err
/qemu/tests/qapi-schema/unknown-escape.err
/qemu/tests/qapi-schema/unknown-expr-key.err
/qemu/tests/qemu-iotests/165
/qemu/tests/qemu-iotests/165.out
/qemu/tests/qemu-iotests/260
/qemu/tests/qemu-iotests/260.out
/qemu/tests/qemu-iotests/264
/qemu/tests/qemu-iotests/264.out
/qemu/tests/qemu-iotests/group
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/test-hbitmap.c
/qemu/tests/test-qmp-cmds.c
/qemu/ui/cocoa.m
/qemu/ui/curses.c
/qemu/ui/input-barrier.c
/qemu/util/hbitmap.c
/qemu/util/qemu-coroutine-sleep.c
e1ecf8c826-Sep-2019 Philippe Mathieu-Daudé <f4bug@amsat.org>

hw/arm/bcm2835_peripherals: Improve logging

Various logging improvements as once:
- Use 0x prefix for hex numbers
- Display value written during write accesses
- Move some logs from GUEST_ERROR to U

hw/arm/bcm2835_peripherals: Improve logging

Various logging improvements as once:
- Use 0x prefix for hex numbers
- Display value written during write accesses
- Move some logs from GUEST_ERROR to UNIMP

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Message-id: 20190926173428.10713-3-f4bug@amsat.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

show more ...


/qemu/MAINTAINERS
/qemu/accel/kvm/kvm-all.c
/qemu/block.c
/qemu/block/Makefile.objs
/qemu/block/accounting.c
/qemu/block/aio_task.c
/qemu/block/backup-top.c
/qemu/block/backup-top.h
/qemu/block/backup.c
/qemu/block/blkreplay.c
/qemu/block/block-backend.c
/qemu/block/block-copy.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/null.c
/qemu/block/nvme.c
/qemu/block/qapi.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/rbd.c
/qemu/block/replication.c
/qemu/block/snapshot.c
/qemu/block/trace-events
/qemu/block/vhdx.c
/qemu/block/vxhs.c
/qemu/blockdev.c
/qemu/cpus.c
/qemu/disas/cris.c
/qemu/docs/devel/rcu.txt
/qemu/docs/devel/tracing.txt
/qemu/docs/replay.txt
/qemu/exec.c
/qemu/fsdev/9p-marshal.h
/qemu/fsdev/file-op-9p.h
/qemu/fsdev/qemu-fsdev-opts.c
/qemu/fsdev/qemu-fsdev-throttle.c
/qemu/fsdev/qemu-fsdev-throttle.h
/qemu/fsdev/qemu-fsdev.c
/qemu/hw/9pfs/9p-local.c
/qemu/hw/9pfs/9p-proxy.c
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/9p.h
/qemu/hw/9pfs/trace-events
/qemu/hw/arm/Makefile.objs
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/virtio-blk.c
bcm2835_aux.c
/qemu/hw/core/ptimer.c
/qemu/hw/dma/bcm2835_dma.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/gpio/aspeed_gpio.c
/qemu/hw/hppa/dino.c
/qemu/hw/hppa/machine.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/core.c
/qemu/hw/intc/arm_gic_kvm.c
/qemu/hw/intc/bcm2836_control.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/xics_spapr.c
/qemu/hw/isa/Kconfig
/qemu/hw/isa/Makefile.objs
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/mcf5208.c
/qemu/hw/microblaze/boot.c
/qemu/hw/mips/Kconfig
/qemu/hw/mips/mips_int.c
/qemu/hw/mips/mips_jazz.c
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/aspeed_sdmc.c
/qemu/hw/misc/bcm2835_mbox.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/lan9118.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/trace-events
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sd/Makefile.objs
/qemu/hw/sd/aspeed_sdhci.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/altera_timer.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/timer/digic-timer.c
/qemu/hw/timer/etraxfs_timer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/exynos4210_rtc.c
/qemu/hw/timer/grlib_gptimer.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/timer/imx_gpt.c
/qemu/hw/timer/lm32_timer.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/timer/mss-timer.c
/qemu/hw/timer/puv3_ost.c
/qemu/hw/timer/sh_timer.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/timer/xilinx_timer.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/spapr.c
/qemu/hw/virtio/vhost.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/include/block/accounting.h
/qemu/include/block/aio_task.h
/qemu/include/block/block-copy.h
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/memory.h
/qemu/include/exec/ram_addr.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/i2c/aspeed_i2c.h
/qemu/include/hw/misc/aspeed_scu.h
/qemu/include/hw/misc/aspeed_sdmc.h
/qemu/include/hw/net/ftgmac100.h
/qemu/include/hw/ppc/spapr_irq.h
/qemu/include/hw/ppc/spapr_xive.h
/qemu/include/hw/ppc/xics_spapr.h
/qemu/include/hw/ppc/xive.h
/qemu/include/hw/ptimer.h
/qemu/include/hw/sd/aspeed_sdhci.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/timer/aspeed_timer.h
/qemu/include/hw/timer/mss-timer.h
/qemu/include/hw/vfio/vfio-common.h
/qemu/include/hw/watchdog/wdt_aspeed.h
/qemu/include/migration/misc.h
/qemu/include/migration/vmstate.h
/qemu/include/qemu/rcu.h
/qemu/include/qom/object_interfaces.h
/qemu/include/standard-headers/asm-x86/bootparam.h
/qemu/include/standard-headers/asm-x86/kvm_para.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/pci_regs.h
/qemu/include/standard-headers/linux/virtio_fs.h
/qemu/include/standard-headers/linux/virtio_ids.h
/qemu/include/standard-headers/linux/virtio_iommu.h
/qemu/include/standard-headers/linux/virtio_pmem.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/replay.h
/qemu/linux-headers/asm-arm/kvm.h
/qemu/linux-headers/asm-arm/unistd-common.h
/qemu/linux-headers/asm-arm64/kvm.h
/qemu/linux-headers/asm-generic/mman-common.h
/qemu/linux-headers/asm-generic/mman.h
/qemu/linux-headers/asm-generic/unistd.h
/qemu/linux-headers/asm-mips/mman.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/mman.h
/qemu/linux-headers/asm-powerpc/unistd_32.h
/qemu/linux-headers/asm-powerpc/unistd_64.h
/qemu/linux-headers/asm-s390/kvm.h
/qemu/linux-headers/asm-s390/unistd_32.h
/qemu/linux-headers/asm-s390/unistd_64.h
/qemu/linux-headers/asm-x86/kvm.h
/qemu/linux-headers/asm-x86/unistd.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/psp-sev.h
/qemu/linux-headers/linux/vfio.h
/qemu/memory.c
/qemu/migration/migration.c
/qemu/migration/postcopy-ram.c
/qemu/migration/postcopy-ram.h
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/trace-events
/qemu/migration/vmstate-types.c
/qemu/net/slirp.c
/qemu/pc-bios/openbios-ppc
/qemu/pc-bios/openbios-sparc32
/qemu/pc-bios/openbios-sparc64
/qemu/qapi/block-core.json
/qemu/qemu-img.c
/qemu/qemu-io.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qom/object_interfaces.c
/qemu/replay/replay-events.c
/qemu/replay/replay-internal.h
/qemu/replay/replay.c
/qemu/roms/Makefile
/qemu/roms/Makefile.edk2
/qemu/roms/edk2-build.sh
/qemu/roms/edk2-funcs.sh
/qemu/roms/openbios
/qemu/scripts/kvm/vmxcap
/qemu/scripts/make-release
/qemu/scripts/tracetool/__init__.py
/qemu/scsi/qemu-pr-helper.c
/qemu/stubs/Makefile.objs
/qemu/stubs/replay-user.c
/qemu/target/arm/arm-semi.c
/qemu/target/arm/cpu.c
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm_arm.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/helper.c
/qemu/target/i386/kvm.c
/qemu/target/s390x/cc_helper.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/crypto_helper.c
/qemu/target/s390x/diag.c
/qemu/target/s390x/excp_helper.c
/qemu/target/s390x/fpu_helper.c
/qemu/target/s390x/gen-features.c
/qemu/target/s390x/helper.c
/qemu/target/s390x/int_helper.c
/qemu/target/s390x/internal.h
/qemu/target/s390x/interrupt.c
/qemu/target/s390x/ioinst.c
/qemu/target/s390x/mem_helper.c
/qemu/target/s390x/misc_helper.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/s390x/tcg-stub.c
/qemu/target/s390x/tcg_s390x.h
/qemu/target/s390x/translate.c
/qemu/tests/docker/test-clang
/qemu/tests/docker/test-debug
/qemu/tests/iothread.c
/qemu/tests/migration-test.c
/qemu/tests/ptimer-test.c
/qemu/tests/qemu-iotests/026
/qemu/tests/qemu-iotests/026.out
/qemu/tests/qemu-iotests/026.out.nocache
/qemu/tests/qemu-iotests/028
/qemu/tests/qemu-iotests/028.out
/qemu/tests/qemu-iotests/044
/qemu/tests/qemu-iotests/056
/qemu/tests/qemu-iotests/124
/qemu/tests/qemu-iotests/125
/qemu/tests/qemu-iotests/141.out
/qemu/tests/qemu-iotests/149
/qemu/tests/qemu-iotests/149.out
/qemu/tests/qemu-iotests/162
/qemu/tests/qemu-iotests/162.out
/qemu/tests/qemu-iotests/163
/qemu/tests/qemu-iotests/227.out
/qemu/tests/qemu-iotests/257
/qemu/tests/qemu-iotests/257.out
/qemu/tests/qemu-iotests/262
/qemu/tests/qemu-iotests/262.out
/qemu/tests/qemu-iotests/267
/qemu/tests/qemu-iotests/267.out
/qemu/tests/qemu-iotests/268
/qemu/tests/qemu-iotests/268.out
/qemu/tests/qemu-iotests/270
/qemu/tests/qemu-iotests/270.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/qemu-iotests/iotests.py
/qemu/tests/test-char.c
/qemu/tests/test-vmstate.c
/qemu/tests/uefi-test-tools/Makefile
/qemu/tests/uefi-test-tools/build.sh
/qemu/util/async.c
/qemu/util/iov.c
/qemu/util/oslib-win32.c
/qemu/vl.c
7678b74a23-Sep-2019 David Gibson <david@gibson.dropbear.id.au>

spapr: Replace spapr_vio_qirq() helper with spapr_vio_irq_pulse() helper

Every caller of spapr_vio_qirq() immediately calls qemu_irq_pulse() with
the result, so we might as well just fold that into

spapr: Replace spapr_vio_qirq() helper with spapr_vio_irq_pulse() helper

Every caller of spapr_vio_qirq() immediately calls qemu_irq_pulse() with
the result, so we might as well just fold that into the helper.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

show more ...


/qemu/.gitignore
/qemu/.shippable.yml
/qemu/.travis.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/Makefile.objs
/qemu/Makefile.target
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/atomic_template.h
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translate-all.h
/qemu/audio/Makefile.objs
/qemu/audio/alsaaudio.c
/qemu/audio/audio.c
/qemu/audio/audio_int.h
/qemu/audio/audio_template.h
/qemu/audio/coreaudio.c
/qemu/audio/dsound_template.h
/qemu/audio/dsoundaudio.c
/qemu/audio/noaudio.c
/qemu/audio/ossaudio.c
/qemu/audio/paaudio.c
/qemu/audio/sdlaudio.c
/qemu/audio/spiceaudio.c
/qemu/audio/wavaudio.c
/qemu/backends/hostmem-file.c
/qemu/backends/vhost-user.c
/qemu/block/backup.c
/qemu/block/bochs.c
/qemu/block/cloop.c
/qemu/block/commit.c
/qemu/block/create.c
/qemu/block/curl.c
/qemu/block/dmg.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/mirror.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/qapi.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2-threads.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/stream.c
/qemu/block/vpc.c
/qemu/block/vvfat.c
/qemu/blockdev-nbd.c
/qemu/blockjob.c
/qemu/configure
/qemu/cpus.c
/qemu/crypto/block-luks.c
/qemu/default-configs/i386-softmmu.mak
/qemu/docs/barrier.txt
/qemu/docs/conf.py
/qemu/docs/devel/migration.rst
/qemu/docs/devel/qapi-code-gen.txt
/qemu/docs/devel/testing.rst
/qemu/docs/devel/tracing.txt
/qemu/docs/interop/conf.py
/qemu/docs/interop/index.rst
/qemu/docs/interop/nbd.txt
/qemu/docs/interop/qemu-ga.rst
/qemu/docs/nvdimm.txt
/qemu/docs/virtio-pmem.rst
/qemu/exec.c
/qemu/hmp-commands-info.hx
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/ipmi-stub.c
/qemu/hw/acpi/ipmi.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/boot.c
/qemu/hw/block/dataplane/virtio-blk.c
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/xen-block.c
spapr_vty.c
/qemu/hw/core/cpu.c
/qemu/hw/core/loader.c
/qemu/hw/core/qdev.c
/qemu/hw/core/trace-events
/qemu/hw/display/ati.c
/qemu/hw/display/vga-access.h
/qemu/hw/display/vga-helpers.h
/qemu/hw/display/vga.c
/qemu/hw/gpio/Makefile.objs
/qemu/hw/gpio/aspeed_gpio.c
/qemu/hw/i386/Kconfig
/qemu/hw/i386/Makefile.objs
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/e820_memory_layout.c
/qemu/hw/i386/e820_memory_layout.h
/qemu/hw/i386/fw_cfg.c
/qemu/hw/i386/fw_cfg.h
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/intc/s390_flic_kvm.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xics.c
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xics_spapr.c
/qemu/hw/intc/xive.c
/qemu/hw/ipmi/Kconfig
/qemu/hw/ipmi/Makefile.objs
/qemu/hw/ipmi/ipmi.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/ipmi_bt.c
/qemu/hw/ipmi/ipmi_kcs.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/ipmi/pci_ipmi_bt.c
/qemu/hw/ipmi/pci_ipmi_kcs.c
/qemu/hw/ipmi/smbus_ipmi.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/next-cube.c
/qemu/hw/mips/mips_jazz.c
/qemu/hw/misc/Makefile.objs
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/trace-events
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/ppc/Makefile.objs
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_homer.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/ppc/spapr_tpm_proxy.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/Makefile.objs
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/riscv_hart.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_e_prci.c
/qemu/hw/riscv/sifive_plic.c
/qemu/hw/riscv/sifive_test.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/sifive_u_otp.c
/qemu/hw/riscv/sifive_u_prci.c
/qemu/hw/riscv/sifive_uart.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/s390x/event-facility.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/sclp.c
/qemu/hw/s390x/tod.c
/qemu/hw/scsi/trace-events
/qemu/hw/sd/trace-events
/qemu/hw/smbios/smbios_type_38.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/vfio/pci.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/xen/trace-events
/qemu/hw/xen/xen-bus.c
/qemu/include/block/block.h
/qemu/include/block/blockjob_int.h
/qemu/include/block/nbd.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/memory-internal.h
/qemu/include/exec/memory.h
/qemu/include/exec/ram_addr.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/acpi/ipmi.h
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/gpio/aspeed_gpio.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/ipmi/ipmi.h
/qemu/include/hw/ipmi/ipmi_bt.h
/qemu/include/hw/ipmi/ipmi_kcs.h
/qemu/include/hw/loader.h
/qemu/include/hw/misc/aspeed_scu.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/pnv_homer.h
/qemu/include/hw/ppc/pnv_occ.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_vio.h
/qemu/include/hw/ppc/xics.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/riscv_hart.h
/qemu/include/hw/riscv/sifive_cpu.h
/qemu/include/hw/riscv/sifive_e.h
/qemu/include/hw/riscv/sifive_e_prci.h
/qemu/include/hw/riscv/sifive_plic.h
/qemu/include/hw/riscv/sifive_test.h
/qemu/include/hw/riscv/sifive_u.h
/qemu/include/hw/riscv/sifive_u_otp.h
/qemu/include/hw/riscv/sifive_u_prci.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/xen/xen-bus.h
/qemu/include/migration/register.h
/qemu/include/qapi/visitor.h
/qemu/include/qemu-common.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/cutils.h
/qemu/include/qemu/job.h
/qemu/include/qemu/memfd.h
/qemu/include/qemu/notify.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/thread.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/ui/egl-helpers.h
/qemu/job.c
/qemu/linux-headers/linux/kvm.h
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/arm/target_cpu.h
/qemu/linux-user/arm/target_syscall.h
/qemu/linux-user/elfload.c
/qemu/linux-user/ioctls.h
/qemu/linux-user/main.c
/qemu/linux-user/ppc/signal.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/linux-user/xtensa/signal.c
/qemu/memory.c
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/block.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/qemu-file.c
/qemu/migration/qjson.h
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/trace-events
/qemu/nbd/client.c
/qemu/nbd/common.c
/qemu/nbd/server.c
/qemu/nbd/trace-events
/qemu/net/slirp.c
/qemu/net/trace-events
/qemu/pc-bios/README
/qemu/pc-bios/opensbi-riscv32-virt-fw_jump.bin
/qemu/pc-bios/opensbi-riscv64-sifive_u-fw_jump.bin
/qemu/pc-bios/opensbi-riscv64-virt-fw_jump.bin
/qemu/pc-bios/s390-ccw/main.c
/qemu/pc-bios/s390-ccw/netmain.c
/qemu/pc-bios/s390-netboot.img
/qemu/pc-bios/slof.bin
/qemu/python/qemu/qtest.py
/qemu/qapi/migration.json
/qemu/qapi/opts-visitor.c
/qemu/qapi/qapi-schema.json
/qemu/qapi/qmp-dispatch.c
/qemu/qapi/string-output-visitor.c
/qemu/qdev-monitor.c
/qemu/qemu-deprecated.texi
/qemu/qemu-doc.texi
/qemu/qemu-img.c
/qemu/qemu-io-cmds.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qemu.nsi
/qemu/roms/Makefile
/qemu/roms/SLOF
/qemu/scripts/git.orderfile
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/common.py
/qemu/scripts/qapi/events.py
/qemu/scripts/tracetool/__init__.py
/qemu/scsi/pr-manager.c
/qemu/target/alpha/fpu_helper.c
/qemu/target/alpha/helper.c
/qemu/target/arm/helper.c
/qemu/target/arm/m_helper.c
/qemu/target/arm/translate.c
/qemu/target/hppa/translate.c
/qemu/target/i386/kvm.c
/qemu/target/i386/whpx-all.c
/qemu/target/m68k/fpu_helper.c
/qemu/target/mips/cpu.c
/qemu/target/mips/gdbstub.c
/qemu/target/mips/helper.h
/qemu/target/mips/internal.h
/qemu/target/mips/kvm_mips.h
/qemu/target/mips/mips-defs.h
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/dfp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/helper.h
/qemu/target/ppc/int_helper.c
/qemu/target/ppc/internal.h
/qemu/target/ppc/kvm.c
/qemu/target/ppc/translate/fp-impl.inc.c
/qemu/target/ppc/translate/fp-ops.inc.c
/qemu/target/ppc/translate_init.inc.c
/qemu/target/riscv/Makefile.objs
/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/monitor.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/trace-events
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/helper.h
/qemu/target/s390x/insn-data.def
/qemu/target/s390x/kvm.c
/qemu/target/s390x/mem_helper.c
/qemu/target/s390x/translate.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/cpu.h
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/cpu.h
/qemu/tests/Makefile.include
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/cpu_queries.py
/qemu/tests/acceptance/linux_initrd.py
/qemu/tests/acceptance/linux_ssh_mips_malta.py
/qemu/tests/acceptance/machine_m68k_nextcube.py
/qemu/tests/acceptance/x86_cpu_model_versions.py
/qemu/tests/boot-serial-test.c
/qemu/tests/cdrom-test.c
/qemu/tests/data/acpi/q35/DSDT
/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/docker/Makefile.include
/qemu/tests/docker/common.rc
/qemu/tests/docker/docker.py
/qemu/tests/docker/dockerfiles/centos7.docker
/qemu/tests/docker/dockerfiles/debian-alpha-cross.docker
/qemu/tests/docker/dockerfiles/debian-amd64-cross.docker
/qemu/tests/docker/dockerfiles/debian-arm64-cross.docker
/qemu/tests/docker/dockerfiles/debian-armel-cross.docker
/qemu/tests/docker/dockerfiles/debian-armhf-cross.docker
/qemu/tests/docker/dockerfiles/debian-hppa-cross.docker
/qemu/tests/docker/dockerfiles/debian-m68k-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64-cross.docker
/qemu/tests/docker/dockerfiles/debian-mips64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-mipsel-cross.docker
/qemu/tests/docker/dockerfiles/debian-powerpc-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64-cross.docker
/qemu/tests/docker/dockerfiles/debian-ppc64el-cross.docker
/qemu/tests/docker/dockerfiles/debian-riscv64-cross.docker
/qemu/tests/docker/dockerfiles/debian-s390x-cross.docker
/qemu/tests/docker/dockerfiles/debian-sh4-cross.docker
/qemu/tests/docker/dockerfiles/debian-sparc64-cross.docker
/qemu/tests/docker/dockerfiles/debian-xtensa-cross.docker
/qemu/tests/docker/dockerfiles/debian10.docker
/qemu/tests/docker/dockerfiles/debian9-mxe.docker
/qemu/tests/docker/dockerfiles/debian9.docker
/qemu/tests/docker/dockerfiles/travis.docker
/qemu/tests/docker/dockerfiles/ubuntu.docker
/qemu/tests/docker/dockerfiles/ubuntu1804.docker
/qemu/tests/docker/run
/qemu/tests/docker/test-build
/qemu/tests/docker/test-clang
/qemu/tests/docker/test-mingw
/qemu/tests/docker/test-quick
/qemu/tests/ipmi-bt-test.c
/qemu/tests/libqtest.c
/qemu/tests/libqtest.h
/qemu/tests/migration-test.c
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/qapi-schema/allow-preconfig-test.err
/qemu/tests/qapi-schema/alternate-any.err
/qemu/tests/qapi-schema/alternate-array.err
/qemu/tests/qapi-schema/alternate-base.err
/qemu/tests/qapi-schema/alternate-branch-if-invalid.err
/qemu/tests/qapi-schema/alternate-branch-if-invalid.exit
/qemu/tests/qapi-schema/alternate-branch-if-invalid.json
/qemu/tests/qapi-schema/alternate-branch-if-invalid.out
/qemu/tests/qapi-schema/alternate-clash.err
/qemu/tests/qapi-schema/alternate-conflict-bool-string.err
/qemu/tests/qapi-schema/alternate-conflict-dict.err
/qemu/tests/qapi-schema/alternate-conflict-enum-bool.err
/qemu/tests/qapi-schema/alternate-conflict-enum-int.err
/qemu/tests/qapi-schema/alternate-conflict-num-string.err
/qemu/tests/qapi-schema/alternate-conflict-string.err
/qemu/tests/qapi-schema/alternate-empty.err
/qemu/tests/qapi-schema/alternate-empty.json
/qemu/tests/qapi-schema/alternate-invalid-dict.err
/qemu/tests/qapi-schema/alternate-nested.err
/qemu/tests/qapi-schema/alternate-unknown.err
/qemu/tests/qapi-schema/args-alternate.err
/qemu/tests/qapi-schema/args-any.err
/qemu/tests/qapi-schema/args-array-empty.err
/qemu/tests/qapi-schema/args-array-unknown.err
/qemu/tests/qapi-schema/args-bad-boxed.err
/qemu/tests/qapi-schema/args-boxed-anon.err
/qemu/tests/qapi-schema/args-boxed-string.err
/qemu/tests/qapi-schema/args-int.err
/qemu/tests/qapi-schema/args-invalid.err
/qemu/tests/qapi-schema/args-member-array-bad.err
/qemu/tests/qapi-schema/args-member-case.err
/qemu/tests/qapi-schema/args-member-case.json
/qemu/tests/qapi-schema/args-member-unknown.err
/qemu/tests/qapi-schema/args-name-clash.err
/qemu/tests/qapi-schema/args-union.err
/qemu/tests/qapi-schema/args-unknown.err
/qemu/tests/qapi-schema/bad-base.err
/qemu/tests/qapi-schema/bad-data.err
/qemu/tests/qapi-schema/bad-ident.err
/qemu/tests/qapi-schema/bad-if-empty-list.err
/qemu/tests/qapi-schema/bad-if-empty.err
/qemu/tests/qapi-schema/bad-if-list.err
/qemu/tests/qapi-schema/bad-if-list.json
/qemu/tests/qapi-schema/bad-if.err
/qemu/tests/qapi-schema/bad-type-bool.err
/qemu/tests/qapi-schema/bad-type-dict.err
/qemu/tests/qapi-schema/bad-type-int.err
/qemu/tests/qapi-schema/bad-type-int.json
/qemu/tests/qapi-schema/base-cycle-direct.err
/qemu/tests/qapi-schema/base-cycle-indirect.err
/qemu/tests/qapi-schema/command-int.err
/qemu/tests/qapi-schema/doc-bad-alternate-member.err
/qemu/tests/qapi-schema/doc-bad-command-arg.err
/qemu/tests/qapi-schema/doc-bad-symbol.err
/qemu/tests/qapi-schema/doc-bad-union-member.err
/qemu/tests/qapi-schema/doc-before-include.err
/qemu/tests/qapi-schema/doc-before-pragma.err
/qemu/tests/qapi-schema/doc-duplicated-return.err
/qemu/tests/qapi-schema/doc-duplicated-since.err
/qemu/tests/qapi-schema/doc-empty-arg.err
/qemu/tests/qapi-schema/doc-empty-section.err
/qemu/tests/qapi-schema/doc-empty-symbol.err
/qemu/tests/qapi-schema/doc-invalid-end.err
/qemu/tests/qapi-schema/doc-invalid-end2.err
/qemu/tests/qapi-schema/doc-invalid-start.err
/qemu/tests/qapi-schema/doc-missing-colon.err
/qemu/tests/qapi-schema/doc-missing-expr.err
/qemu/tests/qapi-schema/doc-missing-space.err
/qemu/tests/qapi-schema/doc-missing.err
/qemu/tests/qapi-schema/doc-no-symbol.err
/qemu/tests/qapi-schema/double-type.err
/qemu/tests/qapi-schema/duplicate-key.err
/qemu/tests/qapi-schema/duplicate-key.json
/qemu/tests/qapi-schema/enum-bad-member.err
/qemu/tests/qapi-schema/enum-bad-name.err
/qemu/tests/qapi-schema/enum-bad-name.json
/qemu/tests/qapi-schema/enum-bad-prefix.err
/qemu/tests/qapi-schema/enum-clash-member.err
/qemu/tests/qapi-schema/enum-dict-member-unknown.err
/qemu/tests/qapi-schema/enum-if-invalid.err
/qemu/tests/qapi-schema/enum-int-member.err
/qemu/tests/qapi-schema/enum-member-case.err
/qemu/tests/qapi-schema/enum-missing-data.err
/qemu/tests/qapi-schema/enum-wrong-data.err
/qemu/tests/qapi-schema/escape-outside-string.err
/qemu/tests/qapi-schema/event-boxed-empty.err
/qemu/tests/qapi-schema/event-member-invalid-dict.err
/qemu/tests/qapi-schema/event-nest-struct.err
/qemu/tests/qapi-schema/features-bad-type.err
/qemu/tests/qapi-schema/features-duplicate-name.err
/qemu/tests/qapi-schema/features-if-invalid.err
/qemu/tests/qapi-schema/features-if-invalid.exit
/qemu/tests/qapi-schema/features-if-invalid.json
/qemu/tests/qapi-schema/features-if-invalid.out
/qemu/tests/qapi-schema/features-missing-name.err
/qemu/tests/qapi-schema/features-name-bad-type.err
/qemu/tests/qapi-schema/features-no-list.err
/qemu/tests/qapi-schema/features-unknown-key.err
/qemu/tests/qapi-schema/flat-union-array-branch.err
/qemu/tests/qapi-schema/flat-union-bad-base.err
/qemu/tests/qapi-schema/flat-union-bad-discriminator.err
/qemu/tests/qapi-schema/flat-union-base-any.err
/qemu/tests/qapi-schema/flat-union-base-union.err
/qemu/tests/qapi-schema/flat-union-clash-member.err
/qemu/tests/qapi-schema/flat-union-discriminator-bad-name.err
/qemu/tests/qapi-schema/flat-union-discriminator-bad-name.exit
/qemu/tests/qapi-schema/flat-union-discriminator-bad-name.json
/qemu/tests/qapi-schema/flat-union-discriminator-bad-name.out
/qemu/tests/qapi-schema/flat-union-empty.err
/qemu/tests/qapi-schema/flat-union-empty.json
/qemu/tests/qapi-schema/flat-union-inline-invalid-dict.err
/qemu/tests/qapi-schema/flat-union-inline.err
/qemu/tests/qapi-schema/flat-union-int-branch.err
/qemu/tests/qapi-schema/flat-union-invalid-branch-key.err
/qemu/tests/qapi-schema/flat-union-invalid-discriminator.err
/qemu/tests/qapi-schema/flat-union-invalid-discriminator.json
/qemu/tests/qapi-schema/flat-union-invalid-if-discriminator.err
/qemu/tests/qapi-schema/flat-union-invalid-if-discriminator.json
/qemu/tests/qapi-schema/flat-union-no-base.err
/qemu/tests/qapi-schema/flat-union-optional-discriminator.err
/qemu/tests/qapi-schema/flat-union-optional-discriminator.json
/qemu/tests/qapi-schema/flat-union-string-discriminator.err
/qemu/tests/qapi-schema/funny-char.err
/qemu/tests/qapi-schema/funny-word.err
/qemu/tests/qapi-schema/funny-word.exit
/qemu/tests/qapi-schema/funny-word.json
/qemu/tests/qapi-schema/funny-word.out
/qemu/tests/qapi-schema/ident-with-escape.err
/qemu/tests/qapi-schema/ident-with-escape.exit
/qemu/tests/qapi-schema/ident-with-escape.json
/qemu/tests/qapi-schema/ident-with-escape.out
/qemu/tests/qapi-schema/include-before-err.err
/qemu/tests/qapi-schema/include-cycle.err
/qemu/tests/qapi-schema/include-extra-junk.err
/qemu/tests/qapi-schema/include-nested-err.err
/qemu/tests/qapi-schema/include-no-file.err
/qemu/tests/qapi-schema/include-non-file.err
/qemu/tests/qapi-schema/include-self-cycle.err
/qemu/tests/qapi-schema/leading-comma-list.err
/qemu/tests/qapi-schema/leading-comma-object.err
/qemu/tests/qapi-schema/missing-colon.err
/qemu/tests/qapi-schema/missing-comma-list.err
/qemu/tests/qapi-schema/missing-comma-object.err
/qemu/tests/qapi-schema/missing-type.err
/qemu/tests/qapi-schema/nested-struct-data-invalid-dict.err
/qemu/tests/qapi-schema/nested-struct-data.err
/qemu/tests/qapi-schema/non-objects.err
/qemu/tests/qapi-schema/oob-test.err
/qemu/tests/qapi-schema/pragma-doc-required-crap.err
/qemu/tests/qapi-schema/pragma-extra-junk.err
/qemu/tests/qapi-schema/pragma-name-case-whitelist-crap.err
/qemu/tests/qapi-schema/pragma-name-case-whitelist-crap.json
/qemu/tests/qapi-schema/pragma-non-dict.err
/qemu/tests/qapi-schema/pragma-returns-whitelist-crap.err
/qemu/tests/qapi-schema/pragma-unknown.err
/qemu/tests/qapi-schema/pragma-unknown.exit
/qemu/tests/qapi-schema/pragma-unknown.json
/qemu/tests/qapi-schema/pragma-unknown.out
/qemu/tests/qapi-schema/qapi-schema-test.json
/qemu/tests/qapi-schema/qapi-schema-test.out
/qemu/tests/qapi-schema/quoted-structural-chars.err
/qemu/tests/qapi-schema/redefined-builtin.err
/qemu/tests/qapi-schema/redefined-command.err
/qemu/tests/qapi-schema/redefined-event.err
/qemu/tests/qapi-schema/redefined-type.err
/qemu/tests/qapi-schema/reserved-command-q.err
/qemu/tests/qapi-schema/reserved-enum-q.err
/qemu/tests/qapi-schema/reserved-member-has.err
/qemu/tests/qapi-schema/reserved-member-q.err
/qemu/tests/qapi-schema/reserved-member-u.err
/qemu/tests/qapi-schema/reserved-member-underscore.err
/qemu/tests/qapi-schema/reserved-type-kind.err
/qemu/tests/qapi-schema/reserved-type-list.err
/qemu/tests/qapi-schema/returns-alternate.err
/qemu/tests/qapi-schema/returns-array-bad.err
/qemu/tests/qapi-schema/returns-dict.err
/qemu/tests/qapi-schema/returns-unknown.err
/qemu/tests/qapi-schema/returns-whitelist.err
/qemu/tests/qapi-schema/string-code-point-127.err
/qemu/tests/qapi-schema/string-code-point-127.exit
/qemu/tests/qapi-schema/string-code-point-127.json
/qemu/tests/qapi-schema/string-code-point-127.out
/qemu/tests/qapi-schema/string-code-point-31.err
/qemu/tests/qapi-schema/string-code-point-31.exit
/qemu/tests/qapi-schema/string-code-point-31.json
/qemu/tests/qapi-schema/string-code-point-31.out
/qemu/tests/qapi-schema/struct-base-clash-deep.err
/qemu/tests/qapi-schema/struct-base-clash.err
/qemu/tests/qapi-schema/struct-data-invalid.err
/qemu/tests/qapi-schema/struct-member-if-invalid.err
/qemu/tests/qapi-schema/struct-member-if-invalid.exit
/qemu/tests/qapi-schema/struct-member-if-invalid.json
/qemu/tests/qapi-schema/struct-member-if-invalid.out
/qemu/tests/qapi-schema/struct-member-invalid-dict.err
/qemu/tests/qapi-schema/struct-member-invalid.err
/qemu/tests/qapi-schema/trailing-comma-list.err
/qemu/tests/qapi-schema/trailing-comma-object.err
/qemu/tests/qapi-schema/type-bypass-bad-gen.err
/qemu/tests/qapi-schema/unclosed-list.err
/qemu/tests/qapi-schema/unclosed-object.err
/qemu/tests/qapi-schema/unclosed-string.err
/qemu/tests/qapi-schema/union-base-empty.err
/qemu/tests/qapi-schema/union-base-no-discriminator.err
/qemu/tests/qapi-schema/union-branch-case.err
/qemu/tests/qapi-schema/union-branch-case.json
/qemu/tests/qapi-schema/union-branch-if-invalid.err
/qemu/tests/qapi-schema/union-branch-if-invalid.exit
/qemu/tests/qapi-schema/union-branch-if-invalid.json
/qemu/tests/qapi-schema/union-branch-if-invalid.out
/qemu/tests/qapi-schema/union-branch-invalid-dict.err
/qemu/tests/qapi-schema/union-clash-branches.err
/qemu/tests/qapi-schema/union-empty.err
/qemu/tests/qapi-schema/union-empty.json
/qemu/tests/qapi-schema/union-invalid-base.err
/qemu/tests/qapi-schema/union-optional-branch.err
/qemu/tests/qapi-schema/union-unknown.err
/qemu/tests/qapi-schema/union-unknown.json
/qemu/tests/qapi-schema/unknown-escape.err
/qemu/tests/qapi-schema/unknown-escape.json
/qemu/tests/qapi-schema/unknown-expr-key.err
/qemu/tests/qemu-iotests/026.out.nocache
/qemu/tests/qemu-iotests/028
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/039
/qemu/tests/qemu-iotests/039.out
/qemu/tests/qemu-iotests/040
/qemu/tests/qemu-iotests/041
/qemu/tests/qemu-iotests/044
/qemu/tests/qemu-iotests/045
/qemu/tests/qemu-iotests/051
/qemu/tests/qemu-iotests/055
/qemu/tests/qemu-iotests/056
/qemu/tests/qemu-iotests/057
/qemu/tests/qemu-iotests/061
/qemu/tests/qemu-iotests/061.out
/qemu/tests/qemu-iotests/065
/qemu/tests/qemu-iotests/096
/qemu/tests/qemu-iotests/118
/qemu/tests/qemu-iotests/124
/qemu/tests/qemu-iotests/129
/qemu/tests/qemu-iotests/132
/qemu/tests/qemu-iotests/137
/qemu/tests/qemu-iotests/137.out
/qemu/tests/qemu-iotests/139
/qemu/tests/qemu-iotests/147
/qemu/tests/qemu-iotests/148
/qemu/tests/qemu-iotests/151
/qemu/tests/qemu-iotests/152
/qemu/tests/qemu-iotests/155
/qemu/tests/qemu-iotests/163
/qemu/tests/qemu-iotests/165
/qemu/tests/qemu-iotests/169
/qemu/tests/qemu-iotests/172
/qemu/tests/qemu-iotests/183
/qemu/tests/qemu-iotests/192
/qemu/tests/qemu-iotests/196
/qemu/tests/qemu-iotests/199
/qemu/tests/qemu-iotests/205
/qemu/tests/qemu-iotests/223
/qemu/tests/qemu-iotests/223.out
/qemu/tests/qemu-iotests/232
/qemu/tests/qemu-iotests/233.out
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/247
/qemu/tests/qemu-iotests/257
/qemu/tests/qemu-iotests/263
/qemu/tests/qemu-iotests/263.out
/qemu/tests/qemu-iotests/265
/qemu/tests/qemu-iotests/265.out
/qemu/tests/qemu-iotests/266
/qemu/tests/qemu-iotests/266.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/group
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/requirements.txt
/qemu/tests/tcg/.gitignore
/qemu/tests/tcg/Makefile.prereqs
/qemu/tests/tcg/Makefile.qemu
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/aarch64/Makefile.softmmu-target
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/float_convs.ref
/qemu/tests/tcg/aarch64/float_madds.ref
/qemu/tests/tcg/alpha/Makefile.softmmu-target
/qemu/tests/tcg/arm/Makefile.softmmu-target
/qemu/tests/tcg/arm/Makefile.target
/qemu/tests/tcg/arm/float_convs.ref
/qemu/tests/tcg/arm/float_madds.ref
/qemu/tests/tcg/arm/semihosting.c
/qemu/tests/tcg/configure.sh
/qemu/tests/tcg/i386/Makefile.softmmu-target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/minilib/Makefile.target
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/float_convs.c
/qemu/tests/tcg/multiarch/float_helpers.c
/qemu/tests/tcg/multiarch/float_helpers.h
/qemu/tests/tcg/multiarch/float_madds.c
/qemu/tests/tcg/s390x/Makefile.target
/qemu/tests/tcg/s390x/mvc.c
/qemu/tests/tcg/s390x/mvo.c
/qemu/tests/tcg/x86_64/Makefile.softmmu-target
/qemu/tests/tcg/x86_64/Makefile.target
/qemu/tests/tcg/xtensa/Makefile.softmmu-target
/qemu/tests/test-bdrv-drain.c
/qemu/tests/test-block-iothread.c
/qemu/tests/test-blockjob-txn.c
/qemu/tests/test-blockjob.c
/qemu/tests/test-char.c
/qemu/tests/test-qga.c
/qemu/tests/test-qmp-cmds.c
/qemu/tests/test-util-filemonitor.c
/qemu/tests/usb-hcd-ehci-test.c
/qemu/tests/vm/fedora
/qemu/trace-events
/qemu/ui/Makefile.objs
/qemu/ui/egl-headless.c
/qemu/ui/egl-helpers.c
/qemu/ui/input-barrier.c
/qemu/ui/input-barrier.h
/qemu/ui/vnc-enc-tight.c
/qemu/ui/vnc-enc-zlib.c
/qemu/ui/vnc-enc-zrle.c
/qemu/ui/vnc-enc-zrle.inc.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/cacheinfo.c
/qemu/util/memfd.c
/qemu/util/notify.c
/qemu/util/oslib-posix.c
/qemu/util/oslib-win32.c
/qemu/util/qemu-sockets.c
/qemu/util/qemu-thread-posix.c
/qemu/util/qemu-thread-win32.c
/qemu/util/qsp.c
/qemu/vl.c
b43047a225-May-2019 Laurent Vivier <laurent@vivier.eu>

escc: introduce a selector for the register bit

On Sparc and PowerMac, the bit 0 of the address selects the register
type (control or data) and bit 1 selects the channel (B or A).

On m68k Macintosh

escc: introduce a selector for the register bit

On Sparc and PowerMac, the bit 0 of the address selects the register
type (control or data) and bit 1 selects the channel (B or A).

On m68k Macintosh and NeXTcube, the bit 0 selects the channel and
bit 1 the register type.

This patch introduces a new parameter (bit_swap) to the device interface
to indicate bits usage must be swapped between registers and channels.

For the moment all the machines use the bit 0, but this change will be
needed to emulate the Quadra 800 or NeXTcube machine.

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Hervé Poussineau <hpoussin@reactos.org>
[thh: added NeXTcube to the patch description]
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190831074519.32613-5-huth@tuxfamily.org>
Signed-off-by: Thomas Huth <huth@tuxfamily.org>

show more ...


/qemu/.gitignore
/qemu/.gitlab-ci.yml
/qemu/.mailmap
/qemu/.travis.yml
/qemu/CODING_STYLE.rst
/qemu/Kconfig.host
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/README.rst
/qemu/accel/tcg/atomic_template.h
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec-stub.c
/qemu/accel/tcg/user-exec.c
/qemu/arch_init.c
/qemu/audio/alsaaudio.c
/qemu/audio/audio.c
/qemu/audio/audio.h
/qemu/audio/audio_int.h
/qemu/audio/audio_template.h
/qemu/audio/coreaudio.c
/qemu/audio/dsoundaudio.c
/qemu/audio/mixeng.h
/qemu/audio/noaudio.c
/qemu/audio/ossaudio.c
/qemu/audio/paaudio.c
/qemu/audio/rate_template.h
/qemu/audio/sdlaudio.c
/qemu/audio/spiceaudio.c
/qemu/audio/wavaudio.c
/qemu/audio/wavcapture.c
/qemu/backends/Makefile.objs
/qemu/backends/hostmem-file.c
/qemu/backends/rng-builtin.c
/qemu/block.c
/qemu/block/backup.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/vmdk.c
/qemu/blockdev-nbd.c
/qemu/chardev/char-socket.c
/qemu/configure
/qemu/contrib/gitdm/aliases
/qemu/contrib/gitdm/domain-map
/qemu/contrib/gitdm/filetypes.txt
/qemu/contrib/gitdm/group-map-individuals
/qemu/contrib/gitdm/group-map-redhat
/qemu/contrib/libvhost-user/libvhost-user.c
/qemu/cpus-common.c
/qemu/cpus.c
/qemu/crypto/afsplit.c
/qemu/crypto/block-luks.c
/qemu/crypto/block.c
/qemu/crypto/hmac-glib.c
/qemu/crypto/pbkdf.c
/qemu/crypto/secret.c
/qemu/crypto/tlscredsanon.c
/qemu/crypto/tlscredspsk.c
/qemu/crypto/tlscredsx509.c
/qemu/default-configs/m68k-softmmu.mak
/qemu/disas/ppc.c
/qemu/docs/devel/migration.rst
/qemu/docs/devel/replay.txt
/qemu/docs/interop/firmware.json
/qemu/docs/qemu-block-drivers.texi
/qemu/docs/qemu-cpu-models.texi
/qemu/exec.c
/qemu/fsdev/Makefile.objs
/qemu/gdbstub.c
/qemu/hmp-commands.hx
/qemu/hw/9pfs/Kconfig
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/cpu_hotplug.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/piix4.c
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/digic.c
/qemu/hw/arm/exynos4_boards.c
/qemu/hw/arm/fsl-imx25.c
/qemu/hw/arm/fsl-imx31.c
/qemu/hw/arm/fsl-imx6.c
/qemu/hw/arm/fsl-imx6ul.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/imx25_pdk.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/kzm.c
/qemu/hw/arm/mainstone.c
/qemu/hw/arm/mcimx6ul-evk.c
/qemu/hw/arm/mcimx7d-sabre.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/realview.c
/qemu/hw/arm/sabrelite.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/versatilepb.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xilinx_zynq.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/adlib.c
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/milkymist-ac97.c
/qemu/hw/audio/pcspk.c
/qemu/hw/audio/pl041.c
/qemu/hw/audio/sb16.c
/qemu/hw/audio/wm8750.c
escc.c
/qemu/hw/core/Makefile.objs
/qemu/hw/core/cpu.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-hmp-cmds.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/null-machine.c
/qemu/hw/core/numa.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/cpu/a9mpcore.c
/qemu/hw/cpu/cluster.c
/qemu/hw/display/Makefile.objs
/qemu/hw/display/ati.c
/qemu/hw/display/ati_dbg.c
/qemu/hw/display/ati_int.h
/qemu/hw/display/ati_regs.h
/qemu/hw/display/next-fb.c
/qemu/hw/display/sm501.c
/qemu/hw/dma/omap_dma.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/intc/arm_gicv3_common.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/Makefile.objs
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/next-kbd.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/misc/imx6_src.c
/qemu/hw/net/e1000.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_pci_nvlink2.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/timer/a9gtimer.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/timer/mc146818rtc.c
/qemu/hw/usb/dev-audio.c
/qemu/hw/usb/dev-mtp.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/redirect.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pci.h
/qemu/hw/virtio/virtio-rng.c
/qemu/hw/xen/xen-bus.c
/qemu/include/block/block_int.h
/qemu/include/crypto/block.h
/qemu/include/crypto/cipher.h
/qemu/include/crypto/hmac.h
/qemu/include/crypto/ivgen.h
/qemu/include/crypto/tlssession.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/gen-icount.h
/qemu/include/exec/log.h
/qemu/include/exec/memattrs.h
/qemu/include/exec/memop.h
/qemu/include/exec/memory.h
/qemu/include/exec/poison.h
/qemu/include/glib-compat.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/arm/boot.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/escc.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/loader.h
/qemu/include/hw/m68k/next-cube.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/ppc/openpic.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/qdev-properties.h
/qemu/include/hw/virtio/virtio-rng.h
/qemu/include/hw/xen/interface/io/ring.h
/qemu/include/io/channel-socket.h
/qemu/include/io/net-listener.h
/qemu/include/qemu/iov.h
/qemu/include/qemu/module.h
/qemu/include/qemu/sockets.h
/qemu/include/qemu/timer.h
/qemu/include/standard-headers/asm-x86/kvm_para.h
/qemu/include/sysemu/hw_accel.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/numa.h
/qemu/include/sysemu/replay.h
/qemu/include/sysemu/rng.h
/qemu/include/sysemu/sysemu.h
/qemu/io/channel-socket.c
/qemu/io/net-listener.c
/qemu/io/task.c
/qemu/io/trace-events
/qemu/linux-user/openrisc/target_elf.h
/qemu/memory.c
/qemu/memory_ldst.inc.c
/qemu/migration/ram.c
/qemu/migration/socket.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/misc.c
/qemu/monitor/qmp.c
/qemu/pc-bios/README
/qemu/pc-bios/skiboot.lid
/qemu/pc-bios/slof.bin
/qemu/qapi/common.json
/qemu/qapi/machine.json
/qemu/qapi/misc.json
/qemu/qapi/ui.json
/qemu/qdev-monitor.c
/qemu/qemu-deprecated.texi
/qemu/qemu-doc.texi
/qemu/qemu-img.c
/qemu/qemu-io-cmds.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/channel-posix.c
/qemu/qobject/json-parser.c
/qemu/qom/Makefile.objs
/qemu/qtest.c
/qemu/replay/replay-audio.c
/qemu/replay/replay-events.c
/qemu/replay/replay-internal.c
/qemu/replay/replay-internal.h
/qemu/replay/replay-snapshot.c
/qemu/replay/replay-time.c
/qemu/replay/replay.c
/qemu/roms/SLOF
/qemu/roms/skiboot
/qemu/scripts/checkpatch.pl
/qemu/scripts/kvm/vmxcap
/qemu/scripts/minikconf.py
/qemu/scsi/qemu-pr-helper.c
/qemu/target/alpha/cpu-qom.h
/qemu/target/alpha/cpu.h
/qemu/target/alpha/helper.c
/qemu/target/alpha/translate.c
/qemu/target/arm/Makefile.objs
/qemu/target/arm/a32-uncond.decode
/qemu/target/arm/a32.decode
/qemu/target/arm/cpu-qom.h
/qemu/target/arm/cpu.h
/qemu/target/arm/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-sve.c
/qemu/target/arm/translate-vfp.inc.c
/qemu/target/arm/translate.c
/qemu/target/arm/translate.h
/qemu/target/cris/cpu-qom.h
/qemu/target/cris/translate.c
/qemu/target/hppa/cpu-qom.h
/qemu/target/hppa/cpu.h
/qemu/target/hppa/int_helper.c
/qemu/target/hppa/mem_helper.c
/qemu/target/hppa/op_helper.c
/qemu/target/hppa/translate.c
/qemu/target/i386/cpu-qom.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/kvm.c
/qemu/target/i386/machine.c
/qemu/target/i386/ops_sse.h
/qemu/target/i386/translate.c
/qemu/target/lm32/cpu-qom.h
/qemu/target/lm32/translate.c
/qemu/target/m68k/cpu-qom.h
/qemu/target/m68k/translate.c
/qemu/target/microblaze/cpu-qom.h
/qemu/target/microblaze/translate.c
/qemu/target/mips/cpu-qom.h
/qemu/target/mips/cpu.h
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/moxie/cpu.h
/qemu/target/nios2/cpu.h
/qemu/target/nios2/translate.c
/qemu/target/openrisc/cpu.c
/qemu/target/openrisc/cpu.h
/qemu/target/openrisc/disas.c
/qemu/target/openrisc/fpu_helper.c
/qemu/target/openrisc/helper.h
/qemu/target/openrisc/insns.decode
/qemu/target/openrisc/machine.c
/qemu/target/openrisc/sys_helper.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/cpu-qom.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/fp-impl.inc.c
/qemu/target/ppc/translate/fp-ops.inc.c
/qemu/target/ppc/translate/vmx-impl.inc.c
/qemu/target/ppc/translate/vsx-impl.inc.c
/qemu/target/ppc/translate_init.inc.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/insn_trans/trans_rva.inc.c
/qemu/target/riscv/insn_trans/trans_rvi.inc.c
/qemu/target/s390x/cpu-qom.h
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.h
/qemu/target/s390x/helper.c
/qemu/target/s390x/mem_helper.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/s390x/translate.c
/qemu/target/s390x/translate_vx.inc.c
/qemu/target/sh4/cpu-qom.h
/qemu/target/sh4/cpu.h
/qemu/target/sparc/cpu-qom.h
/qemu/target/sparc/cpu.h
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/translate.c
/qemu/target/tilegx/cpu.h
/qemu/target/tilegx/translate.c
/qemu/target/tricore/cpu-qom.h
/qemu/target/tricore/helper.h
/qemu/target/tricore/op_helper.c
/qemu/target/tricore/translate.c
/qemu/target/unicore32/cpu-qom.h
/qemu/target/unicore32/translate.c
/qemu/target/xtensa/cpu-qom.h
/qemu/target/xtensa/cpu.h
/qemu/target/xtensa/translate.c
/qemu/tcg/README
/qemu/tcg/aarch64/tcg-target.inc.c
/qemu/tcg/arm/tcg-target.inc.c
/qemu/tcg/i386/tcg-target.inc.c
/qemu/tcg/mips/tcg-target.inc.c
/qemu/tcg/optimize.c
/qemu/tcg/ppc/tcg-target.inc.c
/qemu/tcg/riscv/tcg-target.inc.c
/qemu/tcg/s390/tcg-target.inc.c
/qemu/tcg/sparc/tcg-target.inc.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg-op.h
/qemu/tcg/tcg.c
/qemu/tcg/tcg.h
/qemu/tests/Makefile.include
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/linux_ssh_mips_malta.py
/qemu/tests/acceptance/migration.py
/qemu/tests/acceptance/pc_cpu_hotplug_props.py
/qemu/tests/acceptance/vnc.py
/qemu/tests/ahci-test.c
/qemu/tests/bios-tables-test.c
/qemu/tests/boot-serial-test.c
/qemu/tests/check-block.sh
/qemu/tests/check-qjson.c
/qemu/tests/cpu-plug-test.c
/qemu/tests/display-vga-test.c
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/docker.py
/qemu/tests/e1000e-test.c
/qemu/tests/fdc-test.c
/qemu/tests/i440fx-test.c
/qemu/tests/i82801b11-test.c
/qemu/tests/intel-hda-test.c
/qemu/tests/ioh3420-test.c
/qemu/tests/ipmi-kcs-test.c
/qemu/tests/ivshmem-test.c
/qemu/tests/libqos/e1000e.c
/qemu/tests/libqos/virtio-mmio.c
/qemu/tests/libqos/virtio-pci.c
/qemu/tests/libqos/virtio.c
/qemu/tests/libqos/virtio.h
/qemu/tests/libqtest-single.h
/qemu/tests/libqtest.c
/qemu/tests/libqtest.h
/qemu/tests/m25p80-test.c
/qemu/tests/migration-test.c
/qemu/tests/migration/stress.c
/qemu/tests/modules-test.c
/qemu/tests/pnv-xscom-test.c
/qemu/tests/ptimer-test-stubs.c
/qemu/tests/ptimer-test.c
/qemu/tests/qemu-iotests/002
/qemu/tests/qemu-iotests/003
/qemu/tests/qemu-iotests/005
/qemu/tests/qemu-iotests/009
/qemu/tests/qemu-iotests/010
/qemu/tests/qemu-iotests/011
/qemu/tests/qemu-iotests/017
/qemu/tests/qemu-iotests/018
/qemu/tests/qemu-iotests/019
/qemu/tests/qemu-iotests/020
/qemu/tests/qemu-iotests/026
/qemu/tests/qemu-iotests/027
/qemu/tests/qemu-iotests/032
/qemu/tests/qemu-iotests/033
/qemu/tests/qemu-iotests/034
/qemu/tests/qemu-iotests/037
/qemu/tests/qemu-iotests/039
/qemu/tests/qemu-iotests/052
/qemu/tests/qemu-iotests/059
/qemu/tests/qemu-iotests/059.out
/qemu/tests/qemu-iotests/063
/qemu/tests/qemu-iotests/071
/qemu/tests/qemu-iotests/072
/qemu/tests/qemu-iotests/081
/qemu/tests/qemu-iotests/091
/qemu/tests/qemu-iotests/099
/qemu/tests/qemu-iotests/105
/qemu/tests/qemu-iotests/110
/qemu/tests/qemu-iotests/120
/qemu/tests/qemu-iotests/126
/qemu/tests/qemu-iotests/150.out.qcow2
/qemu/tests/qemu-iotests/150.out.raw
/qemu/tests/qemu-iotests/162
/qemu/tests/qemu-iotests/175
/qemu/tests/qemu-iotests/175.out
/qemu/tests/qemu-iotests/178.out.qcow2
/qemu/tests/qemu-iotests/184
/qemu/tests/qemu-iotests/186
/qemu/tests/qemu-iotests/197
/qemu/tests/qemu-iotests/215
/qemu/tests/qemu-iotests/221.out
/qemu/tests/qemu-iotests/251
/qemu/tests/qemu-iotests/253.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qos-test.c
/qemu/tests/requirements.txt
/qemu/tests/rtas-test.c
/qemu/tests/rtc-test.c
/qemu/tests/rtl8139-test.c
/qemu/tests/socket-helpers.c
/qemu/tests/socket-helpers.h
/qemu/tests/test-arm-mptimer.c
/qemu/tests/test-bitmap.c
/qemu/tests/test-char.c
/qemu/tests/test-io-channel-socket.c
/qemu/tests/test-netfilter.c
/qemu/tests/test-string-input-visitor.c
/qemu/tests/test-throttle.c
/qemu/tests/test-util-sockets.c
/qemu/tests/test-x86-cpuid-compat.c
/qemu/tests/tmp105-test.c
/qemu/tests/tpm-crb-test.c
/qemu/tests/tpm-emu.c
/qemu/tests/tpm-tests.c
/qemu/tests/tpm-tis-test.c
/qemu/tests/usb-hcd-ohci-test.c
/qemu/tests/usb-hcd-uhci-test.c
/qemu/tests/usb-hcd-xhci-test.c
/qemu/tests/vhost-user-test.c
/qemu/tests/virtio-9p-test.c
/qemu/tests/virtio-blk-test.c
/qemu/tests/virtio-ccw-test.c
/qemu/tests/virtio-net-test.c
/qemu/tests/virtio-scsi-test.c
/qemu/tests/virtio-serial-test.c
/qemu/tests/vm/Makefile.include
/qemu/trace-events
/qemu/trace/control-vcpu.h
/qemu/trace/control.c
/qemu/trace/mem-internal.h
/qemu/trace/mem.h
/qemu/ui/Makefile.objs
/qemu/ui/cocoa.m
/qemu/ui/curses.c
/qemu/ui/input-linux.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/async.c
/qemu/util/iov.c
/qemu/util/module.c
/qemu/util/qemu-sockets.c
/qemu/util/qemu-timer.c
/qemu/util/trace-events
/qemu/vl.c
fd38b16231-Jul-2019 Paul Mackerras <paulus@ozlabs.org>

spapr: Implement better workaround in spapr-vty device

Linux guest kernels have code which scans the string of characters
returned from the H_GET_TERM_CHAR hypercall and removes any \0
character whi

spapr: Implement better workaround in spapr-vty device

Linux guest kernels have code which scans the string of characters
returned from the H_GET_TERM_CHAR hypercall and removes any \0
character which comes immediately after a \r character. This is to
work around a bug which was present in some ancient versions of
PowerVM. In order to avoid the corruption of the console byte stream
that this introduced, commit 6c3bc244d3cb ("spapr: Implement bug in
spapr-vty device to be compatible with PowerVM") added a workaround
which adds a \0 character after every \r character. Unfortunately,
this corrupts the console byte stream for those operating systems,
such as AIX, which don't remove the null bytes.

We can avoid triggering the Linux kernel workaround if we avoid
returning a buffer which contains a \0 after a \r. We can do that by
breaking out of the loop in vty_getchars() if we are about to insert a
\0 and the previous character in the buffer is a \r. That means we
return the characters up to the \r for the current H_GET_TERM_CHAR,
and the characters starting with the \0 for the next one.

With this workaround, we don't insert any spurious characters and we
avoid triggering the Linux kernel workaround, so the guest will
receive an uncorrupted stream whether or not they have the workaround.

Fixes: 6c3bc244d3cb ("spapr: Implement bug in spapr-vty device to be compatible with PowerVM")
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
Message-Id: <20190731043653.shdi5sizjp4t65op@oak.ozlabs.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...


/qemu/.gitlab-ci.yml
/qemu/block.c
/qemu/block/backup.c
/qemu/block/block-backend.c
/qemu/block/commit.c
/qemu/block/crypto.c
/qemu/block/dirty-bitmap.c
/qemu/block/file-posix.c
/qemu/block/file-win32.c
/qemu/block/gluster.c
/qemu/block/io.c
/qemu/block/mirror.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/parallels.c
/qemu/block/qapi.c
/qemu/block/qcow2.c
/qemu/block/qed.c
/qemu/block/raw-format.c
/qemu/block/rbd.c
/qemu/block/replication.c
/qemu/block/sheepdog.c
/qemu/block/ssh.c
/qemu/block/stream.c
/qemu/block/trace-events
/qemu/block/vdi.c
/qemu/block/vhdx.c
/qemu/block/vmdk.c
/qemu/block/vpc.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/dma-helpers.c
/qemu/docs/devel/decodetree.rst
/qemu/docs/qemu-block-drivers.texi
/qemu/docs/specs/ppc-spapr-uv-hcalls.txt
/qemu/fpu/softfloat-specialize.inc.c
/qemu/fpu/softfloat.c
/qemu/hw/Kconfig
/qemu/hw/arm/Kconfig
/qemu/hw/arm/virt.c
/qemu/hw/block/hd-geometry.c
spapr_vty.c
/qemu/hw/core/Kconfig
/qemu/hw/core/Makefile.objs
/qemu/hw/core/machine.c
/qemu/hw/dma/Kconfig
/qemu/hw/dma/Makefile.objs
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/atapi.c
/qemu/hw/ide/core.c
/qemu/hw/intc/Makefile.objs
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/xive.c
/qemu/hw/microblaze/Kconfig
/qemu/hw/mips/cps.c
/qemu/hw/mips/mips_fulong2e.c
/qemu/hw/mips/mips_int.c
/qemu/hw/mips/mips_malta.c
/qemu/hw/mips/mips_mipssim.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/Makefile.objs
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/ppc/Makefile.objs
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_caps.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/ppc/spapr_tpm_proxy.c
/qemu/hw/ppc/trace-events
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/sparc64/Kconfig
/qemu/hw/timer/Kconfig
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/dirty-bitmap.h
/qemu/include/block/nbd.h
/qemu/include/fpu/softfloat-helpers.h
/qemu/include/fpu/softfloat-macros.h
/qemu/include/fpu/softfloat.h
/qemu/include/hw/boards.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_cpu_core.h
/qemu/include/hw/ppc/spapr_irq.h
/qemu/include/hw/ppc/spapr_tpm_proxy.h
/qemu/include/hw/ppc/xive.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/migration/qemu-file-types.h
/qemu/include/sysemu/block-backend.h
/qemu/include/sysemu/qtest.h
/qemu/linux-user/mips/cpu_loop.c
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/block.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/postcopy-ram.c
/qemu/migration/postcopy-ram.h
/qemu/migration/qemu-file-channel.c
/qemu/migration/qemu-file.c
/qemu/migration/qemu-file.h
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/trace-events
/qemu/monitor/hmp-cmds.c
/qemu/nbd/client.c
/qemu/nbd/server.c
/qemu/pc-bios/README
/qemu/pc-bios/slof.bin
/qemu/qapi/block-core.json
/qemu/qapi/sockets.json
/qemu/qapi/transaction.json
/qemu/qemu-deprecated.texi
/qemu/qemu-img.c
/qemu/qemu-img.texi
/qemu/qemu-nbd.c
/qemu/qtest.c
/qemu/roms/SLOF
/qemu/scripts/decodetree.py
/qemu/target/alpha/helper.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper.c
/qemu/target/arm/helper.h
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/kvm_arm.h
/qemu/target/arm/op_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-a64.h
/qemu/target/arm/translate-vfp.inc.c
/qemu/target/arm/translate.c
/qemu/target/arm/translate.h
/qemu/target/m68k/softfloat.c
/qemu/target/microblaze/cpu.c
/qemu/target/mips/cp0_timer.c
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/internal.h
/qemu/target/mips/machine.c
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/ppc/cpu-qom.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/helper.h
/qemu/target/ppc/int_helper.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/vmx-impl.inc.c
/qemu/target/ppc/translate_init.inc.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/fpu_helper.c
/qemu/target/riscv/translate.c
/qemu/target/s390x/cpu.c
/qemu/target/sh4/cpu.c
/qemu/target/tricore/helper.c
/qemu/target/unicore32/cpu.c
/qemu/tests/Makefile.include
/qemu/tests/check-block.sh
/qemu/tests/cpu-plug-test.c
/qemu/tests/decode/err_field6.decode
/qemu/tests/decode/succ_function.decode
/qemu/tests/drive_del-test.c
/qemu/tests/e1000e-test.c
/qemu/tests/ivshmem-test.c
/qemu/tests/libqos/usb.c
/qemu/tests/libqos/usb.h
/qemu/tests/libqos/virtio-net.c
/qemu/tests/libqos/virtio-net.h
/qemu/tests/libqos/virtio-pci.c
/qemu/tests/libqos/virtio-scsi.c
/qemu/tests/libqos/virtio.c
/qemu/tests/libqos/virtio.h
/qemu/tests/libqtest.c
/qemu/tests/libqtest.h
/qemu/tests/megasas-test.c
/qemu/tests/nvme-test.c
/qemu/tests/qemu-iotests/040
/qemu/tests/qemu-iotests/041
/qemu/tests/qemu-iotests/041.out
/qemu/tests/qemu-iotests/093
/qemu/tests/qemu-iotests/118
/qemu/tests/qemu-iotests/118.out
/qemu/tests/qemu-iotests/122
/qemu/tests/qemu-iotests/122.out
/qemu/tests/qemu-iotests/139
/qemu/tests/qemu-iotests/141
/qemu/tests/qemu-iotests/141.out
/qemu/tests/qemu-iotests/188
/qemu/tests/qemu-iotests/188.out
/qemu/tests/qemu-iotests/234
/qemu/tests/qemu-iotests/238
/qemu/tests/qemu-iotests/254
/qemu/tests/qemu-iotests/254.out
/qemu/tests/qemu-iotests/256.out
/qemu/tests/qemu-iotests/257
/qemu/tests/qemu-iotests/257.out
/qemu/tests/qemu-iotests/258
/qemu/tests/qemu-iotests/258.out
/qemu/tests/qemu-iotests/262
/qemu/tests/qemu-iotests/262.out
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/group
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qmp-test.c
/qemu/tests/tcg/mips/include/test_utils_128.h
/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_32r5eb.sh
/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_32r5el.sh
/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh
/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh
/qemu/tests/test-bdrv-drain.c
/qemu/tests/test-block-iothread.c
/qemu/tests/test-blockjob-txn.c
/qemu/tests/test-blockjob.c
/qemu/tests/test-hbitmap.c
/qemu/tests/usb-hcd-ohci-test.c
/qemu/tests/usb-hcd-uhci-test.c
/qemu/tests/usb-hcd-xhci-test.c
/qemu/tests/virtio-9p-test.c
/qemu/tests/virtio-blk-test.c
/qemu/tests/virtio-ccw-test.c
/qemu/tests/virtio-net-test.c
/qemu/tests/virtio-rng-test.c
/qemu/tests/virtio-scsi-test.c
/qemu/tests/virtio-serial-test.c
/qemu/util/hbitmap.c
/qemu/util/qemu-sockets.c
/qemu/vl.c
54d3123612-Aug-2019 Markus Armbruster <armbru@redhat.com>

sysemu: Split sysemu/runstate.h off sysemu/sysemu.h

sysemu/sysemu.h is a rather unfocused dumping ground for stuff related
to the system-emulator. Evidence:

* It's included widely: in my "build ev

sysemu: Split sysemu/runstate.h off sysemu/sysemu.h

sysemu/sysemu.h is a rather unfocused dumping ground for stuff related
to the system-emulator. Evidence:

* It's included widely: in my "build everything" tree, changing
sysemu/sysemu.h still triggers a recompile of some 1100 out of 6600
objects (not counting tests and objects that don't depend on
qemu/osdep.h, down from 5400 due to the previous two commits).

* It pulls in more than a dozen additional headers.

Split stuff related to run state management into its own header
sysemu/runstate.h.

Touching sysemu/sysemu.h now recompiles some 850 objects. qemu/uuid.h
also drops from 1100 to 850, and qapi/qapi-types-run-state.h from 4400
to 4200. Touching new sysemu/runstate.h recompiles some 500 objects.

Since I'm touching MAINTAINERS to add sysemu/runstate.h anyway, also
add qemu/main-loop.h.

Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-30-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
[Unbreak OS-X build]

show more ...


/qemu/MAINTAINERS
/qemu/accel/kvm/kvm-all.c
/qemu/audio/audio.c
/qemu/block/block-backend.c
/qemu/blockdev.c
/qemu/cpus.c
/qemu/dump/dump.c
/qemu/gdbstub.c
/qemu/hw/acpi/core.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/piix4.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/msf2-soc.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.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/virt.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/virtio-blk.c
serial.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/vm-change-state-handler.c
/qemu/hw/display/qxl-render.c
/qemu/hw/display/qxl.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/dma/etraxfs_dma.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/i386/xen/xen-mapcache.c
/qemu/hw/ide/core.c
/qemu/hw/ide/qdev.c
/qemu/hw/input/pckbd.c
/qemu/hw/input/ps2.c
/qemu/hw/intc/arm_gicv3_its_kvm.c
/qemu/hw/intc/arm_gicv3_kvm.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/ipmi/ipmi.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/mips_malta.c
/qemu/hw/mips/mips_r4k.c
/qemu/hw/misc/arm_sysctl.c
/qemu/hw/misc/cbus.c
/qemu/hw/misc/exynos4210_pmu.c
/qemu/hw/misc/imx7_snvs.c
/qemu/hw/misc/iotkit-sysctl.c
/qemu/hw/misc/macio/cuda.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/pvpanic.c
/qemu/hw/misc/slavio_misc.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/virtio-net.c
/qemu/hw/nvram/spapr_nvram.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/piix.c
/qemu/hw/pci-host/sabre.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mpc8544_guts.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc_booke.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/s390x/ipl.c
/qemu/hw/s390x/s390-ccw.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/sclpquiesce.c
/qemu/hw/s390x/tod-kvm.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/sh4/r2d.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/timer/etraxfs_timer.c
/qemu/hw/timer/m48t59.c
/qemu/hw/timer/mc146818rtc.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/timer/pxa2xx_timer.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-ehci.h
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/redirect.c
/qemu/hw/vfio/pci.c
/qemu/hw/virtio/virtio-rng.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/watchdog.c
/qemu/hw/xen/xen-common.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/hw/ide/internal.h
/qemu/include/hw/ppc/spapr_drc.h
/qemu/include/hw/ppc/spapr_xive.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/qemu/typedefs.h
/qemu/include/sysemu/runstate.h
/qemu/include/sysemu/sysemu.h
/qemu/memory.c
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/colo.c
/qemu/migration/global_state.c
/qemu/migration/migration.c
/qemu/migration/savevm.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/hmp.c
/qemu/monitor/misc.c
/qemu/monitor/qmp-cmds.c
/qemu/net/net.c
/qemu/os-posix.c
/qemu/os-win32.c
/qemu/qapi/qmp-dispatch.c
/qemu/qtest.c
/qemu/replay/replay-internal.c
/qemu/replay/replay.c
/qemu/stubs/change-state-handler.c
/qemu/stubs/runstate-check.c
/qemu/stubs/vm-stop.c
/qemu/target/alpha/sys_helper.c
/qemu/target/arm/psci.c
/qemu/target/hppa/op_helper.c
/qemu/target/i386/excp_helper.c
/qemu/target/i386/hax-all.c
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/kvm.c
/qemu/target/i386/sev.c
/qemu/target/i386/whpx-all.c
/qemu/target/lm32/op_helper.c
/qemu/target/mips/kvm.c
/qemu/target/s390x/helper.c
/qemu/target/s390x/kvm.c
/qemu/target/s390x/sigp.c
/qemu/target/sh4/helper.c
/qemu/target/sparc/int32_helper.c
/qemu/ui/cocoa.m
/qemu/ui/gtk.c
/qemu/ui/input.c
/qemu/ui/sdl2.c
/qemu/ui/spice-core.c
/qemu/vl.c
46517dd412-Aug-2019 Markus Armbruster <armbru@redhat.com>

Include sysemu/sysemu.h a lot less

In my "build everything" tree, changing sysemu/sysemu.h triggers a
recompile of some 5400 out of 6600 objects (not counting tests and
objects that don't depend on

Include sysemu/sysemu.h a lot less

In my "build everything" tree, changing sysemu/sysemu.h triggers a
recompile of some 5400 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h).

hw/qdev-core.h includes sysemu/sysemu.h since recent commit e965ffa70a
"qdev: add qdev_add_vm_change_state_handler()". This is a bad idea:
hw/qdev-core.h is widely included.

Move the declaration of qdev_add_vm_change_state_handler() to
sysemu/sysemu.h, and drop the problematic include from hw/qdev-core.h.

Touching sysemu/sysemu.h now recompiles some 1800 objects.
qemu/uuid.h also drops from 5400 to 1800. A few more headers show
smaller improvement: qemu/notify.h drops from 5600 to 5200,
qemu/timer.h from 5600 to 4500, and qapi/qapi-types-run-state.h from
5500 to 5000.

Cc: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20190812052359.30071-28-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

show more ...

d5938f2912-Aug-2019 Markus Armbruster <armbru@redhat.com>

Clean up inclusion of sysemu/sysemu.h

In my "build everything" tree, changing sysemu/sysemu.h triggers a
recompile of some 5400 out of 6600 objects (not counting tests and
objects that don't depend

Clean up inclusion of sysemu/sysemu.h

In my "build everything" tree, changing sysemu/sysemu.h triggers a
recompile of some 5400 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h).

Almost a third of its inclusions are actually superfluous. Delete
them. Downgrade two more to qapi/qapi-types-run-state.h, and move one
from char/serial.h to char/serial.c.

hw/semihosting/config.c, monitor/monitor.c, qdev-monitor.c, and
stubs/semihost.c define variables declared in sysemu/sysemu.h without
including it. The compiler is cool with that, but include it anyway.

This doesn't reduce actual use much, as it's still included into
widely included headers. The next commit will tackle that.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20190812052359.30071-27-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

show more ...


/qemu/accel/tcg/tcg-all.c
/qemu/backends/cryptodev-builtin.c
/qemu/backends/cryptodev-vhost-user.c
/qemu/backends/cryptodev.c
/qemu/block/nfs.c
/qemu/blockdev-nbd.c
/qemu/dump/win_dump.c
/qemu/exec.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/alpha/dp264.c
/qemu/hw/alpha/pci.c
/qemu/hw/alpha/typhoon.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/fsl-imx25.c
/qemu/hw/arm/fsl-imx31.c
/qemu/hw/arm/msf2-soc.c
/qemu/hw/arm/nrf51_soc.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/sysbus-fdt.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/z2.c
exynos4210_uart.c
imx_serial.c
serial.c
/qemu/hw/core/loader-fit.c
/qemu/hw/core/numa.c
/qemu/hw/core/platform-bus.c
/qemu/hw/core/qdev.c
/qemu/hw/display/ramfb-standalone.c
/qemu/hw/display/ramfb.c
/qemu/hw/dma/xlnx-zynq-devcfg.c
/qemu/hw/hppa/dino.c
/qemu/hw/hppa/pci.c
/qemu/hw/i2c/smbus_ich9.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/pc_sysfw.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/ioport.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/via.c
/qemu/hw/input/adb-kbd.c
/qemu/hw/intc/allwinner-a10-pic.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/xics_pnv.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/misc/armsse-cpuid.c
/qemu/hw/misc/armsse-mhu.c
/qemu/hw/misc/imx6_src.c
/qemu/hw/misc/imx7_gpr.c
/qemu/hw/misc/iotkit-sysinfo.c
/qemu/hw/misc/mips_cmgcr.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/sga.c
/qemu/hw/misc/zynq-xadc.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/ne2000.c
/qemu/hw/net/opencores_eth.c
/qemu/hw/net/pcnet.c
/qemu/hw/nios2/generic_nommu.c
/qemu/hw/pci-host/pam.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/e500plat.c
/qemu/hw/ppc/mpc8544ds.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/ppc405_uc.c
/qemu/hw/ppc/ppce500_spin.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_rng.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/riscv/boot.c
/qemu/hw/s390x/event-facility.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/sclpcpu.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sd/milkymist-memcard.c
/qemu/hw/semihosting/config.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/altera_timer.c
/qemu/hw/timer/exynos4210_rtc.c
/qemu/hw/tricore/tricore_testboard.c
/qemu/hw/usb/hcd-ehci.h
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/platform.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/xen/xen_pt_load_rom.c
/qemu/hw/xtensa/xtensa_memory.c
/qemu/include/hw/arm/allwinner-a10.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/serial.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/mem/pc-dimm.h
/qemu/include/hw/riscv/riscv_htif.h
/qemu/include/hw/timer/stm32f2xx_timer.h
/qemu/include/hw/virtio/virtio-bus.h
/qemu/include/hw/virtio/virtio-pmem.h
/qemu/include/hw/xen/xen-legacy-backend.h
/qemu/include/migration/global_state.h
/qemu/include/qemu/typedefs.h
/qemu/include/sysemu/hostmem.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/numa.h
/qemu/include/sysemu/replay.h
/qemu/include/sysemu/sysemu.h
/qemu/include/ui/spice-display.h
/qemu/monitor/monitor.c
/qemu/monitor/qmp-cmds.c
/qemu/net/tap-bsd.c
/qemu/net/tap-linux.c
/qemu/net/tap-solaris.c
/qemu/net/tap-win32.c
/qemu/qdev-monitor.c
/qemu/qemu-img.c
/qemu/qom/cpu.c
/qemu/replay/replay-audio.c
/qemu/replay/replay-char.c
/qemu/replay/replay-net.c
/qemu/replay/replay-snapshot.c
/qemu/stubs/replay.c
/qemu/stubs/semihost.c
/qemu/target/alpha/machine.c
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper.c
/qemu/target/arm/kvm32.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/m_helper.c
/qemu/target/arm/machine.c
/qemu/target/arm/monitor.c
/qemu/target/hppa/machine.c
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/x86_task.c
/qemu/target/i386/machine.c
/qemu/target/i386/whpx-all.c
/qemu/target/lm32/helper.c
/qemu/target/lm32/machine.c
/qemu/target/m68k/m68k-semi.c
/qemu/target/moxie/machine.c
/qemu/target/nios2/nios2-semi.c
/qemu/target/openrisc/machine.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/machine.c
/qemu/target/sparc/helper.c
/qemu/target/sparc/machine.c
/qemu/target/xtensa/translate.c
/qemu/target/xtensa/xtensa-semi.c
/qemu/tests/migration-test.c
/qemu/ui/input-keymap.c
/qemu/ui/input-legacy.c
/qemu/ui/input-linux.c
/qemu/ui/keymaps.c
/qemu/ui/sdl2-2d.c
/qemu/ui/sdl2-gl.c
/qemu/ui/sdl2-input.c
/qemu/ui/spice-display.c
/qemu/util/qemu-timer.c
a27bd6c712-Aug-2019 Markus Armbruster <armbru@redhat.com>

Include hw/qdev-properties.h less

In my "build everything" tree, changing hw/qdev-properties.h triggers
a recompile of some 2700 out of 6600 objects (not counting tests and
objects that don't depend

Include hw/qdev-properties.h less

In my "build everything" tree, changing hw/qdev-properties.h triggers
a recompile of some 2700 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h).

Many places including hw/qdev-properties.h (directly or via hw/qdev.h)
actually need only hw/qdev-core.h. Include hw/qdev-core.h there
instead.

hw/qdev.h is actually pointless: all it does is include hw/qdev-core.h
and hw/qdev-properties.h, which in turn includes hw/qdev-core.h.
Replace the remaining uses of hw/qdev.h by hw/qdev-properties.h.

While there, delete a few superfluous inclusions of hw/qdev-core.h.

Touching hw/qdev-properties.h now recompiles some 1200 objects.

Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: "Daniel P. Berrangé" <berrange@redhat.com>
Cc: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20190812052359.30071-22-armbru@redhat.com>

show more ...


/qemu/backends/vhost-user.c
/qemu/hw/9pfs/virtio-9p-device.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/digic.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/exynos4_boards.c
/qemu/hw/arm/fsl-imx25.c
/qemu/hw/arm/fsl-imx31.c
/qemu/hw/arm/fsl-imx6.c
/qemu/hw/arm/mcimx6ul-evk.c
/qemu/hw/arm/mcimx7d-sabre.c
/qemu/hw/arm/microbit.c
/qemu/hw/arm/msf2-som.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/netduino2.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/pxa2xx.c
/qemu/hw/arm/pxa2xx_gpio.c
/qemu/hw/arm/sabrelite.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/stm32f205_soc.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/virt.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/adlib.c
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/intel-hda.c
/qemu/hw/audio/intel-hda.h
/qemu/hw/audio/marvell_88w8618.c
/qemu/hw/audio/pl041.c
/qemu/hw/audio/sb16.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/virtio-blk.c
/qemu/hw/block/xen-block.c
bcm2835_aux.c
debugcon.c
digic-uart.c
escc.c
etraxfs_ser.c
exynos4210_uart.c
grlib_apbuart.c
imx_serial.c
ipoctal232.c
lm32_juart.c
lm32_uart.c
mcf_uart.c
milkymist-uart.c
nrf51_uart.c
parallel-isa.c
parallel.c
sclpconsole-lm.c
sclpconsole.c
serial-isa.c
serial-pci-multi.c
serial-pci.c
spapr_vty.c
stm32f2xx_usart.c
terminal3270.c
virtio-console.c
virtio-serial-bus.c
xilinx_uartlite.c
/qemu/hw/core/bus.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/or-irq.c
/qemu/hw/core/platform-bus.c
/qemu/hw/core/qdev-fw.c
/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/split-irq.c
/qemu/hw/core/vm-change-state-handler.c
/qemu/hw/cpu/a15mpcore.c
/qemu/hw/cpu/a9mpcore.c
/qemu/hw/cpu/arm11mpcore.c
/qemu/hw/cpu/cluster.c
/qemu/hw/cpu/realview_mpcore.c
/qemu/hw/display/ati.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/display/bochs-display.c
/qemu/hw/display/cg3.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/display/cirrus_vga_isa.c
/qemu/hw/display/g364fb.c
/qemu/hw/display/i2c-ddc.c
/qemu/hw/display/milkymist-vgafb.c
/qemu/hw/display/qxl.c
/qemu/hw/display/ramfb-standalone.c
/qemu/hw/display/sm501.c
/qemu/hw/display/tcx.c
/qemu/hw/display/vga-isa.c
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-pci.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/dma/i82374.c
/qemu/hw/dma/i8257.c
/qemu/hw/dma/pl080.c
/qemu/hw/dma/pl330.c
/qemu/hw/dma/pxa2xx_dma.c
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/dma/xlnx-zdma.c
/qemu/hw/gpio/imx_gpio.c
/qemu/hw/gpio/max7310.c
/qemu/hw/gpio/omap_gpio.c
/qemu/hw/hyperv/hyperv_testdev.c
/qemu/hw/i2c/core.c
/qemu/hw/i2c/omap_i2c.c
/qemu/hw/i2c/smbus_eeprom.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/kvm/ioapic.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/pc_sysfw.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/vmport.c
/qemu/hw/i386/x86-iommu.c
/qemu/hw/i386/xen/xen_pvdevice.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/isa.c
/qemu/hw/ide/macio.c
/qemu/hw/ide/mmio.c
/qemu/hw/ide/qdev.c
/qemu/hw/input/adb.c
/qemu/hw/input/milkymist-softusb.c
/qemu/hw/input/vhost-user-input.c
/qemu/hw/input/virtio-input-hid.c
/qemu/hw/input/virtio-input-host.c
/qemu/hw/input/virtio-input.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/arm_gic_common.c
/qemu/hw/intc/arm_gicv2m.c
/qemu/hw/intc/arm_gicv3_common.c
/qemu/hw/intc/arm_gicv3_its_kvm.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/etraxfs_pic.c
/qemu/hw/intc/exynos4210_combiner.c
/qemu/hw/intc/exynos4210_gic.c
/qemu/hw/intc/grlib_irqmp.c
/qemu/hw/intc/i8259_common.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/omap_intc.c
/qemu/hw/intc/ompic.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/openpic_kvm.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/realview_gic.c
/qemu/hw/intc/s390_flic.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xilinx_intc.c
/qemu/hw/intc/xlnx-pmu-iomod-intc.c
/qemu/hw/ipack/ipack.c
/qemu/hw/ipmi/ipmi.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/isa/isa-superio.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/pc87312.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/lm32/lm32.h
/qemu/hw/lm32/milkymist-hw.h
/qemu/hw/lm32/milkymist.c
/qemu/hw/mem/memory-device.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/microblaze/petalogix_ml605_mmu.c
/qemu/hw/microblaze/xlnx-zynqmp-pmu.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/cps.c
/qemu/hw/misc/a9scu.c
/qemu/hw/misc/applesmc.c
/qemu/hw/misc/arm11scu.c
/qemu/hw/misc/arm_l2x0.c
/qemu/hw/misc/arm_sysctl.c
/qemu/hw/misc/armsse-cpuid.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/misc/debugexit.c
/qemu/hw/misc/eccmemctl.c
/qemu/hw/misc/iotkit-sysctl.c
/qemu/hw/misc/iotkit-sysinfo.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/macio/cuda.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/mips_cmgcr.c
/qemu/hw/misc/mips_cpc.c
/qemu/hw/misc/mips_itu.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/mps2-fpgaio.c
/qemu/hw/misc/mps2-scc.c
/qemu/hw/misc/msf2-sysreg.c
/qemu/hw/misc/nrf51_rng.c
/qemu/hw/misc/pc-testdev.c
/qemu/hw/misc/pci-testdev.c
/qemu/hw/misc/pvpanic.c
/qemu/hw/misc/tz-mpc.c
/qemu/hw/misc/tz-msc.c
/qemu/hw/misc/tz-ppc.c
/qemu/hw/net/allwinner_emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/can/can_kvaser_pci.c
/qemu/hw/net/can/can_mioe3680_pci.c
/qemu/hw/net/can/can_pcm3680_pci.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e.c
/qemu/hw/net/eepro100.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/fsl_etsec/etsec.h
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/lance.c
/qemu/hw/net/mcf_fec.c
/qemu/hw/net/milkymist-minimac2.c
/qemu/hw/net/mipsnet.c
/qemu/hw/net/ne2000-isa.c
/qemu/hw/net/ne2000-pci.c
/qemu/hw/net/opencores_eth.c
/qemu/hw/net/pcnet-pci.c
/qemu/hw/net/pcnet.c
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/smc91c111.c
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/stellaris_enet.c
/qemu/hw/net/sungem.c
/qemu/hw/net/sunhme.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/net/xgmac.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/net/xilinx_ethlite.c
/qemu/hw/nios2/10m50_devboard.c
/qemu/hw/nvram/ds1225y.c
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/nvram/mac_nvram.c
/qemu/hw/nvram/nrf51_nvm.c
/qemu/hw/nvram/spapr_nvram.c
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/pci-bridge/gen_pcie_root_port.c
/qemu/hw/pci-bridge/pci_bridge_dev.c
/qemu/hw/pci-bridge/pci_expander_bridge.c
/qemu/hw/pci-bridge/pcie_pci_bridge.c
/qemu/hw/pci-bridge/pcie_root_port.c
/qemu/hw/pci-bridge/xio3130_downstream.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/gpex.c
/qemu/hw/pci-host/grackle.c
/qemu/hw/pci-host/piix.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci-host/sabre.c
/qemu/hw/pci-host/uninorth.c
/qemu/hw/pci-host/versatile.c
/qemu/hw/pci-host/xilinx-pcie.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie_port.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/pnv_core.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/ppc440_uc.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/rs6000_mc.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_iommu.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_rng.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/riscv/riscv_hart.c
/qemu/hw/riscv/sifive_clint.c
/qemu/hw/riscv/sifive_plic.c
/qemu/hw/riscv/sifive_prci.c
/qemu/hw/riscv/sifive_test.c
/qemu/hw/s390x/3270-ccw.c
/qemu/hw/s390x/ap-device.c
/qemu/hw/s390x/ccw-device.c
/qemu/hw/s390x/css-bridge.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/ipl.c
/qemu/hw/s390x/ipl.h
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/sclpquiesce.c
/qemu/hw/s390x/vhost-vsock-ccw.c
/qemu/hw/s390x/virtio-ccw-9p.c
/qemu/hw/s390x/virtio-ccw-balloon.c
/qemu/hw/s390x/virtio-ccw-blk.c
/qemu/hw/s390x/virtio-ccw-crypto.c
/qemu/hw/s390x/virtio-ccw-gpu.c
/qemu/hw/s390x/virtio-ccw-input.c
/qemu/hw/s390x/virtio-ccw-net.c
/qemu/hw/s390x/virtio-ccw-rng.c
/qemu/hw/s390x/virtio-ccw-scsi.c
/qemu/hw/s390x/virtio-ccw-serial.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/vhost-scsi.c
/qemu/hw/scsi/vhost-user-scsi.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/milkymist-memcard.c
/qemu/hw/sd/pxa2xx_mmci.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci-pci.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/sh4/r2d.c
/qemu/hw/sparc/leon3.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc/sun4m_iommu.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/timer/a9gtimer.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/altera_timer.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/grlib_gptimer.c
/qemu/hw/timer/lm32_timer.c
/qemu/hw/timer/m48t59-isa.c
/qemu/hw/timer/m48t59.c
/qemu/hw/timer/mc146818rtc.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/timer/mss-timer.c
/qemu/hw/timer/pl031.c
/qemu/hw/timer/pxa2xx_timer.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/timer/stm32f2xx_timer.c
/qemu/hw/timer/xilinx_timer.c
/qemu/hw/tpm/tpm_crb.c
/qemu/hw/tpm/tpm_tis.c
/qemu/hw/tpm/tpm_util.c
/qemu/hw/usb/bus.c
/qemu/hw/usb/ccid-card-emulated.c
/qemu/hw/usb/ccid-card-passthru.c
/qemu/hw/usb/ccid.h
/qemu/hw/usb/dev-audio.c
/qemu/hw/usb/dev-hid.c
/qemu/hw/usb/dev-hub.c
/qemu/hw/usb/dev-mtp.c
/qemu/hw/usb/dev-network.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/hcd-ehci-pci.c
/qemu/hw/usb/hcd-ehci-sysbus.c
/qemu/hw/usb/hcd-ohci-pci.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/redirect.c
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/platform.c
/qemu/hw/virtio/vhost-scsi-pci.c
/qemu/hw/virtio/vhost-user-blk-pci.c
/qemu/hw/virtio/vhost-user-scsi-pci.c
/qemu/hw/virtio/vhost-vsock-pci.c
/qemu/hw/virtio/vhost-vsock.c
/qemu/hw/virtio/virtio-9p-pci.c
/qemu/hw/virtio/virtio-balloon-pci.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-blk-pci.c
/qemu/hw/virtio/virtio-bus.c
/qemu/hw/virtio/virtio-crypto-pci.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-input-pci.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-net-pci.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio-rng.c
/qemu/hw/virtio/virtio-scsi-pci.c
/qemu/hw/virtio/virtio-serial-pci.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/hw/acpi/acpi_dev_interface.h
/qemu/include/hw/acpi/vmgenid.h
/qemu/include/hw/audio/pcspk.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/cadence_uart.h
/qemu/include/hw/char/cmsdk-apb-uart.h
/qemu/include/hw/char/lm32_juart.h
/qemu/include/hw/char/pl011.h
/qemu/include/hw/char/xilinx_uartlite.h
/qemu/include/hw/cpu/cluster.h
/qemu/include/hw/cpu/core.h
/qemu/include/hw/cris/etraxfs.h
/qemu/include/hw/display/milkymist_tmu2.h
/qemu/include/hw/i2c/i2c.h
/qemu/include/hw/i386/intel_iommu.h
/qemu/include/hw/input/adb.h
/qemu/include/hw/ipack/ipack.h
/qemu/include/hw/ipmi/ipmi.h
/qemu/include/hw/isa/isa.h
/qemu/include/hw/mem/memory-device.h
/qemu/include/hw/mem/pc-dimm.h
/qemu/include/hw/misc/auxbus.h
/qemu/include/hw/misc/unimp.h
/qemu/include/hw/misc/vmcoreinfo.h
/qemu/include/hw/net/ne2000-isa.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pcmcia.h
/qemu/include/hw/ppc/openpic.h
/qemu/include/hw/ppc/spapr_cpu_core.h
/qemu/include/hw/ppc/spapr_drc.h
/qemu/include/hw/ppc/xics.h
/qemu/include/hw/ppc/xive.h
/qemu/include/hw/s390x/event-facility.h
/qemu/include/hw/s390x/sclp.h
/qemu/include/hw/s390x/storage-attributes.h
/qemu/include/hw/s390x/storage-keys.h
/qemu/include/hw/s390x/tod.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/sd/sd.h
/qemu/include/hw/sparc/grlib.h
/qemu/include/hw/ssi/ssi.h
/qemu/include/hw/sysbus.h
/qemu/include/hw/timer/cmsdk-apb-timer.h
/qemu/include/hw/timer/i8254.h
/qemu/include/hw/usb.h
/qemu/include/hw/virtio/vhost-scsi-common.h
/qemu/include/hw/virtio/vhost-scsi.h
/qemu/include/hw/virtio/vhost-user-blk.h
/qemu/include/hw/virtio/vhost-user-scsi.h
/qemu/include/hw/virtio/virtio-bus.h
/qemu/include/hw/virtio/virtio-serial.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/hw/watchdog/wdt_diag288.h
/qemu/include/monitor/qdev.h
/qemu/include/sysemu/accel.h
/qemu/memory.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/net/net.c
/qemu/qdev-monitor.c
/qemu/qom/qom-qmp-cmds.c
/qemu/qtest.c
/qemu/target/tilegx/cpu.c
/qemu/tests/test-qdev-global-props.c
/qemu/vl.c
db72581512-Aug-2019 Markus Armbruster <armbru@redhat.com>

Include qemu/main-loop.h less

In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu

Include qemu/main-loop.h less

In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h). It includes block/aio.h,
which in turn includes qemu/event_notifier.h, qemu/notify.h,
qemu/processor.h, qemu/qsp.h, qemu/queue.h, qemu/thread-posix.h,
qemu/thread.h, qemu/timer.h, and a few more.

Include qemu/main-loop.h only where it's needed. Touching it now
recompiles only some 1700 objects. For block/aio.h and
qemu/event_notifier.h, these numbers drop from 5600 to 2800. For the
others, they shrink only slightly.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-21-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>

show more ...


/qemu/accel/kvm/kvm-all.c
/qemu/block.c
/qemu/block/block-backend.c
/qemu/block/create.c
/qemu/block/io.c
/qemu/block/nbd.c
/qemu/block/nfs.c
/qemu/block/nvme.c
/qemu/block/qcow2.c
/qemu/block/qed.c
/qemu/block/sheepdog.c
/qemu/block/throttle-groups.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/chardev/baum.c
/qemu/chardev/char-pipe.c
/qemu/chardev/char-win-stdio.c
/qemu/chardev/char-win.c
/qemu/dump/dump.c
/qemu/fsdev/qemu-fsdev-throttle.c
/qemu/fsdev/qemu-fsdev-throttle.h
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/codir.c
/qemu/hw/9pfs/cofile.c
/qemu/hw/9pfs/cofs.c
/qemu/hw/9pfs/coth.c
/qemu/hw/9pfs/coth.h
/qemu/hw/9pfs/coxattr.c
/qemu/hw/9pfs/xen-9p-backend.c
/qemu/hw/arm/omap1.c
/qemu/hw/block/dataplane/virtio-blk.c
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/fdc.c
/qemu/hw/block/xen-block.c
virtio-serial-bus.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/display/qxl.c
/qemu/hw/dma/etraxfs_dma.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/core.c
/qemu/hw/ide/qdev.c
/qemu/hw/intc/s390_flic.c
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/mcf5208.c
/qemu/hw/misc/imx6_src.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/vhost_net.c
/qemu/hw/net/virtio-net.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc440_uc.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_rng.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/vhost-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/altera_timer.c
/qemu/hw/timer/etraxfs_timer.c
/qemu/hw/timer/exynos4210_rtc.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/xen-usb.c
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/platform.c
/qemu/hw/virtio/vhost-backend.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/virtio-crypto.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio.c
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xen/xen_pvdev.c
/qemu/include/block/block_int.h
/qemu/include/chardev/char-fe.h
/qemu/include/chardev/char-io.h
/qemu/include/chardev/char.h
/qemu/include/exec/cpu-defs.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/xen/xen_common.h
/qemu/include/net/can_emu.h
/qemu/include/net/filter.h
/qemu/include/qemu/range.h
/qemu/include/qom/object.h
/qemu/include/sysemu/cryptodev.h
/qemu/include/sysemu/rng.h
/qemu/include/sysemu/sysemu.h
/qemu/linux-user/elfload.c
/qemu/linux-user/main.c
/qemu/linux-user/qemu.h
/qemu/linux-user/syscall.c
/qemu/memory.c
/qemu/migration/block.c
/qemu/migration/colo.c
/qemu/migration/migration.c
/qemu/migration/savevm.c
/qemu/nbd/client.c
/qemu/nbd/nbd-internal.h
/qemu/nbd/server.c
/qemu/net/can/can_socketcan.c
/qemu/net/netmap.c
/qemu/net/tap-win32.c
/qemu/net/tap.c
/qemu/qapi/qapi-dealloc-visitor.c
/qemu/qemu-img.c
/qemu/qom/cpu.c
/qemu/replay/replay-internal.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper.c
/qemu/target/arm/kvm.c
/qemu/target/arm/kvm64.c
/qemu/target/arm/m_helper.c
/qemu/target/arm/psci.c
/qemu/target/i386/kvm.c
/qemu/target/i386/whpx-all.c
/qemu/target/lm32/op_helper.c
/qemu/target/mips/kvm.c
/qemu/target/ppc/int_helper.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/machine.c
/qemu/target/ppc/mem_helper.c
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/translate.c
/qemu/target/s390x/kvm.c
/qemu/tcg/tcg-op-gvec.c
/qemu/tests/test-bdrv-drain.c
/qemu/tests/test-bdrv-graph-mod.c
/qemu/tests/test-block-backend.c
/qemu/tests/test-block-iothread.c
/qemu/tests/test-image-locking.c
/qemu/tests/test-replication.c
/qemu/tests/test-throttle.c
/qemu/ui/cocoa.m
/qemu/ui/input-linux.c
/qemu/ui/kbd-state.c
/qemu/ui/spice-core.c
/qemu/ui/spice-display.c
/qemu/ui/vnc-auth-sasl.h
/qemu/ui/vnc.c
/qemu/util/oslib-posix.c
/qemu/util/vfio-helpers.c
650d103d12-Aug-2019 Markus Armbruster <armbru@redhat.com>

Include hw/hw.h exactly where needed

In my "build everything" tree, changing hw/hw.h triggers a recompile
of some 2600 out of 6600 objects (not counting tests and objects that
don't depend on qemu/o

Include hw/hw.h exactly where needed

In my "build everything" tree, changing hw/hw.h triggers a recompile
of some 2600 out of 6600 objects (not counting tests and objects that
don't depend on qemu/osdep.h).

The previous commits have left only the declaration of hw_error() in
hw/hw.h. This permits dropping most of its inclusions. Touching it
now recompiles less than 200 objects.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20190812052359.30071-19-armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>

show more ...


/qemu/accel/kvm/kvm-all.c
/qemu/audio/audio.c
/qemu/audio/spiceaudio.c
/qemu/audio/wavcapture.c
/qemu/cpus.c
/qemu/device-hotplug.c
/qemu/exec.c
/qemu/hw/9pfs/xen-9p-backend.c
/qemu/hw/acpi/core.c
/qemu/hw/acpi/cpu_hotplug.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/adc/stm32f2xx_adc.c
/qemu/hw/alpha/dp264.c
/qemu/hw/alpha/typhoon.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/collie.c
/qemu/hw/arm/gumstix.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/mainstone.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/omap_sx1.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/pxa2xx_pic.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/tosa.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/adlib.c
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/intel-hda.c
/qemu/hw/audio/lm4549.h
/qemu/hw/audio/marvell_88w8618.c
/qemu/hw/audio/milkymist-ac97.c
/qemu/hw/audio/pcspk.c
/qemu/hw/audio/sb16.c
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/ecc.c
/qemu/hw/block/fdc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/nvme.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/tc58128.c
/qemu/hw/block/xen-block.c
debugcon.c
digic-uart.c
escc.c
lm32_juart.c
lm32_uart.c
mcf_uart.c
milkymist-uart.c
omap_uart.c
parallel.c
sh_serial.c
xen_console.c
xilinx_uartlite.c
/qemu/hw/core/empty_slot.c
/qemu/hw/core/null-machine.c
/qemu/hw/core/ptimer.c
/qemu/hw/cris/boot.c
/qemu/hw/display/ati.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/display/bochs-display.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/display/cirrus_vga_isa.c
/qemu/hw/display/edid-region.c
/qemu/hw/display/exynos4210_fimd.c
/qemu/hw/display/framebuffer.c
/qemu/hw/display/milkymist-tmu2.c
/qemu/hw/display/omap_lcdc.c
/qemu/hw/display/qxl.h
/qemu/hw/display/sm501.c
/qemu/hw/display/tc6393xb.c
/qemu/hw/display/vga-isa-mm.c
/qemu/hw/display/vga-isa.c
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vga.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/display/xenfb.c
/qemu/hw/dma/i8257.c
/qemu/hw/dma/pl080.c
/qemu/hw/dma/puv3_dma.c
/qemu/hw/dma/rc4030.c
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/gpio/max7310.c
/qemu/hw/gpio/omap_gpio.c
/qemu/hw/gpio/puv3_gpio.c
/qemu/hw/gpio/zaurus.c
/qemu/hw/hppa/dino.c
/qemu/hw/hppa/machine.c
/qemu/hw/i2c/bitbang_i2c.c
/qemu/hw/i2c/omap_i2c.c
/qemu/hw/i2c/pm_smbus.c
/qemu/hw/i2c/ppc4xx_i2c.c
/qemu/hw/i2c/smbus_eeprom.c
/qemu/hw/i2c/smbus_ich9.c
/qemu/hw/i2c/smbus_master.c
/qemu/hw/i2c/smbus_slave.c
/qemu/hw/i386/amd_iommu.h
/qemu/hw/i386/multiboot.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/pc_sysfw.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/vmport.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/i386/xen/xen_pvdevice.c
/qemu/hw/ide/ahci-allwinner.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/core.c
/qemu/hw/ide/ich.c
/qemu/hw/ide/ioport.c
/qemu/hw/ide/isa.c
/qemu/hw/ide/macio.c
/qemu/hw/ide/microdrive.c
/qemu/hw/ide/mmio.c
/qemu/hw/ide/pci.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/qdev.c
/qemu/hw/ide/via.c
/qemu/hw/input/hid.c
/qemu/hw/input/lm832x.c
/qemu/hw/input/milkymist-softusb.c
/qemu/hw/input/pckbd.c
/qemu/hw/input/ps2.c
/qemu/hw/input/stellaris_input.c
/qemu/hw/input/tsc2005.c
/qemu/hw/intc/etraxfs_pic.c
/qemu/hw/intc/exynos4210_combiner.c
/qemu/hw/intc/heathrow_pic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/lm32_pic.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/omap_intc.c
/qemu/hw/intc/ompic.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/openpic_kvm.c
/qemu/hw/intc/sh_intc.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xics_spapr.c
/qemu/hw/intc/xilinx_intc.c
/qemu/hw/ipmi/ipmi.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/isa/apm.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/lm32/lm32_boards.c
/qemu/hw/lm32/milkymist.c
/qemu/hw/m68k/an5206.c
/qemu/hw/microblaze/boot.h
/qemu/hw/microblaze/petalogix_ml605_mmu.c
/qemu/hw/microblaze/petalogix_s3adsp1800_mmu.c
/qemu/hw/mips/addr.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/gt64xxx_pci.c
/qemu/hw/mips/mips_fulong2e.c
/qemu/hw/mips/mips_int.c
/qemu/hw/mips/mips_jazz.c
/qemu/hw/mips/mips_malta.c
/qemu/hw/mips/mips_mipssim.c
/qemu/hw/mips/mips_r4k.c
/qemu/hw/misc/applesmc.c
/qemu/hw/misc/arm_integrator_debug.c
/qemu/hw/misc/arm_sysctl.c
/qemu/hw/misc/debugexit.c
/qemu/hw/misc/edu.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/macio/cuda.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/macio/mac_dbdma.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/milkymist-hpdmc.c
/qemu/hw/misc/milkymist-pfpu.c
/qemu/hw/misc/mips_cmgcr.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/mst_fpga.c
/qemu/hw/misc/omap_gpmc.c
/qemu/hw/misc/omap_l4.c
/qemu/hw/misc/omap_sdrc.c
/qemu/hw/misc/pc-testdev.c
/qemu/hw/misc/pca9552.c
/qemu/hw/misc/pci-testdev.c
/qemu/hw/misc/puv3_pm.c
/qemu/hw/misc/tmp105.c
/qemu/hw/misc/tmp421.c
/qemu/hw/misc/unimp.c
/qemu/hw/misc/zynq-xadc.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/moxie/moxiesim.c
/qemu/hw/net/can/can_kvaser_pci.c
/qemu/hw/net/can/can_mioe3680_pci.c
/qemu/hw/net/can/can_pcm3680_pci.c
/qemu/hw/net/can/can_sja1000.c
/qemu/hw/net/can/can_sja1000.h
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/e1000x_common.c
/qemu/hw/net/eepro100.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/milkymist-minimac2.c
/qemu/hw/net/mipsnet.c
/qemu/hw/net/ne2000.c
/qemu/hw/net/ne2000.h
/qemu/hw/net/opencores_eth.c
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rocker/rocker_desc.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/sunhme.c
/qemu/hw/net/xen_nic.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/net/xilinx_ethlite.c
/qemu/hw/nios2/10m50_devboard.c
/qemu/hw/nios2/boot.h
/qemu/hw/nios2/generic_nommu.c
/qemu/hw/nvram/chrp_nvram.c
/qemu/hw/nvram/eeprom93xx.c
/qemu/hw/nvram/eeprom_at24c.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/nvram/mac_nvram.c
/qemu/hw/openrisc/cputimer.c
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/openrisc/pic_cpu.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/gpex.c
/qemu/hw/pci-host/piix.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci-host/uninorth.c
/qemu/hw/pci/msix.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie_host.c
/qemu/hw/pcmcia/pcmcia.c
/qemu/hw/pcmcia/pxa2xx.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/mpc8544_guts.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_occ.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/ppc.c
/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/ppc440_uc.c
/qemu/hw/ppc/ppc4xx_devs.c
/qemu/hw/ppc/ppc4xx_pci.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_iommu.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/rdma/vmw/pvrdma_cmd.c
/qemu/hw/rdma/vmw/pvrdma_main.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_prci.c
/qemu/hw/riscv/sifive_test.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/sifive_uart.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/lsi53c895a.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-bus.c
/qemu/hw/scsi/spapr_vscsi.c
/qemu/hw/sd/milkymist-memcard.c
/qemu/hw/sd/omap_mmc.c
/qemu/hw/sd/pxa2xx_mmci.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci-pci.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sh4/r2d.c
/qemu/hw/sh4/sh7750.c
/qemu/hw/sh4/sh7750_regnames.c
/qemu/hw/sh4/shix.c
/qemu/hw/sparc/leon3.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/timer/a9gtimer.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_rtc.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/i8254.c
/qemu/hw/timer/i8254_common.c
/qemu/hw/timer/lm32_timer.c
/qemu/hw/timer/m48t59.c
/qemu/hw/timer/mc146818rtc.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/timer/mips_gictimer.c
/qemu/hw/timer/omap_gptimer.c
/qemu/hw/timer/omap_synctimer.c
/qemu/hw/timer/pxa2xx_timer.c
/qemu/hw/timer/sun4v-rtc.c
/qemu/hw/timer/twl92230.c
/qemu/hw/tpm/tpm_emulator.c
/qemu/hw/tpm/tpm_passthrough.c
/qemu/hw/tricore/tricore_testboard.c
/qemu/hw/usb/bus.c
/qemu/hw/usb/dev-audio.c
/qemu/hw/usb/dev-hid.c
/qemu/hw/usb/dev-wacom.c
/qemu/hw/usb/hcd-ehci.h
/qemu/hw/usb/hcd-ohci-pci.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/libhw.c
/qemu/hw/usb/tusb6010.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/vfio/pci.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-bus.c
/qemu/hw/watchdog/wdt_i6300esb.c
/qemu/hw/watchdog/wdt_ib700.c
/qemu/hw/xen/xen-bus-helper.c
/qemu/hw/xen/xen-bus.c
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xen/xen_pt_load_rom.c
/qemu/hw/xenpv/xen_machine_pv.c
/qemu/hw/xtensa/mx_pic.c
/qemu/hw/xtensa/pic_cpu.c
/qemu/hw/xtensa/xtensa_memory.h
/qemu/include/hw/arm/boot.h
/qemu/include/hw/arm/fsl-imx7.h
/qemu/include/hw/arm/soc_dma.h
/qemu/include/hw/audio/pcspk.h
/qemu/include/hw/audio/wm8750.h
/qemu/include/hw/block/flash.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/parallel.h
/qemu/include/hw/char/serial.h
/qemu/include/hw/char/stm32f2xx_usart.h
/qemu/include/hw/display/edid.h
/qemu/include/hw/display/milkymist_tmu2.h
/qemu/include/hw/display/tc6393xb.h
/qemu/include/hw/display/vga.h
/qemu/include/hw/dma/i8257.h
/qemu/include/hw/hw.h
/qemu/include/hw/i2c/pm_smbus.h
/qemu/include/hw/i2c/smbus_eeprom.h
/qemu/include/hw/i386/ich9.h
/qemu/include/hw/i386/ioapic_internal.h
/qemu/include/hw/input/i8042.h
/qemu/include/hw/isa/apm.h
/qemu/include/hw/isa/i8259_internal.h
/qemu/include/hw/misc/auxbus.h
/qemu/include/hw/misc/stm32f2xx_syscfg.h
/qemu/include/hw/net/ne2000-isa.h
/qemu/include/hw/pci-host/designware.h
/qemu/include/hw/pci-host/gpex.h
/qemu/include/hw/pci-host/q35.h
/qemu/include/hw/pci-host/uninorth.h
/qemu/include/hw/pci-host/xilinx-pcie.h
/qemu/include/hw/pci/pcie.h
/qemu/include/hw/pci/pcie_aer.h
/qemu/include/hw/ppc/xics.h
/qemu/include/hw/qdev.h
/qemu/include/hw/riscv/riscv_htif.h
/qemu/include/hw/ssi/stm32f2xx_spi.h
/qemu/include/hw/timer/aspeed_rtc.h
/qemu/include/hw/timer/i8254.h
/qemu/include/hw/timer/i8254_internal.h
/qemu/include/hw/usb.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/hw/xen/xen_common.h
/qemu/include/sysemu/dma.h
/qemu/include/sysemu/hax.h
/qemu/include/sysemu/hvf.h
/qemu/migration/colo.c
/qemu/migration/migration.h
/qemu/migration/postcopy-ram.c
/qemu/migration/rdma.c
/qemu/monitor/misc.c
/qemu/target/alpha/machine.c
/qemu/target/arm/machine.c
/qemu/target/cris/machine.c
/qemu/target/hppa/machine.c
/qemu/target/i386/cpu.c
/qemu/target/i386/machine.c
/qemu/target/lm32/machine.c
/qemu/target/mips/machine.c
/qemu/target/moxie/machine.c
/qemu/target/openrisc/machine.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/machine.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/kvm.c
/qemu/target/s390x/machine.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/sparc/machine.c
/qemu/ui/spice-core.c
/qemu/vl.c
d645427012-Aug-2019 Markus Armbruster <armbru@redhat.com>

Include migration/vmstate.h less

In my "build everything" tree, changing migration/vmstate.h triggers a
recompile of some 2700 out of 6600 objects (not counting tests and
objects that don't depend o

Include migration/vmstate.h less

In my "build everything" tree, changing migration/vmstate.h triggers a
recompile of some 2700 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h).

hw/hw.h supposedly includes it for convenience. Several other headers
include it just to get VMStateDescription. The previous commit made
that unnecessary.

Include migration/vmstate.h only where it's still needed. Touching it
now recompiles only some 1600 objects.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20190812052359.30071-16-armbru@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>

show more ...


/qemu/accel/stubs/tcg-stub.c
/qemu/audio/audio.c
/qemu/balloon.c
/qemu/cpus.c
/qemu/hw/acpi/cpu.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/memory_hotplug.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/tco.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/adc/stm32f2xx_adc.c
/qemu/hw/arm/armsse.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/pxa2xx.c
/qemu/hw/arm/pxa2xx_gpio.c
/qemu/hw/arm/pxa2xx_pic.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/versatilepb.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/ac97.c
/qemu/hw/audio/cs4231.c
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/es1370.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/hda-codec.c
/qemu/hw/audio/intel-hda.c
/qemu/hw/audio/lm4549.c
/qemu/hw/audio/marvell_88w8618.c
/qemu/hw/audio/milkymist-ac97.c
/qemu/hw/audio/pcspk.c
/qemu/hw/audio/pl041.c
/qemu/hw/audio/sb16.c
/qemu/hw/audio/wm8750.c
/qemu/hw/block/ecc.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
bcm2835_aux.c
cadence_uart.c
cmsdk-apb-uart.c
digic-uart.c
escc.c
exynos4210_uart.c
imx_serial.c
ipoctal232.c
lm32_juart.c
lm32_uart.c
milkymist-uart.c
nrf51_uart.c
parallel.c
pl011.c
sclpconsole-lm.c
sclpconsole.c
serial-isa.c
serial-pci-multi.c
serial-pci.c
serial.c
spapr_vty.c
/qemu/hw/core/loader.c
/qemu/hw/core/numa.c
/qemu/hw/core/or-irq.c
/qemu/hw/core/ptimer.c
/qemu/hw/core/qdev.c
/qemu/hw/display/ads7846.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/display/bochs-display.c
/qemu/hw/display/cg3.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/display/dpcd.c
/qemu/hw/display/exynos4210_fimd.c
/qemu/hw/display/g364fb.c
/qemu/hw/display/i2c-ddc.c
/qemu/hw/display/jazz_led.c
/qemu/hw/display/milkymist-tmu2.c
/qemu/hw/display/milkymist-vgafb.c
/qemu/hw/display/pl110.c
/qemu/hw/display/pxa2xx_lcd.c
/qemu/hw/display/qxl.c
/qemu/hw/display/sii9022.c
/qemu/hw/display/sm501.c
/qemu/hw/display/ssd0303.c
/qemu/hw/display/ssd0323.c
/qemu/hw/display/tcx.c
/qemu/hw/display/vga-isa-mm.c
/qemu/hw/display/vga-pci.c
/qemu/hw/display/vga.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/dma/bcm2835_dma.c
/qemu/hw/dma/i82374.c
/qemu/hw/dma/i8257.c
/qemu/hw/dma/pl080.c
/qemu/hw/dma/pl330.c
/qemu/hw/dma/pxa2xx_dma.c
/qemu/hw/dma/rc4030.c
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/dma/xlnx-zdma.c
/qemu/hw/dma/xlnx-zynq-devcfg.c
/qemu/hw/dma/xlnx_dpdma.c
/qemu/hw/gpio/bcm2835_gpio.c
/qemu/hw/gpio/gpio_key.c
/qemu/hw/gpio/imx_gpio.c
/qemu/hw/gpio/max7310.c
/qemu/hw/gpio/mpc8xxx.c
/qemu/hw/gpio/nrf51_gpio.c
/qemu/hw/gpio/pl061.c
/qemu/hw/gpio/zaurus.c
/qemu/hw/hppa/dino.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/core.c
/qemu/hw/i2c/exynos4210_i2c.c
/qemu/hw/i2c/imx_i2c.c
/qemu/hw/i2c/microbit_i2c.c
/qemu/hw/i2c/mpc_i2c.c
/qemu/hw/i2c/pm_smbus.c
/qemu/hw/i2c/smbus_eeprom.c
/qemu/hw/i2c/smbus_ich9.c
/qemu/hw/i2c/smbus_slave.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/amd_iommu.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/kvmvapic.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/i386/xen/xen_pvdevice.c
/qemu/hw/ide/ahci-allwinner.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/cmd646.c
/qemu/hw/ide/core.c
/qemu/hw/ide/ich.c
/qemu/hw/ide/isa.c
/qemu/hw/ide/macio.c
/qemu/hw/ide/microdrive.c
/qemu/hw/ide/mmio.c
/qemu/hw/ide/pci.c
/qemu/hw/ide/piix.c
/qemu/hw/ide/via.c
/qemu/hw/input/adb-kbd.c
/qemu/hw/input/adb-mouse.c
/qemu/hw/input/adb.c
/qemu/hw/input/hid.c
/qemu/hw/input/lm832x.c
/qemu/hw/input/milkymist-softusb.c
/qemu/hw/input/pckbd.c
/qemu/hw/input/pl050.c
/qemu/hw/input/ps2.c
/qemu/hw/input/pxa2xx_keypad.c
/qemu/hw/input/stellaris_input.c
/qemu/hw/input/tsc2005.c
/qemu/hw/input/tsc210x.c
/qemu/hw/intc/allwinner-a10-pic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/arm_gic_common.c
/qemu/hw/intc/arm_gicv3_common.c
/qemu/hw/intc/arm_gicv3_its_common.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/aspeed_vic.c
/qemu/hw/intc/bcm2835_ic.c
/qemu/hw/intc/bcm2836_control.c
/qemu/hw/intc/exynos4210_combiner.c
/qemu/hw/intc/exynos4210_gic.c
/qemu/hw/intc/heathrow_pic.c
/qemu/hw/intc/i8259_common.c
/qemu/hw/intc/imx_avic.c
/qemu/hw/intc/imx_gpcv2.c
/qemu/hw/intc/ioapic_common.c
/qemu/hw/intc/lm32_pic.c
/qemu/hw/intc/ompic.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/pl190.c
/qemu/hw/intc/slavio_intctl.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xive.c
/qemu/hw/intc/xlnx-pmu-iomod-intc.c
/qemu/hw/intc/xlnx-zynqmp-ipi.c
/qemu/hw/ipack/ipack.c
/qemu/hw/ipack/tpci200.c
/qemu/hw/ipmi/ipmi_bmc_extern.c
/qemu/hw/ipmi/ipmi_bmc_sim.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/isa/apm.c
/qemu/hw/isa/i82378.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/pc87312.c
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/mips/gt64xxx_pci.c
/qemu/hw/misc/a9scu.c
/qemu/hw/misc/arm_l2x0.c
/qemu/hw/misc/arm_sysctl.c
/qemu/hw/misc/armsse-mhu.c
/qemu/hw/misc/aspeed_scu.c
/qemu/hw/misc/aspeed_sdmc.c
/qemu/hw/misc/aspeed_xdma.c
/qemu/hw/misc/bcm2835_mbox.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/misc/bcm2835_rng.c
/qemu/hw/misc/eccmemctl.c
/qemu/hw/misc/exynos4210_clk.c
/qemu/hw/misc/exynos4210_pmu.c
/qemu/hw/misc/exynos4210_rng.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/imx7_ccm.c
/qemu/hw/misc/iotkit-secctl.c
/qemu/hw/misc/iotkit-sysctl.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/macio/cuda.c
/qemu/hw/misc/macio/gpio.c
/qemu/hw/misc/macio/mac_dbdma.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/max111x.c
/qemu/hw/misc/milkymist-hpdmc.c
/qemu/hw/misc/milkymist-pfpu.c
/qemu/hw/misc/mips_cmgcr.c
/qemu/hw/misc/mips_cpc.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/mps2-fpgaio.c
/qemu/hw/misc/mps2-scc.c
/qemu/hw/misc/msf2-sysreg.c
/qemu/hw/misc/mst_fpga.c
/qemu/hw/misc/nrf51_rng.c
/qemu/hw/misc/pca9552.c
/qemu/hw/misc/slavio_misc.c
/qemu/hw/misc/tmp105.c
/qemu/hw/misc/tmp421.c
/qemu/hw/misc/tz-mpc.c
/qemu/hw/misc/tz-msc.c
/qemu/hw/misc/tz-ppc.c
/qemu/hw/misc/vmcoreinfo.c
/qemu/hw/misc/zynq-xadc.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/net/allwinner_emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/can/can_kvaser_pci.c
/qemu/hw/net/can/can_mioe3680_pci.c
/qemu/hw/net/can/can_pcm3680_pci.c
/qemu/hw/net/can/can_sja1000.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e.c
/qemu/hw/net/eepro100.c
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/lance.c
/qemu/hw/net/milkymist-minimac2.c
/qemu/hw/net/mipsnet.c
/qemu/hw/net/ne2000-isa.c
/qemu/hw/net/ne2000-pci.c
/qemu/hw/net/ne2000.c
/qemu/hw/net/pcnet-pci.c
/qemu/hw/net/pcnet.c
/qemu/hw/net/rocker/rocker.c
/qemu/hw/net/rtl8139.c
/qemu/hw/net/smc91c111.c
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/stellaris_enet.c
/qemu/hw/net/sungem.c
/qemu/hw/net/sunhme.c
/qemu/hw/net/vmxnet3.c
/qemu/hw/net/xgmac.c
/qemu/hw/nvram/ds1225y.c
/qemu/hw/nvram/eeprom93xx.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/nvram/mac_nvram.c
/qemu/hw/nvram/nrf51_nvm.c
/qemu/hw/nvram/spapr_nvram.c
/qemu/hw/openrisc/cputimer.c
/qemu/hw/pci-bridge/gen_pcie_root_port.c
/qemu/hw/pci-bridge/i82801b11.c
/qemu/hw/pci-bridge/ioh3420.c
/qemu/hw/pci-bridge/xio3130_downstream.c
/qemu/hw/pci-bridge/xio3130_upstream.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/gpex.c
/qemu/hw/pci-host/piix.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci-host/versatile.c
/qemu/hw/pci/msix.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie_aer.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc4xx_pci.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/rs6000_mc.c
/qemu/hw/ppc/spapr_caps.c
/qemu/hw/ppc/spapr_cpu_core.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_ovec.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_rtc.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/riscv/sifive_gpio.c
/qemu/hw/s390x/event-facility.c
/qemu/hw/s390x/sclpquiesce.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/spapr_vscsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/bcm2835_sdhost.c
/qemu/hw/sd/milkymist-memcard.c
/qemu/hw/sd/pl181.c
/qemu/hw/sd/pxa2xx_mmci.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/smbios/smbios.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc/sun4m_iommu.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/ssi/mss-spi.c
/qemu/hw/ssi/pl022.c
/qemu/hw/ssi/ssi.c
/qemu/hw/ssi/stm32f2xx_spi.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/timer/a9gtimer.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/timer/armv7m_systick.c
/qemu/hw/timer/aspeed_rtc.c
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/timer/cadence_ttc.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/timer/digic-timer.c
/qemu/hw/timer/ds1338.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/exynos4210_rtc.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/i8254_common.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/timer/imx_gpt.c
/qemu/hw/timer/lm32_timer.c
/qemu/hw/timer/m48t59.c
/qemu/hw/timer/mc146818rtc.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/timer/mss-timer.c
/qemu/hw/timer/nrf51_timer.c
/qemu/hw/timer/pl031.c
/qemu/hw/timer/pxa2xx_timer.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/timer/stm32f2xx_timer.c
/qemu/hw/timer/twl92230.c
/qemu/hw/timer/xlnx-zynqmp-rtc.c
/qemu/hw/tpm/tpm_emulator.c
/qemu/hw/tpm/tpm_tis.c
/qemu/hw/usb/bus.c
/qemu/hw/usb/ccid-card-passthru.c
/qemu/hw/usb/dev-audio.c
/qemu/hw/usb/dev-bluetooth.c
/qemu/hw/usb/dev-hid.c
/qemu/hw/usb/dev-hub.c
/qemu/hw/usb/dev-mtp.c
/qemu/hw/usb/dev-network.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/dev-wacom.c
/qemu/hw/usb/hcd-ehci-pci.c
/qemu/hw/usb/hcd-ehci-sysbus.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-ohci-pci.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/redirect.c
/qemu/hw/vfio/amd-xgbe.c
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/calxeda-xgmac.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/platform.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/watchdog/wdt_aspeed.c
/qemu/hw/watchdog/wdt_diag288.c
/qemu/hw/watchdog/wdt_i6300esb.c
/qemu/hw/watchdog/wdt_ib700.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/hw/acpi/tco.h
/qemu/include/hw/block/flash.h
/qemu/include/hw/hw.h
/qemu/include/hw/input/hid.h
/qemu/include/hw/pci/shpc.h
/qemu/include/hw/ppc/ppc4xx.h
/qemu/include/hw/ppc/spapr_ovec.h
/qemu/include/hw/ptimer.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/virtio/virtio.h
/qemu/include/migration/cpu.h
/qemu/include/migration/misc.h
/qemu/include/migration/vmstate.h
/qemu/include/net/net.h
/qemu/include/qemu/fifo8.h
/qemu/include/qemu/typedefs.h
/qemu/include/qom/cpu.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/memory_mapping.h
/qemu/migration/migration.h
/qemu/migration/qemu-file-channel.c
/qemu/migration/qemu-file.h
/qemu/migration/savevm.c
/qemu/migration/vmstate-types.c
/qemu/qom/cpu.c
/qemu/target/alpha/cpu.h
/qemu/target/arm/cpu.h
/qemu/target/cris/cpu.h
/qemu/target/hppa/cpu.h
/qemu/target/i386/cpu.h
/qemu/target/lm32/cpu.h
/qemu/target/mips/internal.h
/qemu/target/openrisc/cpu.h
/qemu/target/ppc/cpu-qom.h
/qemu/target/ppc/cpu.h
/qemu/target/s390x/cpu.h
/qemu/target/s390x/machine.c
/qemu/target/sparc/cpu.h
/qemu/tcg/optimize.c
/qemu/tcg/tcg-common.c
/qemu/tcg/tcg.c
/qemu/util/fifo8.c
64552b6b12-Aug-2019 Markus Armbruster <armbru@redhat.com>

Include hw/irq.h a lot less

In my "build everything" tree, changing hw/irq.h triggers a recompile
of some 5400 out of 6600 objects (not counting tests and objects that
don't depend on qemu/osdep.h).

Include hw/irq.h a lot less

In my "build everything" tree, changing hw/irq.h triggers a recompile
of some 5400 out of 6600 objects (not counting tests and objects that
don't depend on qemu/osdep.h).

hw/hw.h supposedly includes it for convenience. Several other headers
include it just to get qemu_irq and.or qemu_irq_handler.

Move the qemu_irq and qemu_irq_handler typedefs from hw/irq.h to
qemu/typedefs.h, and then include hw/irq.h only where it's still
needed. Touching it now recompiles only some 500 objects.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190812052359.30071-13-armbru@redhat.com>

show more ...


/qemu/hw/acpi/core.c
/qemu/hw/acpi/piix4.c
/qemu/hw/alpha/alpha_sys.h
/qemu/hw/alpha/typhoon.c
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/armsse.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/exynos4210.c
/qemu/hw/arm/exynos4_boards.c
/qemu/hw/arm/integratorcp.c
/qemu/hw/arm/msf2-soc.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/pxa2xx.c
/qemu/hw/arm/pxa2xx_gpio.c
/qemu/hw/arm/realview.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/tosa.c
/qemu/hw/arm/versatilepb.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/cs4231a.c
/qemu/hw/audio/gus.c
/qemu/hw/audio/marvell_88w8618.c
/qemu/hw/audio/milkymist-ac97.c
/qemu/hw/audio/pl041.c
/qemu/hw/audio/sb16.c
/qemu/hw/block/fdc.c
bcm2835_aux.c
cadence_uart.c
cmsdk-apb-uart.c
escc.c
etraxfs_ser.c
exynos4210_uart.c
grlib_apbuart.c
imx_serial.c
ipoctal232.c
lm32_uart.c
mcf_uart.c
milkymist-uart.c
nrf51_uart.c
parallel.c
pl011.c
serial-pci-multi.c
serial-pci.c
serial.c
sh_serial.c
spapr_vty.c
stm32f2xx_usart.c
xilinx_uartlite.c
/qemu/hw/core/or-irq.c
/qemu/hw/core/qdev.c
/qemu/hw/core/split-irq.c
/qemu/hw/cpu/a15mpcore.c
/qemu/hw/cpu/a9mpcore.c
/qemu/hw/cpu/arm11mpcore.c
/qemu/hw/cpu/realview_mpcore.c
/qemu/hw/display/ads7846.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/display/cg3.c
/qemu/hw/display/exynos4210_fimd.c
/qemu/hw/display/g364fb.c
/qemu/hw/display/milkymist-tmu2.c
/qemu/hw/display/omap_dss.c
/qemu/hw/display/omap_lcdc.c
/qemu/hw/display/pl110.c
/qemu/hw/display/pxa2xx_lcd.c
/qemu/hw/display/tc6393xb.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/dma/bcm2835_dma.c
/qemu/hw/dma/etraxfs_dma.c
/qemu/hw/dma/pl080.c
/qemu/hw/dma/pl330.c
/qemu/hw/dma/pxa2xx_dma.c
/qemu/hw/dma/rc4030.c
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/dma/xlnx-zdma.c
/qemu/hw/dma/xlnx-zynq-devcfg.c
/qemu/hw/dma/xlnx_dpdma.c
/qemu/hw/gpio/bcm2835_gpio.c
/qemu/hw/gpio/gpio_key.c
/qemu/hw/gpio/imx_gpio.c
/qemu/hw/gpio/max7310.c
/qemu/hw/gpio/mpc8xxx.c
/qemu/hw/gpio/nrf51_gpio.c
/qemu/hw/gpio/omap_gpio.c
/qemu/hw/gpio/pl061.c
/qemu/hw/gpio/zaurus.c
/qemu/hw/hppa/dino.c
/qemu/hw/hppa/hppa_sys.h
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/bitbang_i2c.c
/qemu/hw/i2c/exynos4210_i2c.c
/qemu/hw/i2c/imx_i2c.c
/qemu/hw/i2c/mpc_i2c.c
/qemu/hw/i2c/omap_i2c.c
/qemu/hw/i2c/ppc4xx_i2c.c
/qemu/hw/i386/kvm/i8259.c
/qemu/hw/i386/kvm/ioapic.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/ide/ahci_internal.h
/qemu/hw/input/lm832x.c
/qemu/hw/input/milkymist-softusb.c
/qemu/hw/input/pckbd.c
/qemu/hw/input/pl050.c
/qemu/hw/input/pxa2xx_keypad.c
/qemu/hw/input/stellaris_input.c
/qemu/hw/input/tsc2005.c
/qemu/hw/input/tsc210x.c
/qemu/hw/intc/allwinner-a10-pic.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/intc/arm_gicv2m.c
/qemu/hw/intc/arm_gicv3_cpuif.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/aspeed_vic.c
/qemu/hw/intc/bcm2835_ic.c
/qemu/hw/intc/bcm2836_control.c
/qemu/hw/intc/etraxfs_pic.c
/qemu/hw/intc/exynos4210_combiner.c
/qemu/hw/intc/heathrow_pic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/imx_avic.c
/qemu/hw/intc/lm32_pic.c
/qemu/hw/intc/mips_gic.c
/qemu/hw/intc/nios2_iic.c
/qemu/hw/intc/omap_intc.c
/qemu/hw/intc/ompic.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/pl190.c
/qemu/hw/intc/puv3_intc.c
/qemu/hw/intc/realview_gic.c
/qemu/hw/intc/sh_intc.c
/qemu/hw/intc/slavio_intctl.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xilinx_intc.c
/qemu/hw/intc/xive.c
/qemu/hw/intc/xlnx-pmu-iomod-intc.c
/qemu/hw/intc/xlnx-zynqmp-ipi.c
/qemu/hw/ipack/ipack.c
/qemu/hw/ipack/tpci200.c
/qemu/hw/ipmi/isa_ipmi_bt.c
/qemu/hw/ipmi/isa_ipmi_kcs.c
/qemu/hw/isa/i82378.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/lm32/lm32_boards.c
/qemu/hw/lm32/milkymist.c
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/mcf5208.c
/qemu/hw/m68k/mcf_intc.c
/qemu/hw/mips/gt64xxx_pci.c
/qemu/hw/mips/mips_int.c
/qemu/hw/mips/mips_malta.c
/qemu/hw/misc/arm_sysctl.c
/qemu/hw/misc/armsse-mhu.c
/qemu/hw/misc/aspeed_xdma.c
/qemu/hw/misc/bcm2835_mbox.c
/qemu/hw/misc/bcm2835_property.c
/qemu/hw/misc/eccmemctl.c
/qemu/hw/misc/iotkit-secctl.c
/qemu/hw/misc/macio/mac_dbdma.c
/qemu/hw/misc/macio/pmu.c
/qemu/hw/misc/max111x.c
/qemu/hw/misc/milkymist-pfpu.c
/qemu/hw/misc/mos6522.c
/qemu/hw/misc/mst_fpga.c
/qemu/hw/misc/nrf51_rng.c
/qemu/hw/misc/omap_clk.c
/qemu/hw/misc/omap_gpmc.c
/qemu/hw/misc/pc-testdev.c
/qemu/hw/misc/slavio_misc.c
/qemu/hw/misc/tmp105.c
/qemu/hw/misc/tz-mpc.c
/qemu/hw/misc/tz-msc.c
/qemu/hw/misc/tz-ppc.c
/qemu/hw/misc/zynq-xadc.c
/qemu/hw/net/allwinner_emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/can/can_kvaser_pci.c
/qemu/hw/net/can/can_mioe3680_pci.c
/qemu/hw/net/can/can_pcm3680_pci.c
/qemu/hw/net/can/can_sja1000.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/fsl_etsec/etsec.c
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/lan9118.c
/qemu/hw/net/mcf_fec.c
/qemu/hw/net/milkymist-minimac2.c
/qemu/hw/net/mipsnet.c
/qemu/hw/net/ne2000-pci.c
/qemu/hw/net/ne2000.c
/qemu/hw/net/opencores_eth.c
/qemu/hw/net/pcnet-pci.c
/qemu/hw/net/pcnet.c
/qemu/hw/net/smc91c111.c
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/stellaris_enet.c
/qemu/hw/net/xgmac.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/net/xilinx_ethlite.c
/qemu/hw/nios2/cpu_pic.c
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/openrisc/pic_cpu.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/gpex.c
/qemu/hw/pci-host/grackle.c
/qemu/hw/pci-host/piix.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/sabre.c
/qemu/hw/pci-host/uninorth.c
/qemu/hw/pci-host/versatile.c
/qemu/hw/pci-host/xilinx-pcie.c
/qemu/hw/pci/pci.c
/qemu/hw/pcmcia/pxa2xx.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mac.h
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc405_uc.c
/qemu/hw/ppc/ppc440_pcix.c
/qemu/hw/ppc/ppc440_uc.c
/qemu/hw/ppc/ppc4xx_devs.c
/qemu/hw/ppc/ppc4xx_pci.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/riscv/sifive_gpio.c
/qemu/hw/riscv/sifive_uart.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/sd/bcm2835_sdhost.c
/qemu/hw/sd/omap_mmc.c
/qemu/hw/sd/pl181.c
/qemu/hw/sd/pxa2xx_mmci.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sh4/r2d.c
/qemu/hw/sh4/sh7750.c
/qemu/hw/sh4/sh_pci.c
/qemu/hw/sparc/leon3.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc/sun4m_iommu.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/ssi/mss-spi.c
/qemu/hw/ssi/omap_spi.c
/qemu/hw/ssi/pl022.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/timer/a9gtimer.c
/qemu/hw/timer/allwinner-a10-pit.c
/qemu/hw/timer/altera_timer.c
/qemu/hw/timer/arm_mptimer.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/timer/armv7m_systick.c
/qemu/hw/timer/aspeed_timer.c
/qemu/hw/timer/cadence_ttc.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/timer/etraxfs_timer.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/exynos4210_rtc.c
/qemu/hw/timer/grlib_gptimer.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/i8254.c
/qemu/hw/timer/imx_epit.c
/qemu/hw/timer/imx_gpt.c
/qemu/hw/timer/lm32_timer.c
/qemu/hw/timer/m48t59.c
/qemu/hw/timer/mc146818rtc.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/timer/mss-timer.c
/qemu/hw/timer/nrf51_timer.c
/qemu/hw/timer/omap_gptimer.c
/qemu/hw/timer/pl031.c
/qemu/hw/timer/puv3_ost.c
/qemu/hw/timer/pxa2xx_timer.c
/qemu/hw/timer/sh_timer.c
/qemu/hw/timer/slavio_timer.c
/qemu/hw/timer/stm32f2xx_timer.c
/qemu/hw/timer/twl92230.c
/qemu/hw/timer/xilinx_timer.c
/qemu/hw/timer/xlnx-zynqmp-rtc.c
/qemu/hw/tpm/tpm_tis.c
/qemu/hw/unicore32/puv3.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/vfio/platform.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/xtensa/mx_pic.c
/qemu/hw/xtensa/pic_cpu.c
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/arm/allwinner-a10.h
/qemu/include/hw/arm/boot.h
/qemu/include/hw/arm/omap.h
/qemu/include/hw/arm/soc_dma.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/block/fdc.h
/qemu/include/hw/bt.h
/qemu/include/hw/core/split-irq.h
/qemu/include/hw/cris/etraxfs_dma.h
/qemu/include/hw/display/blizzard.h
/qemu/include/hw/display/tc6393xb.h
/qemu/include/hw/hw.h
/qemu/include/hw/ide/internal.h
/qemu/include/hw/input/gamepad.h
/qemu/include/hw/input/tsc2xxx.h
/qemu/include/hw/irq.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/mips/mips.h
/qemu/include/hw/misc/cbus.h
/qemu/include/hw/misc/mos6522.h
/qemu/include/hw/net/lan9118.h
/qemu/include/hw/net/smc91c111.h
/qemu/include/hw/or-irq.h
/qemu/include/hw/ppc/spapr_irq.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/sh4/sh_intc.h
/qemu/include/hw/timer/m48t59.h
/qemu/include/hw/tricore/tricore.h
/qemu/include/hw/vfio/vfio-platform.h
/qemu/include/hw/xen/xen.h
/qemu/include/hw/xtensa/mx_pic.h
/qemu/include/qemu/typedefs.h
/qemu/include/sysemu/kvm.h
/qemu/target/arm/helper.c
/qemu/target/arm/kvm.c
/qemu/target/mips/cp0_timer.c

12345678910>>...25