History log of /qemu/pc-bios/ (Results 126 – 150 of 871)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f612e21110-May-2021 Thomas Huth <thuth@redhat.com>

pc-bios/s390: Update the s390-ccw bios binaries with the Clang and other fixes

Rebuild the s390-ccw firmware with my Clang fixes and the ECKD null
block number fix from Marc.

Signed-off-by: Thomas

pc-bios/s390: Update the s390-ccw bios binaries with the Clang and other fixes

Rebuild the s390-ccw firmware with my Clang fixes and the ECKD null
block number fix from Marc.

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

show more ...

a5b2afd502-May-2021 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Allow building with Clang, too

Clang unfortunately does not support generating code for the z900
architecture level and starts with the z10 instead. Thus to be able
to support comp

pc-bios/s390-ccw: Allow building with Clang, too

Clang unfortunately does not support generating code for the z900
architecture level and starts with the z10 instead. Thus to be able
to support compiling with Clang, we have to check for the supported
compiler flags. The disadvantage is of course that the bios image
will only run with z10 guest CPUs upwards (which is what most people
use anyway), so just in case let's also emit a warning in that case
(we will continue to ship firmware images that have been pre-built
with GCC in future releases, so this should not impact normal users,
too).

Message-Id: <20210502174836.838816-5-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

da23191022-Apr-2021 Philippe Mathieu-Daudé <philmd@redhat.com>

pc-bios/s390-ccw: Silence GCC 11 stringop-overflow warning

When building on Fedora 34 (gcc version 11.0.0 20210210) we get:

In file included from pc-bios/s390-ccw/main.c:11:
In function ‘memset

pc-bios/s390-ccw: Silence GCC 11 stringop-overflow warning

When building on Fedora 34 (gcc version 11.0.0 20210210) we get:

In file included from pc-bios/s390-ccw/main.c:11:
In function ‘memset’,
inlined from ‘boot_setup’ at pc-bios/s390-ccw/main.c:185:5,
inlined from ‘main’ at pc-bios/s390-ccw/main.c:288:5:
pc-bios/s390-ccw/libc.h:28:14: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
28 | p[i] = c;
| ~~~~~^~~

The offending code is:

memset((char *)S390EP, 0, 6);

where S390EP is a const address:

#define S390EP 0x10008

The compiler doesn't know how big that pointed area is, so it assume that
its length is zero. This has been reported as BZ#99578 to GCC:
"gcc-11 -Warray-bounds or -Wstringop-overread warning when accessing a
pointer from integer literal"
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99578

As this warning does us more harm than good in the BIOS code (where
lot of direct accesses to low memory are done), silence this warning
for all BIOS objects.

Suggested-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210422145911.2513980-1-philmd@redhat.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Message-Id: <20210502174836.838816-4-thuth@redhat.com>
[thuth: Use the pre-existing cc-option macro instead of adding a new one]
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

3462ff3502-May-2021 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Fix the cc-option macro in the Makefile

The cc-option macro is not doing what it should - compared with the
original from the rules.mak file that got removed with commit
660f793093

pc-bios/s390-ccw: Fix the cc-option macro in the Makefile

The cc-option macro is not doing what it should - compared with the
original from the rules.mak file that got removed with commit
660f793093 ("Makefile: inline the relevant parts of rules.mak"),
the arguments got changed and thus the macro is rather doubling
the QEMU_CFLAGS than adding the flag that should be tested.

Message-Id: <20210502174836.838816-3-thuth@redhat.com>
Fixes: 22fb2ab096 ("pc-bios/s390-ccw: do not use rules.mak")
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

679196a602-May-2021 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Silence warning from Clang by marking panic() as noreturn

When compiling the s390-ccw bios with Clang, the compiler emits a warning:

pc-bios/s390-ccw/main.c:210:5: warning: varia

pc-bios/s390-ccw: Silence warning from Clang by marking panic() as noreturn

When compiling the s390-ccw bios with Clang, the compiler emits a warning:

pc-bios/s390-ccw/main.c:210:5: warning: variable 'found' is used uninitialized
whenever switch default is taken [-Wsometimes-uninitialized]
default:
^~~~~~~
pc-bios/s390-ccw/main.c:214:16: note: uninitialized use occurs here
IPL_assert(found, "Boot device not found\n");
^~~~~

It's a false positive, it only happens because Clang is not smart enough
to see that the panic() function in the "default:" case can never return.

Anyway, let's explicitely mark panic() with "noreturn" to shut up the
warning.

Message-Id: <20210502174836.838816-2-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

b460a22023-Apr-2021 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw/netboot: Use "-Wl," prefix to pass parameter to the linker

We are using the compiler to do the linking of the bios files. GCC still
accepts the "-Ttext=..." linker flag directly and

pc-bios/s390-ccw/netboot: Use "-Wl," prefix to pass parameter to the linker

We are using the compiler to do the linking of the bios files. GCC still
accepts the "-Ttext=..." linker flag directly and is smart enough to
pass it to the linker, but in case we are compiling with Clang, we have
to use the official way with the "-Wl," prefix instead.

Message-Id: <20210423153646.593153-1-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

ff77712a23-Apr-2021 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw: Use reset_psw pointer instead of hard-coded null pointer

When compiling the s390-ccw bios with clang, it emits a warning like this:

pc-bios/s390-ccw/jump2ipl.c:86:9: warning: ind

pc-bios/s390-ccw: Use reset_psw pointer instead of hard-coded null pointer

When compiling the s390-ccw bios with clang, it emits a warning like this:

pc-bios/s390-ccw/jump2ipl.c:86:9: warning: indirection of non-volatile null
pointer will be deleted, not trap [-Wnull-dereference]
if (*((uint64_t *)0) & RESET_PSW_MASK) {
^~~~~~~~~~~~~~~~
pc-bios/s390-ccw/jump2ipl.c:86:9: note: consider using __builtin_trap() or
qualifying pointer with 'volatile'

We could add a "volatile" here to shut it up, but on the other hand,
we also have a pointer variable called "reset_psw" in this file already
that points to the PSW at address 0, so we can simply use that pointer
variable instead.

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210423142440.582188-1-thuth@redhat.com>
Reviewed-by: Janosch Frank <frankja@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

d08a649421-Apr-2021 Thomas Huth <thuth@redhat.com>

pc-bios/s390-ccw/bootmap: Silence compiler warning from Clang

When compiling the s390-ccw bios with Clang, the compiler complains:

pc-bios/s390-ccw/bootmap.c:302:9: warning: logical not is only ap

pc-bios/s390-ccw/bootmap: Silence compiler warning from Clang

When compiling the s390-ccw bios with Clang, the compiler complains:

pc-bios/s390-ccw/bootmap.c:302:9: warning: logical not is only applied
to the left hand side of this comparison [-Wlogical-not-parentheses]
if (!mbr->dev_type == DEV_TYPE_ECKD) {
^ ~~

The code works (more or less by accident), since dev_type can only be
0 or 1, but it's better of course to use the intended != operator here
instead.

Fixes: 5dc739f343 ("Allow booting in case the first virtio-blk disk is bad")
Message-Id: <20210421163331.358178-1-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

a6625d3816-Apr-2021 Marc Hartmayer <mhartmay@linux.ibm.com>

pc-bios/s390-ccw: don't try to read the next block if end of chunk is reached

Don't read the block if a null block number is reached, because this means that
the end of chunk is reached.

Reviewed-b

pc-bios/s390-ccw: don't try to read the next block if end of chunk is reached

Don't read the block if a null block number is reached, because this means that
the end of chunk is reached.

Reviewed-by: Collin Walling <walling@linux.ibm.com>
Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Message-Id: <20210416074736.17409-1-mhartmay@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...


/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/MAINTAINERS
/qemu/accel/kvm/kvm-all.c
/qemu/accel/stubs/kvm-stub.c
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/cpu-exec-common.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/tcg-accel-ops-icount.c
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec-stub.c
/qemu/accel/tcg/user-exec.c
/qemu/backends/hostmem-file.c
/qemu/backends/hostmem-memfd.c
/qemu/backends/hostmem.c
/qemu/block.c
/qemu/block/block-backend.c
/qemu/block/nfs.c
/qemu/bsd-user/bsdload.c
/qemu/bsd-user/main.c
/qemu/bsd-user/qemu.h
/qemu/bsd-user/syscall.c
/qemu/chardev/char-mux.c
/qemu/chardev/char.c
/qemu/disas.c
/qemu/docs/devel/control-flow-integrity.rst
/qemu/docs/system/arm/aspeed.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/ppc/ppce500.rst
/qemu/docs/system/removed-features.rst
/qemu/docs/system/target-ppc.rst
/qemu/dump/dump.c
/qemu/dump/win_dump.c
/qemu/gdbstub.c
/qemu/hw/acpi/cpu.c
/qemu/hw/acpi/generic_event_device.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/memory_hotplug.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/alpha/dp264.c
/qemu/hw/alpha/typhoon.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/allwinner-a10.c
/qemu/hw/arm/allwinner-h3.c
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/aspeed_soc.c
/qemu/hw/arm/bcm2836.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/digic_boards.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/highbank.c
/qemu/hw/arm/imx25_pdk.c
/qemu/hw/arm/kzm.c
/qemu/hw/arm/mcimx6ul-evk.c
/qemu/hw/arm/mcimx7d-sabre.c
/qemu/hw/arm/msf2-soc.c
/qemu/hw/arm/msf2-som.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/nrf51_soc.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/omap1.c
/qemu/hw/arm/omap2.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/palm.c
/qemu/hw/arm/pxa2xx_pic.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.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/strongarm.c
/qemu/hw/arm/versatilepb.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xilinx_zynq.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/arm/z2.c
/qemu/hw/avr/arduino.c
/qemu/hw/avr/atmega.c
/qemu/hw/block/ecc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/nvme-subsys.c
/qemu/hw/char/mchp_pfsoc_mmuart.c
/qemu/hw/char/riscv_htif.c
/qemu/hw/char/sifive_uart.c
/qemu/hw/char/spapr_vty.c
/qemu/hw/char/virtio-serial-bus.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/guest-loader.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/null-machine.c
/qemu/hw/core/numa.c
/qemu/hw/cris/axis_dev88.c
/qemu/hw/display/next-fb.c
/qemu/hw/display/qxl.c
/qemu/hw/dma/pl080.c
/qemu/hw/dma/pxa2xx_dma.c
/qemu/hw/dma/sifive_pdma.c
/qemu/hw/dma/xlnx_csu_dma.c
/qemu/hw/hppa/dino.c
/qemu/hw/hppa/lasi.c
/qemu/hw/hppa/machine.c
/qemu/hw/i2c/aspeed_i2c.c
/qemu/hw/i2c/mpc_i2c.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-microvm.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/apic.c
/qemu/hw/i386/kvm/clock.c
/qemu/hw/i386/kvm/ioapic.c
/qemu/hw/i386/kvmvapic.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/vmport.c
/qemu/hw/i386/x86-iommu.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/ide/Kconfig
/qemu/hw/ide/ahci_internal.h
/qemu/hw/input/lasips2.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/arm_gic_kvm.c
/qemu/hw/intc/arm_gicv3.c
/qemu/hw/intc/arm_gicv3_kvm.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/grlib_irqmp.c
/qemu/hw/intc/imx_gpcv2.c
/qemu/hw/intc/ompic.c
/qemu/hw/intc/openpic.c
/qemu/hw/intc/openpic_kvm.c
/qemu/hw/intc/s390_flic.c
/qemu/hw/intc/s390_flic_kvm.c
/qemu/hw/intc/sifive_plic.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/xics.c
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xics_spapr.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/piix3.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/m68k/mcf5208.c
/qemu/hw/m68k/mcf_intc.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/next-kbd.c
/qemu/hw/m68k/q800.c
/qemu/hw/m68k/virt.c
/qemu/hw/mem/sparse-mem.c
/qemu/hw/microblaze/boot.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/gt64xxx_pci.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/mips/malta.c
/qemu/hw/mips/meson.build
/qemu/hw/mips/mips_int.c
/qemu/hw/mips/mipssim.c
/qemu/hw/misc/aspeed_hace.c
/qemu/hw/misc/aspeed_xdma.c
/qemu/hw/misc/imx7_snvs.c
/qemu/hw/misc/imx_ccm.c
/qemu/hw/misc/imx_rngc.c
/qemu/hw/misc/led.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/mchp_pfsoc_dmc.c
/qemu/hw/misc/mchp_pfsoc_ioscb.c
/qemu/hw/misc/mchp_pfsoc_sysreg.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/mips_itu.c
/qemu/hw/misc/mst_fpga.c
/qemu/hw/misc/pvpanic-isa.c
/qemu/hw/misc/pvpanic-pci.c
/qemu/hw/misc/sifive_e_prci.c
/qemu/hw/misc/sifive_test.c
/qemu/hw/misc/virt_ctrl.c
/qemu/hw/moxie/moxiesim.c
/qemu/hw/net/can/xlnx-zynqmp-can.c
/qemu/hw/net/i82596.c
/qemu/hw/net/lasi_i82596.c
/qemu/hw/net/msf2-emac.c
/qemu/hw/net/spapr_llan.c
/qemu/hw/net/xgmac.c
/qemu/hw/nios2/10m50_devboard.c
/qemu/hw/nios2/boot.c
/qemu/hw/nios2/generic_nommu.c
/qemu/hw/nubus/nubus-bus.c
/qemu/hw/nvram/nrf51_nvm.c
/qemu/hw/nvram/spapr_nvram.c
/qemu/hw/openrisc/openrisc_sim.c
/qemu/hw/pci-host/bonito.c
/qemu/hw/pci-host/ppce500.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/sabre.c
/qemu/hw/pci-host/sh_pci.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie_host.c
/qemu/hw/pcmcia/meson.build
/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_pnor.c
/qemu/hw/ppc/pnv_psi.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/rs6000_mc.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_pci_vfio.c
/qemu/hw/ppc/spapr_rng.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/ppc/spapr_rtas_ddw.c
/qemu/hw/ppc/spapr_rtc.c
/qemu/hw/ppc/spapr_tpm_proxy.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/remote/iohub.c
/qemu/hw/remote/machine.c
/qemu/hw/remote/memory.c
/qemu/hw/remote/proxy-memory-listener.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/numa.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/m48t59.c
/qemu/hw/rtc/mc146818rtc.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/rx/rx62n.c
/qemu/hw/s390x/3270-ccw.c
/qemu/hw/s390x/css-bridge.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/ipl.c
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-ccw.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-stattrib-kvm.c
/qemu/hw/s390x/s390-stattrib.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/sclp.c
/qemu/hw/s390x/sclpcpu.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/spapr_vscsi.c
/qemu/hw/sd/cadence_sdhci.c
/qemu/hw/sh4/r2d.c
/qemu/hw/sh4/sh7750.c
/qemu/hw/sh4/shix.c
/qemu/hw/sparc/leon3.c
/qemu/hw/sparc64/niagara.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/sifive_spi.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/timer/mips_gictimer.c
/qemu/hw/timer/sse-counter.c
/qemu/hw/tpm/tpm_crb.c
/qemu/hw/tricore/tc27x_soc.c
/qemu/hw/tricore/triboard.c
/qemu/hw/tricore/tricore_testboard.c
/qemu/hw/usb/ccid-card-passthru.c
/qemu/hw/usb/chipidea.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/hcd-dwc3.c
/qemu/hw/usb/imx-usb-phy.c
/qemu/hw/usb/xen-usb.c
/qemu/hw/usb/xlnx-usb-subsystem.c
/qemu/hw/usb/xlnx-versal-usb2-ctrl-regs.c
/qemu/hw/vfio/ap.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/display.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/spapr.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio.c
/qemu/hw/xen/xen-bus-helper.c
/qemu/hw/xen/xen-legacy-backend.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xtensa/sim.c
/qemu/hw/xtensa/virt.c
/qemu/hw/xtensa/xtensa_memory.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/hw/arm/aspeed_soc.h
/qemu/include/hw/block/flash.h
/qemu/include/hw/char/avr_usart.h
/qemu/include/hw/misc/aspeed_hace.h
/qemu/include/hw/misc/aspeed_xdma.h
/qemu/include/hw/misc/avr_power.h
/qemu/include/hw/misc/stm32f4xx_exti.h
/qemu/include/hw/misc/stm32f4xx_syscfg.h
/qemu/include/hw/pci-host/i440fx.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/timer/avr_timer16.h
/qemu/linux-user/main.c
/qemu/linux-user/semihost.c
/qemu/meson.build
/qemu/migration/ram.c
/qemu/monitor/misc.c
/qemu/monitor/monitor.c
/qemu/net/dump.c
/qemu/net/filter-replay.c
/qemu/net/net.c
/qemu/net/netmap.c
s390-ccw/bootmap.c
/qemu/plugins/api.c
/qemu/plugins/core.c
/qemu/plugins/loader.c
/qemu/qemu-options.hx
/qemu/scripts/qemu-binfmt-conf.sh
/qemu/semihosting/arm-compat-semi.c
/qemu/semihosting/config.c
/qemu/semihosting/console.c
/qemu/softmmu/arch_init.c
/qemu/softmmu/device_tree.c
/qemu/softmmu/memory.c
/qemu/softmmu/memory_mapping.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/vl.c
/qemu/stubs/semihost.c
/qemu/target/arm/cpu.c
/qemu/target/arm/op_helper.c
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/decode.c
/qemu/target/hexagon/genptr.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/x86_mmu.c
/qemu/target/i386/machine.c
/qemu/target/i386/sev.c
/qemu/target/lm32/lm32-semi.c
/qemu/target/mips/cpu.c
/qemu/target/mips/fpu.c
/qemu/target/mips/helper.h
/qemu/target/mips/internal.h
/qemu/target/mips/meson.build
/qemu/target/mips/msa.c
/qemu/target/mips/sysemu/addr.c
/qemu/target/mips/sysemu/cp0.c
/qemu/target/mips/sysemu/cp0_timer.c
/qemu/target/mips/sysemu/machine.c
/qemu/target/mips/sysemu/meson.build
/qemu/target/mips/sysemu/physaddr.c
/qemu/target/mips/tcg/dsp_helper.c
/qemu/target/mips/tcg/exception.c
/qemu/target/mips/tcg/fpu_helper.c
/qemu/target/mips/tcg/ldst_helper.c
/qemu/target/mips/tcg/lmmi_helper.c
/qemu/target/mips/tcg/meson.build
/qemu/target/mips/tcg/mips32r6.decode
/qemu/target/mips/tcg/mips64r6.decode
/qemu/target/mips/tcg/msa32.decode
/qemu/target/mips/tcg/msa64.decode
/qemu/target/mips/tcg/msa_helper.c
/qemu/target/mips/tcg/msa_helper.h.inc
/qemu/target/mips/tcg/msa_translate.c
/qemu/target/mips/tcg/mxu_translate.c
/qemu/target/mips/tcg/op_helper.c
/qemu/target/mips/tcg/rel6_translate.c
/qemu/target/mips/tcg/sysemu/cp0_helper.c
/qemu/target/mips/tcg/sysemu/meson.build
/qemu/target/mips/tcg/sysemu/mips-semi.c
/qemu/target/mips/tcg/sysemu/special_helper.c
/qemu/target/mips/tcg/sysemu/tlb_helper.c
/qemu/target/mips/tcg/sysemu_helper.h.inc
/qemu/target/mips/tcg/tcg-internal.h
/qemu/target/mips/tcg/translate.c
/qemu/target/mips/tcg/translate_addr_const.c
/qemu/target/mips/tcg/tx79.decode
/qemu/target/mips/tcg/tx79_translate.c
/qemu/target/mips/tcg/txx9_translate.c
/qemu/target/mips/tcg/user/meson.build
/qemu/target/mips/tcg/user/tlb_helper.c
/qemu/target/mips/translate.h
/qemu/target/openrisc/sys_helper.c
/qemu/target/ppc/cpu-qom.h
/qemu/target/ppc/cpu.h
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/internal.h
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate_init.c.inc
/qemu/target/riscv/op_helper.c
/qemu/target/rx/helper.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/diag.c
/qemu/target/s390x/excp_helper.c
/qemu/target/s390x/interrupt.c
/qemu/target/xtensa/op_helper.c
/qemu/tcg/tcg-op-vec.c
/qemu/tcg/tcg-op.c
/qemu/tcg/tcg.c
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/qtest/aspeed_hace-test.c
/qemu/tests/qtest/aspeed_smc-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/qos_fuzz.c
/qemu/tests/qtest/meson.build
/qemu/ui/x_keymap.c
/qemu/util/oslib-win32.c
335b638906-Apr-2021 Bin Meng <bmeng.cn@gmail.com>

roms/u-boot: Bump ppce500 u-boot to v2021.04 to fix broken pci support

When QEMU originally supported the ppce500 machine back in Jan 2014,
it was created with a 1:1 mapping of PCI bus address. Thin

roms/u-boot: Bump ppce500 u-boot to v2021.04 to fix broken pci support

When QEMU originally supported the ppce500 machine back in Jan 2014,
it was created with a 1:1 mapping of PCI bus address. Things seemed
to change rapidly that in Nov 2014 with the following QEMU commits:

commit e6b4e5f4795b ("PPC: e500: Move CCSR and MMIO space to upper end of address space")

and

commit cb3778a0455a ("PPC: e500 pci host: Add support for ATMUs")

the PCI memory and IO physical address were moved to beyond 4 GiB,
but PCI bus address remained below 4 GiB, hence a non-identity
mapping was created. Unfortunately corresponding U-Boot updates
were missed along with the QEMU changes and the U-Boot QEMU ppce500
PCI support has been broken since then, until this issue was fixed
recently in U-Boot mainline v2021.04 release, specifically by the
following U-Boot series:

http://patchwork.ozlabs.org/project/uboot/list/?series=230985&state=*

The cross-compilation toolchain used to build the U-Boot image is:
https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/10.1.0/x86_64-gcc-10.1.0-nolibc-powerpc-linux.tar.xz

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...


/qemu/.cirrus.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.yml
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/translate-all.c
/qemu/audio/coreaudio.c
/qemu/backends/dbus-vmstate.c
/qemu/block.c
/qemu/block/backup-top.c
/qemu/block/block-backend.c
/qemu/block/commit.c
/qemu/block/curl.c
/qemu/block/dirty-bitmap.c
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/mirror.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nbd.c
/qemu/block/qapi.c
/qemu/block/qcow2.c
/qemu/block/rbd.c
/qemu/block/stream.c
/qemu/block/vdi.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/chardev/char-socket.c
/qemu/chardev/char.c
/qemu/configure
/qemu/contrib/ivshmem-client/ivshmem-client.c
/qemu/contrib/ivshmem-server/ivshmem-server.c
/qemu/contrib/plugins/hotpages.c
/qemu/contrib/plugins/hwprofile.c
/qemu/contrib/vhost-user-gpu/meson.build
/qemu/contrib/vhost-user-gpu/vhost-user-gpu.c
/qemu/contrib/vhost-user-gpu/virgl.c
/qemu/contrib/vhost-user-gpu/vugbm.c
/qemu/contrib/vhost-user-gpu/vugbm.h
/qemu/crypto/tlscredsx509.c
/qemu/default-configs/devices/m68k-softmmu.mak
/qemu/default-configs/devices/ppc-softmmu.mak
/qemu/disas/arm-a64.cc
/qemu/disas/nanomips.cpp
/qemu/docs/defs.rst.inc
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/code-of-conduct.rst
/qemu/docs/devel/conflict-resolution.rst
/qemu/docs/devel/decodetree.rst
/qemu/docs/devel/fuzzing.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/migration.rst
/qemu/docs/devel/qapi-code-gen.txt
/qemu/docs/devel/style.rst
/qemu/docs/devel/tcg-plugins.rst
/qemu/docs/devel/testing.rst
/qemu/docs/hyperv.txt
/qemu/docs/interop/index.rst
/qemu/docs/qdev-device-use.txt
/qemu/docs/rdma.txt
/qemu/docs/specs/index.rst
/qemu/docs/specs/virt-ctlr.txt
/qemu/docs/sphinx/qapidoc.py
/qemu/docs/system/deprecated.rst
/qemu/docs/system/gdb.rst
/qemu/docs/system/index.rst
/qemu/docs/system/nvme.rst
/qemu/docs/system/removed-features.rst
/qemu/docs/system/riscv/microchip-icicle-kit.rst
/qemu/docs/system/target-riscv.rst
/qemu/docs/tools/index.rst
/qemu/docs/tools/qemu-img.rst
/qemu/docs/tools/qemu-storage-daemon.rst
/qemu/docs/user/index.rst
/qemu/docs/xbzrle.txt
/qemu/fpu/softfloat-specialize.c.inc
/qemu/hmp-commands-info.hx
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p-synth.c
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/pci.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/acpi/trace-events
/qemu/hw/acpi/utils.c
/qemu/hw/arm/armsse.c
/qemu/hw/arm/mps2-tz.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/xilinx_zynq.c
/qemu/hw/audio/cs4231.c
/qemu/hw/block/fdc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/meson.build
/qemu/hw/block/nvme-dif.c
/qemu/hw/block/nvme-dif.h
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/nvme-ns.h
/qemu/hw/block/nvme-subsys.c
/qemu/hw/block/nvme-subsys.h
/qemu/hw/block/nvme.c
/qemu/hw/block/nvme.h
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/trace-events
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/Kconfig
/qemu/hw/char/etraxfs_ser.c
/qemu/hw/char/goldfish_tty.c
/qemu/hw/char/ibex_uart.c
/qemu/hw/char/meson.build
/qemu/hw/char/pl011.c
/qemu/hw/char/terminal3270.c
/qemu/hw/char/trace-events
/qemu/hw/core/Kconfig
/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/meson.build
/qemu/hw/cpu/core.c
/qemu/hw/cris/axis_dev88.c
/qemu/hw/display/edid-generate.c
/qemu/hw/display/tcx.c
/qemu/hw/display/xlnx_dp.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-microvm.c
/qemu/hw/i386/microvm.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/x86.c
/qemu/hw/ide/qdev.c
/qemu/hw/intc/Kconfig
/qemu/hw/intc/etraxfs_pic.c
/qemu/hw/intc/goldfish_pic.c
/qemu/hw/intc/i8259.c
/qemu/hw/intc/m68k_irqc.c
/qemu/hw/intc/meson.build
/qemu/hw/intc/trace-events
/qemu/hw/isa/Kconfig
/qemu/hw/isa/piix4.c
/qemu/hw/isa/vt82c686.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/meson.build
/qemu/hw/m68k/virt.c
/qemu/hw/mem/meson.build
/qemu/hw/mem/sparse-mem.c
/qemu/hw/microblaze/xlnx-zynqmp-pmu.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/mac_via.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/trace-events
/qemu/hw/misc/virt_ctrl.c
/qemu/hw/misc/zynq_slcr.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/npcm7xx_emc.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/xen_nic.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/gpex.c
/qemu/hw/pci-host/meson.build
/qemu/hw/pci-host/mv64361.c
/qemu/hw/pci-host/mv643xx.h
/qemu/hw/pci-host/trace-events
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie.c
/qemu/hw/ppc/Kconfig
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/e500plat.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/meson.build
/qemu/hw/ppc/pegasos2.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_rtas.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/virt.c
/qemu/hw/s390x/3270-ccw.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/meson.build
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/virtio-ccw-gpu.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/s390x/virtio-ccw.h
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/mptsas.h
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/timer/etraxfs_timer.c
/qemu/hw/timer/i8254.c
/qemu/hw/timer/renesas_tmr.c
/qemu/hw/usb/Kconfig
/qemu/hw/usb/bus.c
/qemu/hw/usb/dev-audio.c
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-storage-bot.c
/qemu/hw/usb/dev-storage-classic.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/hcd-ehci-sysbus.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-uhci.c
/qemu/hw/usb/hcd-uhci.h
/qemu/hw/usb/meson.build
/qemu/hw/usb/u2f.c
/qemu/hw/usb/vt82c686-uhci-pci.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/trace-events
/qemu/hw/virtio/vhost-user-fs.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pci.h
/qemu/hw/virtio/virtio-pmem.c
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/dirty-bitmap.h
/qemu/include/block/nvme.h
/qemu/include/chardev/char.h
/qemu/include/crypto/tlscreds.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/helper-gen.h
/qemu/include/exec/helper-proto.h
/qemu/include/exec/helper-tcg.h
/qemu/include/exec/memory.h
/qemu/include/exec/page-vary.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/acpi/pci.h
/qemu/include/hw/acpi/pcihp.h
/qemu/include/hw/acpi/utils.h
/qemu/include/hw/arm/armv7m.h
/qemu/include/hw/arm/fsl-imx25.h
/qemu/include/hw/arm/fsl-imx31.h
/qemu/include/hw/arm/fsl-imx6.h
/qemu/include/hw/arm/fsl-imx6ul.h
/qemu/include/hw/arm/fsl-imx7.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/goldfish_tty.h
/qemu/include/hw/char/ibex_uart.h
/qemu/include/hw/char/pl011.h
/qemu/include/hw/cris/etraxfs.h
/qemu/include/hw/i386/ich9.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/intc/goldfish_pic.h
/qemu/include/hw/intc/m68k_irqc.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/loader.h
/qemu/include/hw/mem/sparse-mem.h
/qemu/include/hw/misc/grlib_ahb_apb_pnp.h
/qemu/include/hw/misc/mac_via.h
/qemu/include/hw/misc/virt_ctrl.h
/qemu/include/hw/misc/zynq-xadc.h
/qemu/include/hw/pci-host/gpex.h
/qemu/include/hw/pci-host/mv64361.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/pci/pci_ids.h
/qemu/include/hw/pci/pcie.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_drc.h
/qemu/include/hw/register.h
/qemu/include/hw/riscv/microchip_pfsoc.h
/qemu/include/hw/riscv/virt.h
/qemu/include/hw/s390x/css.h
/qemu/include/hw/s390x/s390_flic.h
/qemu/include/hw/scsi/esp.h
/qemu/include/hw/sparc/grlib.h
/qemu/include/hw/usb.h
/qemu/include/hw/usb/msd.h
/qemu/include/migration/misc.h
/qemu/include/monitor/hmp.h
/qemu/include/net/eth.h
/qemu/include/net/net.h
/qemu/include/qapi/compat-policy.h
/qemu/include/qapi/qmp/dispatch.h
/qemu/include/qapi/qobject-input-visitor.h
/qemu/include/qapi/qobject-output-visitor.h
/qemu/include/qapi/visitor-impl.h
/qemu/include/qapi/visitor.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/coroutine.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/timer.h
/qemu/include/qemu/transactions.h
/qemu/include/qemu/yank.h
/qemu/include/qom/object_interfaces.h
/qemu/include/standard-headers/asm-m68k/bootinfo-virt.h
/qemu/include/sysemu/arch_init.h
/qemu/include/sysemu/blockdev.h
/qemu/include/sysemu/kvm.h
/qemu/include/tcg/tcg-opc.h
/qemu/include/ui/console.h
/qemu/job.c
/qemu/linux-user/hexagon/cpu_loop.c
/qemu/linux-user/ppc/cpu_loop.c
/qemu/linux-user/ppc/signal.c
/qemu/linux-user/qemu.h
/qemu/linux-user/riscv/cpu_loop.c
/qemu/linux-user/s390x/signal.c
/qemu/linux-user/syscall.c
/qemu/linux-user/uaccess.c
/qemu/meson.build
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/channel.c
/qemu/migration/meson.build
/qemu/migration/migration.c
/qemu/migration/multifd.c
/qemu/migration/qemu-file-channel.c
/qemu/migration/ram.c
/qemu/migration/ram.h
/qemu/migration/yank_functions.c
/qemu/migration/yank_functions.h
/qemu/monitor/hmp-cmds.c
/qemu/monitor/misc.c
/qemu/monitor/monitor-internal.h
/qemu/monitor/monitor.c
/qemu/monitor/qmp-cmds-control.c
/qemu/monitor/qmp-cmds.c
/qemu/monitor/qmp.c
/qemu/net/colo-compare.c
/qemu/net/eth.c
/qemu/net/l2tpv3.c
/qemu/net/net.c
/qemu/net/netmap.c
/qemu/net/slirp.c
/qemu/net/socket.c
/qemu/net/tap-win32.c
/qemu/net/tap.c
/qemu/net/vde.c
/qemu/net/vhost-user.c
/qemu/net/vhost-vdpa.c
/qemu/page-vary-common.c
/qemu/page-vary.c
u-boot.e500
/qemu/plugins/api.c
/qemu/qapi/authz.json
/qemu/qapi/block-core.json
/qemu/qapi/common.json
/qemu/qapi/compat.json
/qemu/qapi/control.json
/qemu/qapi/crypto.json
/qemu/qapi/introspect.json
/qemu/qapi/machine.json
/qemu/qapi/meson.build
/qemu/qapi/migration.json
/qemu/qapi/net.json
/qemu/qapi/pragma.json
/qemu/qapi/qapi-schema.json
/qemu/qapi/qapi-visit-core.c
/qemu/qapi/qmp-dispatch.c
/qemu/qapi/qmp-registry.c
/qemu/qapi/qobject-input-visitor.c
/qemu/qapi/qobject-output-visitor.c
/qemu/qapi/qom.json
/qemu/qapi/trace-events
/qemu/qapi/ui.json
/qemu/qemu-img.c
/qemu/qemu-io.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/channel-win32.c
/qemu/qga/commands-posix.c
/qemu/qga/commands-win32.c
/qemu/qga/commands.c
/qemu/qga/main.c
/qemu/qga/qapi-schema.json
/qemu/qom/object_interfaces.c
/qemu/qom/qom-qmp-cmds.c
/qemu/replay/replay-events.c
/qemu/replay/replay.c
/qemu/roms/Makefile
/qemu/roms/u-boot
/qemu/scripts/decodetree.py
/qemu/scripts/device-crash-test
/qemu/scripts/kernel-doc
/qemu/scripts/oss-fuzz/output_reproducer.py
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/common.py
/qemu/scripts/qapi/error.py
/qemu/scripts/qapi/events.py
/qemu/scripts/qapi/expr.py
/qemu/scripts/qapi/mypy.ini
/qemu/scripts/qapi/parser.py
/qemu/scripts/qapi/pylintrc
/qemu/scripts/qapi/schema.py
/qemu/scripts/qapi/source.py
/qemu/scripts/qapi/visit.py
/qemu/scsi/utils.c
/qemu/semihosting/arm-compat-semi.c
/qemu/softmmu/cpu-timers.c
/qemu/softmmu/icount.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/timers-state.h
/qemu/softmmu/vl.c
/qemu/storage-daemon/qapi/qapi-schema.json
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/meson.build
/qemu/target/alpha/translate.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper-a64.h
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/mte_helper.c
/qemu/target/arm/neon-ls.decode
/qemu/target/arm/sve_helper.c
/qemu/target/arm/tlb_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-a64.h
/qemu/target/arm/translate-neon.c.inc
/qemu/target/arm/translate-sve.c
/qemu/target/arm/translate-vfp.c.inc
/qemu/target/arm/translate.c
/qemu/target/arm/translate.h
/qemu/target/hexagon/arch.c
/qemu/target/hexagon/arch.h
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/cpu_bits.h
/qemu/target/hexagon/decode.c
/qemu/target/hexagon/fma_emu.c
/qemu/target/hexagon/gen_tcg.h
/qemu/target/hexagon/gen_tcg_funcs.py
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/helper.h
/qemu/target/hexagon/iclass.c
/qemu/target/hexagon/imported/alu.idef
/qemu/target/hexagon/imported/compare.idef
/qemu/target/hexagon/imported/encode_pp.def
/qemu/target/hexagon/imported/float.idef
/qemu/target/hexagon/imported/ldst.idef
/qemu/target/hexagon/imported/macros.def
/qemu/target/hexagon/imported/shift.idef
/qemu/target/hexagon/insn.h
/qemu/target/hexagon/internal.h
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/meson.build
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/reg_fields.c
/qemu/target/hexagon/reg_fields.h
/qemu/target/hexagon/translate.c
/qemu/target/hexagon/translate.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/kvm/hyperv-proto.h
/qemu/target/i386/machine.c
/qemu/target/i386/tcg/excp_helper.c
/qemu/target/i386/tcg/helper-tcg.h
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/i386/tcg/seg_helper.c
/qemu/target/i386/tcg/svm_helper.c
/qemu/target/i386/tcg/translate.c
/qemu/target/mips/mxu_translate.c
/qemu/target/mips/rel6_translate.c
/qemu/target/mips/translate.c
/qemu/target/openrisc/translate.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/helper.h
/qemu/target/ppc/helper_regs.c
/qemu/target/ppc/helper_regs.h
/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/meson.build
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate_init.c.inc
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/pmp.h
/qemu/target/riscv/translate.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/excp_helper.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/xtensa/import_core.sh
/qemu/target/xtensa/meson.build
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/mips/tcg-target.c.inc
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/riscv/tcg-target.c.inc
/qemu/tcg/s390/tcg-target.c.inc
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target-con-set.h
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/acceptance/multiprocess.py
/qemu/tests/acceptance/pc_cpu_hotplug_props.py
/qemu/tests/acceptance/x86_cpu_model_versions.py
/qemu/tests/data/acpi/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.nohpet
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/decode/succ_argset_type1.decode
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/plugin/meson.build
/qemu/tests/plugin/syscall.c
/qemu/tests/qapi-schema/alternate-clash.err
/qemu/tests/qapi-schema/alternate-clash.json
/qemu/tests/qapi-schema/alternate-data-invalid.err
/qemu/tests/qapi-schema/alternate-data-invalid.json
/qemu/tests/qapi-schema/alternate-data-invalid.out
/qemu/tests/qapi-schema/args-member-case.err
/qemu/tests/qapi-schema/doc-bad-union-member.json
/qemu/tests/qapi-schema/doc-good.json
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/doc-good.txt
/qemu/tests/qapi-schema/doc-invalid-return.json
/qemu/tests/qapi-schema/double-type.err
/qemu/tests/qapi-schema/double-type.json
/qemu/tests/qapi-schema/enum-clash-member.err
/qemu/tests/qapi-schema/enum-clash-member.json
/qemu/tests/qapi-schema/enum-member-case.err
/qemu/tests/qapi-schema/enum-member-case.json
/qemu/tests/qapi-schema/event-case.err
/qemu/tests/qapi-schema/event-case.json
/qemu/tests/qapi-schema/event-case.out
/qemu/tests/qapi-schema/event-member-invalid-dict.err
/qemu/tests/qapi-schema/event-member-invalid-dict.json
/qemu/tests/qapi-schema/features-deprecated-type.err
/qemu/tests/qapi-schema/features-deprecated-type.json
/qemu/tests/qapi-schema/flat-union-inline-invalid-dict.json
/qemu/tests/qapi-schema/flat-union-no-base.err
/qemu/tests/qapi-schema/flat-union-no-base.json
/qemu/tests/qapi-schema/meson.build
/qemu/tests/qapi-schema/nested-struct-data-invalid-dict.err
/qemu/tests/qapi-schema/nested-struct-data-invalid-dict.json
/qemu/tests/qapi-schema/nested-struct-data.json
/qemu/tests/qapi-schema/pragma-value-not-bool.err
/qemu/tests/qapi-schema/pragma-value-not-bool.json
/qemu/tests/qapi-schema/pragma-value-not-bool.out
/qemu/tests/qapi-schema/pragma-value-not-list-of-str.err
/qemu/tests/qapi-schema/pragma-value-not-list-of-str.json
/qemu/tests/qapi-schema/pragma-value-not-list-of-str.out
/qemu/tests/qapi-schema/pragma-value-not-list.err
/qemu/tests/qapi-schema/pragma-value-not-list.json
/qemu/tests/qapi-schema/pragma-value-not-list.out
/qemu/tests/qapi-schema/qapi-schema-test.json
/qemu/tests/qapi-schema/qapi-schema-test.out
/qemu/tests/qapi-schema/redefined-predefined.err
/qemu/tests/qapi-schema/redefined-predefined.json
/qemu/tests/qapi-schema/redefined-predefined.out
/qemu/tests/qapi-schema/redefined-type.err
/qemu/tests/qapi-schema/redefined-type.json
/qemu/tests/qapi-schema/reserved-member-u.err
/qemu/tests/qapi-schema/reserved-member-u.json
/qemu/tests/qapi-schema/returns-bad-type.err
/qemu/tests/qapi-schema/returns-bad-type.json
/qemu/tests/qapi-schema/returns-bad-type.out
/qemu/tests/qapi-schema/struct-data-invalid.err
/qemu/tests/qapi-schema/struct-data-invalid.json
/qemu/tests/qapi-schema/struct-member-invalid-dict.err
/qemu/tests/qapi-schema/struct-member-invalid-dict.json
/qemu/tests/qapi-schema/struct-member-invalid.err
/qemu/tests/qapi-schema/struct-member-invalid.json
/qemu/tests/qapi-schema/struct-member-name-clash.err
/qemu/tests/qapi-schema/struct-member-name-clash.json
/qemu/tests/qapi-schema/struct-member-name-clash.out
/qemu/tests/qapi-schema/type-case.err
/qemu/tests/qapi-schema/type-case.json
/qemu/tests/qapi-schema/type-case.out
/qemu/tests/qapi-schema/union-branch-case.err
/qemu/tests/qapi-schema/union-clash-branches.err
/qemu/tests/qapi-schema/union-clash-branches.json
/qemu/tests/qapi-schema/union-invalid-data.err
/qemu/tests/qapi-schema/union-invalid-data.json
/qemu/tests/qapi-schema/union-invalid-data.out
/qemu/tests/qapi-schema/unknown-expr-key.err
/qemu/tests/qapi-schema/unknown-expr-key.json
/qemu/tests/qemu-iotests/040
/qemu/tests/qemu-iotests/046
/qemu/tests/qemu-iotests/046.out
/qemu/tests/qemu-iotests/051
/qemu/tests/qemu-iotests/051.out
/qemu/tests/qemu-iotests/051.pc.out
/qemu/tests/qemu-iotests/068
/qemu/tests/qemu-iotests/093
/qemu/tests/qemu-iotests/116.out
/qemu/tests/qemu-iotests/124
/qemu/tests/qemu-iotests/127
/qemu/tests/qemu-iotests/139
/qemu/tests/qemu-iotests/172
/qemu/tests/qemu-iotests/172.out
/qemu/tests/qemu-iotests/181
/qemu/tests/qemu-iotests/182
/qemu/tests/qemu-iotests/184.out
/qemu/tests/qemu-iotests/191.out
/qemu/tests/qemu-iotests/194
/qemu/tests/qemu-iotests/194.out
/qemu/tests/qemu-iotests/226.out
/qemu/tests/qemu-iotests/236
/qemu/tests/qemu-iotests/236.out
/qemu/tests/qemu-iotests/238
/qemu/tests/qemu-iotests/240
/qemu/tests/qemu-iotests/244
/qemu/tests/qemu-iotests/244.out
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/246
/qemu/tests/qemu-iotests/246.out
/qemu/tests/qemu-iotests/254
/qemu/tests/qemu-iotests/254.out
/qemu/tests/qemu-iotests/256
/qemu/tests/qemu-iotests/257
/qemu/tests/qemu-iotests/257.out
/qemu/tests/qemu-iotests/260
/qemu/tests/qemu-iotests/273.out
/qemu/tests/qemu-iotests/283.out
/qemu/tests/qemu-iotests/307
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/testenv.py
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test
/qemu/tests/qemu-iotests/tests/mirror-top-perms
/qemu/tests/qemu-iotests/tests/mirror-top-perms.out
/qemu/tests/qemu-iotests/tests/qsd-jobs
/qemu/tests/qemu-iotests/tests/qsd-jobs.out
/qemu/tests/qemu-iotests/tests/remove-bitmap-from-backing
/qemu/tests/qemu-iotests/tests/remove-bitmap-from-backing.out
/qemu/tests/qtest/am53c974-test.c
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/fuzz-e1000e-test.c
/qemu/tests/qtest/fuzz-megasas-test.c
/qemu/tests/qtest/fuzz-virtio-scsi-test.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/lpc-ich9-test.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/npcm7xx_emc-test.c
/qemu/tests/qtest/numa-test.c
/qemu/tests/qtest/qmp-cmd-test.c
/qemu/tests/qtest/qmp-test.c
/qemu/tests/qtest/test-hmp.c
/qemu/tests/qtest/test-netfilter.c
/qemu/tests/qtest/test-x86-cpuid-compat.c
/qemu/tests/qtest/vhost-user-test.c
/qemu/tests/tcg/Makefile.target
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/mte-5.c
/qemu/tests/tcg/aarch64/mte-6.c
/qemu/tests/tcg/aarch64/mte.h
/qemu/tests/tcg/aarch64/semicall.h
/qemu/tests/tcg/arm/Makefile.target
/qemu/tests/tcg/arm/semicall.h
/qemu/tests/tcg/configure.sh
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/brev.c
/qemu/tests/tcg/hexagon/circ.c
/qemu/tests/tcg/hexagon/fpstuff.c
/qemu/tests/tcg/hexagon/load_align.c
/qemu/tests/tcg/hexagon/load_unpack.c
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/tcg/hexagon/multi_result.c
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/i386/system/kernel.ld
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/tcg/multiarch/arm-compat-semi/semiconsole.c
/qemu/tests/tcg/multiarch/arm-compat-semi/semihosting.c
/qemu/tests/tcg/multiarch/gdbstub/sha1.py
/qemu/tests/tcg/riscv64/semicall.h
/qemu/tests/unit/check-qom-proplist.c
/qemu/tests/unit/meson.build
/qemu/tests/unit/test-bdrv-drain.c
/qemu/tests/unit/test-bdrv-graph-mod.c
/qemu/tests/unit/test-block-iothread.c
/qemu/tests/unit/test-blockjob.c
/qemu/tests/unit/test-char.c
/qemu/tests/unit/test-coroutine.c
/qemu/tests/unit/test-cutils.c
/qemu/tests/unit/test-qmp-cmds.c
/qemu/tests/unit/test-qmp-event.c
/qemu/tests/unit/test-util-sockets.c
/qemu/tests/unit/test-yank.c
/qemu/tests/vm/freebsd
/qemu/tests/vmstate-static-checker-data/dump1.json
/qemu/tests/vmstate-static-checker-data/dump2.json
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/fuse_virtio.c
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/ui/cocoa.m
/qemu/ui/console-gl.c
/qemu/ui/console.c
/qemu/ui/spice-core.c
/qemu/ui/trace-events
/qemu/ui/vnc-jobs.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/compatfd.c
/qemu/util/cutils.c
/qemu/util/meson.build
/qemu/util/module.c
/qemu/util/qemu-coroutine-lock.c
/qemu/util/qemu-timer.c
/qemu/util/transactions.c
/qemu/util/yank.c
ee2e67da16-Mar-2021 Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>

Update OpenBIOS images to 4a004110 built from submodule.

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


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

pseries: Update SLOF firmware image

This is mostly compiler warnings fixed but while doing this,
a bug in MIN() in tcgbios was found.

Alexey Kardashevskiy (14):
helpers: Define MIN()
li

pseries: Update SLOF firmware image

This is mostly compiler warnings fixed but while doing this,
a bug in MIN() in tcgbios was found.

Alexey Kardashevskiy (14):
helpers: Define MIN()
libc: Compile with -Wextra
elf: Compile with -Wextra
usb: Compile with -Wextra
veth: Compile with -Wextra
virtio: Compile with -Wextra
e1000: Compile with -Wextra
libnet: Compile with -Wextra
libhv: Compile with -Wextra
libnvram: Compile with -Wextra
libtpm: Compile with -Wextra
slof/prim: Compile with -Wextra
Makefile: Actually compile with -Wextra
version: update to 20210217

Thomas Huth (1):
virtio-serial: Remove superfluous serial-* words

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...


/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/tcg-accel-ops-mttcg.c
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-accel-ops.h
/qemu/accel/tcg/tcg-runtime.c
/qemu/accel/tcg/translate-all.c
/qemu/block/blkdebug.c
/qemu/chardev/char-socket.c
/qemu/chardev/char.c
/qemu/configure
/qemu/docs/interop/vhost-user.json
/qemu/docs/system/arm/mps2.rst
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/riscv/sifive_u.rst
/qemu/docs/system/target-riscv.rst
/qemu/docs/system/targets.rst
/qemu/gdbstub.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/block/Kconfig
/qemu/hw/block/m25p80.c
/qemu/hw/block/meson.build
/qemu/hw/block/tc58128.c
/qemu/hw/char/Kconfig
/qemu/hw/char/meson.build
/qemu/hw/display/omap_lcdc.c
/qemu/hw/display/sm501.c
/qemu/hw/display/tc6393xb.c
/qemu/hw/display/tcx.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-3d.c
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/i2c/npcm7xx_smbus.c
/qemu/hw/i386/x86.c
/qemu/hw/intc/Kconfig
/qemu/hw/intc/apic.c
/qemu/hw/intc/meson.build
/qemu/hw/m68k/q800.c
/qemu/hw/mips/jazz.c
/qemu/hw/misc/armsse-cpuid.c
/qemu/hw/misc/armsse-mhu.c
/qemu/hw/misc/iotkit-sysctl.c
/qemu/hw/misc/iotkit-sysinfo.c
/qemu/hw/misc/mps2-fpgaio.c
/qemu/hw/misc/mps2-scc.c
/qemu/hw/net/meson.build
/qemu/hw/net/npcm7xx_emc.c
/qemu/hw/net/trace-events
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/meson.build
/qemu/hw/pci-host/sh_pci.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/rtc/goldfish_rtc.c
/qemu/hw/s390x/meson.build
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/virtio-ccw.c
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/trace-events
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sh4/Kconfig
/qemu/hw/sh4/meson.build
/qemu/hw/sh4/sh7750_regs.h
/qemu/hw/sparc/sun4m.c
/qemu/hw/ssi/Kconfig
/qemu/hw/ssi/meson.build
/qemu/hw/ssi/sifive_spi.c
/qemu/hw/timer/Kconfig
/qemu/hw/timer/meson.build
/qemu/hw/vfio/ccw.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/include/exec/exec-all.h
/qemu/include/exec/poison.h
/qemu/include/exec/tb-lookup.h
/qemu/include/hw/arm/armsse.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/elf_ops.h
/qemu/include/hw/misc/armsse-cpuid.h
/qemu/include/hw/misc/armsse-mhu.h
/qemu/include/hw/misc/iotkit-secctl.h
/qemu/include/hw/misc/iotkit-sysctl.h
/qemu/include/hw/misc/iotkit-sysinfo.h
/qemu/include/hw/misc/mps2-fpgaio.h
/qemu/include/hw/misc/mps2-scc.h
/qemu/include/hw/net/npcm7xx_emc.h
/qemu/include/hw/riscv/sifive_u.h
/qemu/include/hw/scsi/esp.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/sh4/sh.h
/qemu/include/hw/ssi/sifive_spi.h
/qemu/include/qapi/error.h
/qemu/include/qemu/config-file.h
/qemu/include/scsi/utils.h
/qemu/include/ui/console.h
/qemu/include/ui/egl-helpers.h
/qemu/include/ui/spice-display.h
/qemu/linux-user/main.c
/qemu/linux-user/sh4/signal.c
/qemu/linux-user/syscall.c
/qemu/meson.build
README
slof.bin
/qemu/qapi/meson.build
/qemu/qemu-options.hx
/qemu/qga/commands-posix.c
/qemu/qga/vss-win32/meson.build
/qemu/qom/object_interfaces.c
/qemu/roms/SLOF
/qemu/scripts/qapi/parser.py
/qemu/scsi/qemu-pr-helper.c
/qemu/scsi/utils.c
/qemu/softmmu/physmem.c
/qemu/softmmu/vl.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper-a64.h
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/mte_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/vec_helper.c
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/opcodes.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/riscv/arch_dump.c
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/meson.build
/qemu/target/s390x/arch_dump.c
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/ioinst.c
/qemu/target/s390x/kvm.c
/qemu/target/sh4/cpu.h
/qemu/target/sh4/helper.c
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tests/fp/meson.build
/qemu/tests/meson.build
/qemu/tests/qapi-schema/leading-comma-list.err
/qemu/tests/qapi-schema/trailing-comma-list.err
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_emc-test.c
/qemu/trace/control.c
/qemu/ui/cocoa.m
/qemu/ui/console.c
/qemu/ui/egl-helpers.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk-gl-area.c
/qemu/ui/gtk.c
/qemu/ui/meson.build
/qemu/ui/sdl2-2d.c
/qemu/ui/sdl2-gl.c
/qemu/ui/spice-display.c
/qemu/ui/vnc.c
/qemu/util/qemu-config.c
/qemu/util/qemu-option.c
454d1e7c19-Jan-2021 Bin Meng <bin.meng@windriver.com>

roms/opensbi: Upgrade from v0.8 to v0.9

Upgrade OpenSBI from v0.8 to v0.9 and the pre-built bios images.

The v0.9 release includes the following commits:

35bc810 docs/platform: Update QEMU paramet

roms/opensbi: Upgrade from v0.8 to v0.9

Upgrade OpenSBI from v0.8 to v0.9 and the pre-built bios images.

The v0.9 release includes the following commits:

35bc810 docs/platform: Update QEMU parameter for fw_payload
78afe11 config.mk: Update QEMU run command for generic and sifive fu540 platforms
ec3e5b1 docs/platform: sifive_fu540: Update U-Boot instructions
7d61a68 README.md: fix markdown link formatting
a5f9104 lib/utils: fdt: Update FDT expand size to 1024 for reserved memory node
ec1abf6 include: sbi_bitops: Remove dead shift assignment in ffs/fls
8e47649 lib: Add sbi_strncmp implementation
2845d2d lib: utils: Add a macro in libfdt_env.h for strncmp
2cfd2fc lib: utils: Use strncmp in fdt_parse_hart_id()
937caee lib: sbi_misaligned_ldst: Determine transformed instruction length correctly
4b18a2a firmware: fw_base: Improve exception stack setup in trap handler
9d56961 lib: sbi_trap: Fix hstatus.SPVP update in sbi_trap_redirect()
d7f87d9 platform: kendryte/k210: fixup FDT
e435ba0 lib: sbi_init: Avoid thundering hurd problem with coldboot_lock
4f3bad6 lib: sbi: Handle the case where MTVAL has illegal instruction address
7b0b289 lib: sbi: Remove redundant SBI_HART_HAS_PMP feature
74d1db7 lib: sbi: Improve PMP CSR detection and progamming
2c341f7 lib: sbi: Detect and print MHPM counters at boot-time
162d453 include: sbi: Few cosmetic changes in riscv_encoding.h
ebc8ebc lib: sbi: Improve HPM CSR read/write emulation
dcb10c0 lib: sbi: Don't handle VS-mode ecall in sbi_trap_handler()
bef63d6 include: Rename ECALL defines to match latest RISC-V spec
c1c7c3e lib: sbi_trap: Allow M-mode to M-mode ECALLs
6734304 lib: sbi: Allow specifying start mode to sbi_hsm_hart_start() API
7ccf6bf lib: sbi: Allow specifying mode in sbi_hart_pmp_check_addr() API
9f935a4 lib: utils: Improve fdt_cpu_fixup() implementation
172fa16 lib: sbi: Ensure coldboot HART supports next privilege mode
aaeca7e platform: generic: Don't mark non-MMU HARTs as invalid
7701ea1 lib: sbi: Fix PMP CSR detection
79bf80b lib: sbi_scratch: typo scatch
a04c465 makefile: fix clean directive
af4b50f Makefile: Build ELF, BIN and LD script in platform build directory
6ca0969 firmware: Add common FW_FDT_PATH compile-time option
9c07c51 firmware: Remove FW_PAYLOAD_FDT_PATH compile-time option
e9a4bfb Makefile: Allow padding zeros when converting DTB to C source
a0f2d4a platform: kendryte/k210: Add some padding for FDT fixups
dbeeacb include: sbi: Remove redundant includes from sbi_platform.h
a12d46a include: sbi: Remove pmp_region callbacks from sbi_platform_operations
a126886 lib: sbi: Configure PMP late in coldboot and warmboot path
f81d6f6 lib: sbi: Remove redundant hartid parameter from sbi_hart_init()
8b65005 include: sbi: Make hartmask pointer const in sbi_hartmask_test_hart()
b1678af lib: sbi: Add initial domain support
e73b92d lib: sbi: Extend sbi_hsm_hart_started_mask() for domains
3a30d2c lib: sbi: Extend sbi_hsm_hart_start() for domains
530e95b lib: sbi: Optimize sbi_hsm_hart_started_mask() implementation
3e20037 lib: sbi: Extend sbi_system_reset() for domains
5edbb7c lib: utils: Update fdt_reserved_memory_fixup() to use current domain
5fd99db lib: utils: Update fdt_cpu_fixup() to use current domain
e856462 lib: sbi: Remove redundant sbi_hart_pmp_xyz() functions
c10c30b lib: sbi: Configure PMP based on domain memory regions
c347408 lib: sbi: Display domain details in boot prints
fdf5d5c docs: Add initial documentation for domain support
74c0ea1 lib: utils: Implement "ranges" property parsing
bf21632 lib: sbi: Detect PMP granularity and number of address bits
a809f40 lib: sbi: Improve boot time print with additional PMP information
914f81f Makefile: Add option to use toolchain default ABI and ISA string
48616b3 lib: sbi: Improve boot prints in cold boot sequence
781cafd docs: fix a typo error
54a7734 include: sbi: Add SBI SRST extension related defines
c4acc60 include: sbi: Remove opensbi specific reset type defines
da07479 platform: Remove dummy system reset functions
5c429ae lib: sbi: Improve system reset platform operations
548d03e lib: sbi: Implement System Reset (SRST) SBI extension
2677324 firmware: fw_base: Optimize trap handler for RV32 systems
8d2edc4 lib: sbi: Fix sbi_hart_switch_mode() for u-mode
3d921fa lib: sbi: Fix typo in sbi_domain_finalize()
4e37022 lib: sbi: Fix domain_count check in sbi_domain_finalize()
c709d40 lib: sbi: Auto start domain only if boot HART within limits
c1f6d89 include: sbi: Use lower bits for domain memory region permissions
62ea4f4 lib: sbi: Override domain boot HART when coldboot HART assigned to it
555e737 lib: sbi: Add error prints in sbi_domain_finalize()
9b65dca include: sbi: Add domains_init() platform operation
c0d2baa docs: Add domain device tree binding documentation
ba741ea lib: utils: Add helper routines to populate domains from FDT
4fffb53 platform: generic: Populate domains from FDT
e7da0b4 lib: utils/libfdt: Upgrade to v1.6.0 release
2179777 lib: utils: Allow FDT domain iteration functions to fail
7baccfc lib: sbi: Add function to register new domain
6fc1986 lib: utils: Remove fdt_domain_get() function
a029bd9 lib: sbi: Remove domain_get() platform callback function
7dcb1e1 lib: sbi: Fix sign-extension in sbi_misaligned_load_handler()
80bc506 lib: sbi: Replace args with trap registers in ecall handler
b7df5e4 lib: sbi: Introduce sbi_trap_exit() API
12394a2 lib: sbi: Allow custom local TLB flush function
0d49c3b lib: utils: Fix shakti uart implementation
db56341 lib: sbi: Allow platforms to provide root domain memory regions
e884416 include: sbi: No need to pack struct sbi_trap_regs
386eba2 include: sbi: No need to pack struct sbi_scratch
1bbf361 include: sbi: Don't pack struct sbi_platform and sbi_platform_operations
da5293f platform: template: Fix compile error
234ed8e include: Bump-up version to 0.9

Signed-off-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: 20210119234438.10132-1-bmeng.cn@gmail.com
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>

show more ...


/qemu/.gitattributes
/qemu/.gitlab-ci.d/containers.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.yml
/qemu/.travis.yml
/qemu/Kconfig.host
/qemu/MAINTAINERS
/qemu/README.rst
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/plugin-gen.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/translator.c
/qemu/accel/tcg/user-exec.c
/qemu/backends/hostmem-file.c
/qemu/backends/hostmem-memfd.c
/qemu/block.c
/qemu/block/backup-top.c
/qemu/block/backup.c
/qemu/block/commit.c
/qemu/block/crypto.c
/qemu/block/io.c
/qemu/block/mirror.c
/qemu/block/nbd.c
/qemu/block/qcow2.c
/qemu/block/raw-format.c
/qemu/blockdev-nbd.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bsd-user/elfload.c
/qemu/bsd-user/main.c
/qemu/bsd-user/mmap.c
/qemu/bsd-user/qemu.h
/qemu/chardev/char-socket.c
/qemu/configure
/qemu/contrib/ivshmem-server/main.c
/qemu/contrib/plugins/Makefile
/qemu/contrib/plugins/hotblocks.c
/qemu/contrib/plugins/hotpages.c
/qemu/contrib/plugins/howvec.c
/qemu/contrib/plugins/hwprofile.c
/qemu/contrib/plugins/lockstep.c
/qemu/default-configs/targets/hexagon-linux-user.mak
/qemu/disas/hexagon.c
/qemu/disas/meson.build
/qemu/docs/COLO-FT.txt
/qemu/docs/ccid.txt
/qemu/docs/colo-proxy.txt
/qemu/docs/devel/index.rst
/qemu/docs/devel/loads-stores.rst
/qemu/docs/devel/multi-process.rst
/qemu/docs/devel/style.rst
/qemu/docs/devel/tcg-plugins.rst
/qemu/docs/devel/testing.rst
/qemu/docs/devel/writing-qmp-commands.txt
/qemu/docs/interop/firmware.json
/qemu/docs/interop/live-block-operations.rst
/qemu/docs/interop/parallels.txt
/qemu/docs/interop/qmp-intro.txt
/qemu/docs/sphinx/qapidoc.py
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/cpu-hotplug.rst
/qemu/docs/system/cpu-models-x86.rst.inc
/qemu/docs/system/deprecated.rst
/qemu/docs/system/index.rst
/qemu/docs/system/multi-process.rst
/qemu/docs/system/s390x/3270.rst
/qemu/docs/system/target-avr.rst
/qemu/docs/system/vnc-security.rst
/qemu/docs/tools/qemu-nbd.rst
/qemu/docs/tools/qemu-storage-daemon.rst
/qemu/docs/tools/virtiofsd.rst
/qemu/docs/user/main.rst
/qemu/gdbstub.c
/qemu/hw/Kconfig
/qemu/hw/acpi/core.c
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/piix4.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/npcm7xx.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/xlnx-versal.c
/qemu/hw/block/fdc.c
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/nvme.c
/qemu/hw/block/xen-block.c
/qemu/hw/core/machine.c
/qemu/hw/i2c/meson.build
/qemu/hw/i2c/npcm7xx_smbus.c
/qemu/hw/i2c/trace-events
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_q35.c
/qemu/hw/i386/pc_sysfw.c
/qemu/hw/i386/vmmouse.c
/qemu/hw/i386/xen/xen_platform.c
/qemu/hw/ide/ahci.c
/qemu/hw/intc/loongson_liointc.c
/qemu/hw/intc/pnv_xive.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xive.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/isa/trace-events
/qemu/hw/isa/vt82c686.c
/qemu/hw/m68k/bootinfo.h
/qemu/hw/m68k/q800.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/meson.build
/qemu/hw/mips/bootloader.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/loongson3_bootp.h
/qemu/hw/mips/loongson3_virt.c
/qemu/hw/mips/meson.build
/qemu/hw/misc/arm_integrator_debug.c
/qemu/hw/misc/aspeed_xdma.c
/qemu/hw/misc/ivshmem.c
/qemu/hw/misc/sbsa_ec.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/virtio-net.c
/qemu/hw/pci-host/Kconfig
/qemu/hw/pci-host/gpex-acpi.c
/qemu/hw/pci-host/meson.build
/qemu/hw/pci-host/pnv_phb4.c
/qemu/hw/pci-host/remote.c
/qemu/hw/pci-host/trace-events
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_bmc.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_numa.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/remote/Kconfig
/qemu/hw/remote/iohub.c
/qemu/hw/remote/machine.c
/qemu/hw/remote/memory.c
/qemu/hw/remote/meson.build
/qemu/hw/remote/message.c
/qemu/hw/remote/mpqemu-link.c
/qemu/hw/remote/proxy-memory-listener.c
/qemu/hw/remote/proxy.c
/qemu/hw/remote/remote-obj.c
/qemu/hw/remote/trace-events
/qemu/hw/remote/trace.h
/qemu/hw/scsi/esp-pci.c
/qemu/hw/scsi/esp.c
/qemu/hw/scsi/lsi53c895a.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/spapr_vscsi.c
/qemu/hw/scsi/trace-events
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/scsi/virtio-scsi.c
/qemu/hw/scsi/vmw_pvscsi.c
/qemu/hw/sd/aspeed_sdhci.c
/qemu/hw/sd/core.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/sdhci.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/timer/arm_timer.c
/qemu/hw/tpm/tpm_tis_isa.c
/qemu/hw/tpm/tpm_tis_sysbus.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/pcap.c
/qemu/hw/usb/u2f-passthru.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/disas/dis-asm.h
/qemu/include/elf.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/gdbstub.h
/qemu/include/exec/memory.h
/qemu/include/exec/plugin-gen.h
/qemu/include/exec/ram_addr.h
/qemu/include/exec/tb-context.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/dma/pl080.h
/qemu/include/hw/i2c/npcm7xx_smbus.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/isa/vt82c686.h
/qemu/include/hw/mips/bootloader.h
/qemu/include/hw/misc/arm_integrator_debug.h
/qemu/include/hw/misc/aspeed_xdma.h
/qemu/include/hw/pci-host/remote.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/pci/pci_ids.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_numa.h
/qemu/include/hw/ppc/xive_regs.h
/qemu/include/hw/remote/iohub.h
/qemu/include/hw/remote/machine.h
/qemu/include/hw/remote/memory.h
/qemu/include/hw/remote/mpqemu-link.h
/qemu/include/hw/remote/proxy-memory-listener.h
/qemu/include/hw/remote/proxy.h
/qemu/include/hw/scsi/esp.h
/qemu/include/hw/scsi/scsi.h
/qemu/include/hw/sd/aspeed_sdhci.h
/qemu/include/hw/sd/sd.h
/qemu/include/hw/ssi/pl022.h
/qemu/include/io/channel.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/int128.h
/qemu/include/qemu/job.h
/qemu/include/qemu/mmap-alloc.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/typedefs.h
/qemu/include/scsi/utils.h
/qemu/include/standard-headers/asm-m68k/bootinfo-mac.h
/qemu/include/standard-headers/asm-m68k/bootinfo.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/hw_accel.h
/qemu/include/sysemu/iothread.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/replay.h
/qemu/include/sysemu/sev.h
/qemu/include/ui/gtk.h
/qemu/io/channel.c
/qemu/iothread.c
/qemu/job.c
/qemu/linux-user/aarch64/cpu_loop.c
/qemu/linux-user/aarch64/target_signal.h
/qemu/linux-user/aarch64/target_syscall.h
/qemu/linux-user/alpha/target_fcntl.h
/qemu/linux-user/alpha/target_signal.h
/qemu/linux-user/elfload.c
/qemu/linux-user/flatload.c
/qemu/linux-user/generic/signal.h
/qemu/linux-user/generic/sockbits.h
/qemu/linux-user/hexagon/cpu_loop.c
/qemu/linux-user/hexagon/signal.c
/qemu/linux-user/hexagon/sockbits.h
/qemu/linux-user/hexagon/syscall_nr.h
/qemu/linux-user/hexagon/target_cpu.h
/qemu/linux-user/hexagon/target_elf.h
/qemu/linux-user/hexagon/target_fcntl.h
/qemu/linux-user/hexagon/target_signal.h
/qemu/linux-user/hexagon/target_structs.h
/qemu/linux-user/hexagon/target_syscall.h
/qemu/linux-user/hexagon/termbits.h
/qemu/linux-user/hppa/cpu_loop.c
/qemu/linux-user/hppa/target_fcntl.h
/qemu/linux-user/hppa/target_signal.h
/qemu/linux-user/i386/cpu_loop.c
/qemu/linux-user/i386/signal.c
/qemu/linux-user/main.c
/qemu/linux-user/mips/sockbits.h
/qemu/linux-user/mips/target_signal.h
/qemu/linux-user/mips64/syscall_nr.h
/qemu/linux-user/mips64/target_elf.h
/qemu/linux-user/mips64/target_signal.h
/qemu/linux-user/mmap.c
/qemu/linux-user/ppc/signal.c
/qemu/linux-user/qemu.h
/qemu/linux-user/signal.c
/qemu/linux-user/sparc/target_signal.h
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/linux-user/uaccess.c
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block-dirty-bitmap.c
/qemu/monitor/monitor.c
/qemu/monitor/qmp.c
opensbi-riscv32-generic-fw_dynamic.bin
opensbi-riscv32-generic-fw_dynamic.elf
opensbi-riscv64-generic-fw_dynamic.bin
opensbi-riscv64-generic-fw_dynamic.elf
/qemu/plugins/api.c
/qemu/python/qemu/machine.py
/qemu/qapi/char.json
/qemu/qapi/migration.json
/qemu/qapi/misc-target.json
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qom/object.c
/qemu/replay/replay-internal.c
/qemu/replay/replay-time.c
/qemu/replay/replay.c
/qemu/roms/opensbi
/qemu/scripts/checkpatch.pl
/qemu/scripts/ci/coverage-summary.sh
/qemu/scripts/device-crash-test
/qemu/scripts/entitlement.sh
/qemu/scripts/fix-multiline-comments.sh
/qemu/scripts/gensyscalls.sh
/qemu/scripts/get_maintainer.pl
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/events.py
/qemu/scripts/qapi/gen.py
/qemu/scripts/qapi/introspect.py
/qemu/scripts/qapi/mypy.ini
/qemu/scripts/qapi/schema.py
/qemu/scripts/qapi/types.py
/qemu/scripts/qapi/visit.py
/qemu/scripts/qemu-binfmt-conf.sh
/qemu/scripts/qmp/qemu-ga-client
/qemu/scsi/utils.c
/qemu/softmmu/cpus.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/replay-tools.c
/qemu/target/arm/cpu-param.h
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/kvm.c
/qemu/target/arm/machine.c
/qemu/target/arm/mte_helper.c
/qemu/target/arm/op_helper.c
/qemu/target/arm/syndrome.h
/qemu/target/arm/tlb_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/avr/cpu.c
/qemu/target/cris/helper.c
/qemu/target/cris/mmu.c
/qemu/target/cris/mmu.h
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hexagon/README
/qemu/target/hexagon/arch.c
/qemu/target/hexagon/arch.h
/qemu/target/hexagon/attribs.h
/qemu/target/hexagon/attribs_def.h.inc
/qemu/target/hexagon/conv_emu.c
/qemu/target/hexagon/conv_emu.h
/qemu/target/hexagon/cpu-param.h
/qemu/target/hexagon/cpu.c
/qemu/target/hexagon/cpu.h
/qemu/target/hexagon/cpu_bits.h
/qemu/target/hexagon/decode.c
/qemu/target/hexagon/decode.h
/qemu/target/hexagon/dectree.py
/qemu/target/hexagon/fma_emu.c
/qemu/target/hexagon/fma_emu.h
/qemu/target/hexagon/gdbstub.c
/qemu/target/hexagon/gen_dectree_import.c
/qemu/target/hexagon/gen_helper_funcs.py
/qemu/target/hexagon/gen_helper_protos.py
/qemu/target/hexagon/gen_op_attribs.py
/qemu/target/hexagon/gen_op_regs.py
/qemu/target/hexagon/gen_opcodes_def.py
/qemu/target/hexagon/gen_printinsn.py
/qemu/target/hexagon/gen_semantics.c
/qemu/target/hexagon/gen_shortcode.py
/qemu/target/hexagon/gen_tcg.h
/qemu/target/hexagon/gen_tcg_func_table.py
/qemu/target/hexagon/gen_tcg_funcs.py
/qemu/target/hexagon/genptr.c
/qemu/target/hexagon/genptr.h
/qemu/target/hexagon/helper.h
/qemu/target/hexagon/hex_arch_types.h
/qemu/target/hexagon/hex_common.py
/qemu/target/hexagon/hex_regs.h
/qemu/target/hexagon/iclass.c
/qemu/target/hexagon/iclass.h
/qemu/target/hexagon/imported/allidefs.def
/qemu/target/hexagon/imported/alu.idef
/qemu/target/hexagon/imported/branch.idef
/qemu/target/hexagon/imported/compare.idef
/qemu/target/hexagon/imported/encode.def
/qemu/target/hexagon/imported/encode_pp.def
/qemu/target/hexagon/imported/encode_subinsn.def
/qemu/target/hexagon/imported/float.idef
/qemu/target/hexagon/imported/iclass.def
/qemu/target/hexagon/imported/ldst.idef
/qemu/target/hexagon/imported/macros.def
/qemu/target/hexagon/imported/mpy.idef
/qemu/target/hexagon/imported/shift.idef
/qemu/target/hexagon/imported/subinsns.idef
/qemu/target/hexagon/imported/system.idef
/qemu/target/hexagon/insn.h
/qemu/target/hexagon/internal.h
/qemu/target/hexagon/macros.h
/qemu/target/hexagon/meson.build
/qemu/target/hexagon/op_helper.c
/qemu/target/hexagon/opcodes.c
/qemu/target/hexagon/opcodes.h
/qemu/target/hexagon/printinsn.c
/qemu/target/hexagon/printinsn.h
/qemu/target/hexagon/reg_fields.c
/qemu/target/hexagon/reg_fields.h
/qemu/target/hexagon/reg_fields_def.h.inc
/qemu/target/hexagon/translate.c
/qemu/target/hexagon/translate.h
/qemu/target/hppa/op_helper.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/hvf/x86_emu.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/monitor.c
/qemu/target/i386/sev-stub.c
/qemu/target/i386/sev.c
/qemu/target/i386/sev_i386.h
/qemu/target/i386/tcg/mem_helper.c
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/lm32/translate.c
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/helper.c
/qemu/target/m68k/translate.c
/qemu/target/meson.build
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/internal.h
/qemu/target/mips/kvm.c
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/tlb_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate.h
/qemu/target/moxie/translate.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/translate_init.c.inc
/qemu/target/riscv/cpu.h
/qemu/target/s390x/kvm.c
/qemu/target/s390x/mem_helper.c
/qemu/target/sh4/cpu.c
/qemu/target/sh4/gdbstub.c
/qemu/target/unicore32/translate.c
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/acceptance/boot_linux.py
/qemu/tests/acceptance/machine_mips_loongson3v.py
/qemu/tests/acceptance/tcg_plugins.py
/qemu/tests/acceptance/virtio-gpu.py
/qemu/tests/acceptance/virtiofs_submounts.py
/qemu/tests/data/acpi/pc/DSDT.nohpet
/qemu/tests/data/acpi/pc/FACP.nosmm
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.nohpet
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.tis
/qemu/tests/data/acpi/q35/FACP.nosmm
/qemu/tests/data/acpi/virt/DSDT.pxb
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/dockerfiles/fedora-cris-cross.docker
/qemu/tests/docker/dockerfiles/fedora-i386-cross.docker
/qemu/tests/docker/dockerfiles/fedora-win32-cross.docker
/qemu/tests/docker/dockerfiles/fedora-win64-cross.docker
/qemu/tests/docker/dockerfiles/fedora.docker
/qemu/tests/docker/dockerfiles/ubuntu2004.docker
/qemu/tests/guest-debug/run-test.py
/qemu/tests/plugin/insn.c
/qemu/tests/plugin/mem.c
/qemu/tests/qemu-iotests/172.out
/qemu/tests/qemu-iotests/210.out
/qemu/tests/qemu-iotests/259
/qemu/tests/qemu-iotests/264
/qemu/tests/qemu-iotests/264.out
/qemu/tests/qemu-iotests/300
/qemu/tests/qemu-iotests/300.out
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/boot-sector.c
/qemu/tests/qtest/boot-serial-test.c
/qemu/tests/qtest/libqos/qgraph.c
/qemu/tests/qtest/libqos/qgraph.h
/qemu/tests/qtest/libqos/qgraph_internal.h
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_smbus-test.c
/qemu/tests/qtest/qos-test.c
/qemu/tests/qtest/test-x86-cpuid-compat.c
/qemu/tests/requirements.txt
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/mte-1.c
/qemu/tests/tcg/aarch64/mte-2.c
/qemu/tests/tcg/aarch64/mte-3.c
/qemu/tests/tcg/aarch64/mte-4.c
/qemu/tests/tcg/aarch64/mte.h
/qemu/tests/tcg/aarch64/pauth-2.c
/qemu/tests/tcg/configure.sh
/qemu/tests/tcg/hexagon/Makefile.target
/qemu/tests/tcg/hexagon/atomics.c
/qemu/tests/tcg/hexagon/dual_stores.c
/qemu/tests/tcg/hexagon/first.S
/qemu/tests/tcg/hexagon/float_convs.ref
/qemu/tests/tcg/hexagon/float_madds.ref
/qemu/tests/tcg/hexagon/fpstuff.c
/qemu/tests/tcg/hexagon/mem_noshuf.c
/qemu/tests/tcg/hexagon/misc.c
/qemu/tests/tcg/hexagon/preg_alias.c
/qemu/tests/tcg/i386/Makefile.softmmu-target
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/multiarch/system/Makefile.softmmu-target
/qemu/tests/tcg/x86_64/Makefile.softmmu-target
/qemu/tests/test-bdrv-graph-mod.c
/qemu/tests/test-char.c
/qemu/tools/meson.build
/qemu/tools/virtiofsd/fuse_common.h
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/fuse_lowlevel.h
/qemu/tools/virtiofsd/fuse_virtio.c
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/ui/cocoa.m
/qemu/ui/gtk-gl-area.c
/qemu/ui/spice-app.c
/qemu/ui/spice-display.c
/qemu/util/cutils.c
/qemu/util/event_notifier-posix.c
/qemu/util/mmap-alloc.c
/qemu/util/oslib-posix.c
c5ea4ec111-Jan-2021 Stefan Hajnoczi <stefanha@redhat.com>

pc-bios: update mirror URLs to GitLab

qemu.org is running out of bandwidth and the QEMU project is moving
towards a gating CI on GitLab. Use the GitLab repos instead of qemu.org
(they will become mi

pc-bios: update mirror URLs to GitLab

qemu.org is running out of bandwidth and the QEMU project is moving
towards a gating CI on GitLab. Use the GitLab repos instead of qemu.org
(they will become mirrors).

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20210111115017.156802-6-stefanha@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>

show more ...


/qemu/.github/lockdown.yml
/qemu/.gitlab-ci.yml
/qemu/.gitmodules
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/README.rst
/qemu/backends/rng-builtin.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/snapshot.c
/qemu/configure
/qemu/docs/devel/testing.rst
/qemu/docs/system/arm/versatile.rst
/qemu/docs/system/arm/vexpress.rst
/qemu/gdbstub.c
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/nvme-ns.h
/qemu/hw/block/nvme.c
/qemu/hw/block/nvme.h
/qemu/hw/block/trace-events
/qemu/hw/misc/imx7_ccm.c
/qemu/hw/misc/tz-ppc.c
/qemu/hw/nvram/nrf51_nvm.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/prep.c
/qemu/hw/ppc/prep_systemio.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/vfio/pci-quirks.c
/qemu/include/block/nvme.h
/qemu/include/block/snapshot.h
/qemu/include/exec/memory.h
/qemu/include/migration/snapshot.h
/qemu/include/qemu/userfaultfd.h
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/page_cache.c
/qemu/migration/page_cache.h
/qemu/migration/qemu-file.c
/qemu/migration/ram.c
/qemu/migration/ram.h
/qemu/migration/savevm.c
/qemu/migration/savevm.h
/qemu/migration/trace-events
/qemu/monitor/hmp-cmds.c
README
/qemu/qapi/job.json
/qemu/qapi/migration.json
/qemu/replay/replay-debugging.c
/qemu/replay/replay-snapshot.c
/qemu/scripts/mtest2make.py
/qemu/scripts/qapi/commands.py
/qemu/scripts/qapi/events.py
/qemu/scripts/qapi/gen.py
/qemu/scripts/qapi/main.py
/qemu/scripts/qapi/mypy.ini
/qemu/scripts/qapi/schema.py
/qemu/scripts/qapi/types.py
/qemu/scripts/qapi/visit.py
/qemu/scripts/userfaultfd-wrlat.py
/qemu/softmmu/cpu-throttle.c
/qemu/softmmu/vl.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/kvm/kvm.c
/qemu/tests/Makefile.include
/qemu/tests/acceptance/boot_linux.py
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/linux_ssh_mips_malta.py
/qemu/tests/acceptance/machine_m68k_nextcube.py
/qemu/tests/acceptance/machine_microblaze.py
/qemu/tests/acceptance/machine_ppc.py
/qemu/tests/acceptance/replay_kernel.py
/qemu/tests/acceptance/tesseract_utils.py
/qemu/tests/acceptance/virtiofs_submounts.py
/qemu/tests/docker/Makefile.include
/qemu/tests/docker/docker.py
/qemu/tests/docker/dockerfiles/empty.docker
/qemu/tests/qapi-schema/comments.out
/qemu/tests/qapi-schema/doc-good.out
/qemu/tests/qapi-schema/empty.out
/qemu/tests/qapi-schema/event-case.out
/qemu/tests/qapi-schema/include-repetition.out
/qemu/tests/qapi-schema/include-simple.out
/qemu/tests/qapi-schema/indented-expr.out
/qemu/tests/qapi-schema/qapi-schema-test.out
/qemu/tests/qemu-iotests/267.out
/qemu/tests/qemu-iotests/common.qemu
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/tcg/Makefile.qemu
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/util/meson.build
/qemu/util/trace-events
/qemu/util/userfaultfd.c
4b956a3931-Jan-2021 Sergei Trofimovich <slyfox@gentoo.org>

pc-bios/descriptors: fix paths in json files

Before the change /usr/share/qemu/firmware/50-edk2-x86_64-secure.json
contained the relative path:
"filename": "share/qemu/edk2-x86_64-secure

pc-bios/descriptors: fix paths in json files

Before the change /usr/share/qemu/firmware/50-edk2-x86_64-secure.json
contained the relative path:
"filename": "share/qemu/edk2-x86_64-secure-code.fd",
"filename": "share/qemu/edk2-i386-vars.fd",

After then change the paths are absolute:
"filename": "/usr/share/qemu/edk2-x86_64-secure-code.fd",
"filename": "/usr/share/qemu/edk2-i386-vars.fd",

The regression appeared in qemu-5.2.0 (seems to be related
to meson port).

CC: Paolo Bonzini <pbonzini@redhat.com>
CC: "Marc-André Lureau" <marcandre.lureau@redhat.com>
CC: "Philippe Mathieu-Daudé" <philmd@redhat.com>
Bug: https://bugs.gentoo.org/766743
Bug: https://bugs.launchpad.net/qemu/+bug/1913012
Signed-off-by: Jannik Glückert <jannik.glueckert@gmail.com>
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Message-Id: <20210131143434.2513363-1-slyfox@gentoo.org>
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...

6d21d60a22-Jan-2021 Philippe Mathieu-Daudé <philmd@redhat.com>

pc-bios/meson: Only install EDK2 blob firmwares with system emulation

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20210122204

pc-bios/meson: Only install EDK2 blob firmwares with system emulation

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20210122204441.2145197-4-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...


/qemu/.gitlab-ci.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/accel/accel-common.c
/qemu/accel/accel-softmmu.c
/qemu/accel/accel-softmmu.h
/qemu/accel/accel-user.c
/qemu/accel/hvf/entitlements.plist
/qemu/accel/kvm/kvm-accel-ops.c
/qemu/accel/kvm/kvm-all.c
/qemu/accel/kvm/kvm-cpus.h
/qemu/accel/kvm/meson.build
/qemu/accel/kvm/sev-stub.c
/qemu/accel/meson.build
/qemu/accel/qtest/qtest.c
/qemu/accel/stubs/kvm-stub.c
/qemu/accel/stubs/tcg-stub.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/cputlb.c
/qemu/accel/tcg/internal.h
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/tcg-accel-ops-icount.c
/qemu/accel/tcg/tcg-accel-ops-icount.h
/qemu/accel/tcg/tcg-accel-ops-mttcg.c
/qemu/accel/tcg/tcg-accel-ops-mttcg.h
/qemu/accel/tcg/tcg-accel-ops-rr.c
/qemu/accel/tcg/tcg-accel-ops-rr.h
/qemu/accel/tcg/tcg-accel-ops.c
/qemu/accel/tcg/tcg-accel-ops.h
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/user-exec.c
/qemu/accel/xen/xen-all.c
/qemu/backends/confidential-guest-support.c
/qemu/backends/hostmem-file.c
/qemu/backends/hostmem.c
/qemu/backends/meson.build
/qemu/block.c
/qemu/block/backup-top.c
/qemu/block/backup-top.h
/qemu/block/backup.c
/qemu/block/blkverify.c
/qemu/block/block-backend.c
/qemu/block/block-copy.c
/qemu/block/copy-on-read.c
/qemu/block/copy-on-read.h
/qemu/block/dirty-bitmap.c
/qemu/block/export/export.c
/qemu/block/file-posix.c
/qemu/block/gluster.c
/qemu/block/io.c
/qemu/block/monitor/block-hmp-cmds.c
/qemu/block/nbd.c
/qemu/block/nvme.c
/qemu/block/qapi.c
/qemu/block/qcow2-bitmap.c
/qemu/block/replication.c
/qemu/block/stream.c
/qemu/block/throttle-groups.c
/qemu/block/trace-events
/qemu/block/vmdk.c
/qemu/blockdev.c
/qemu/blockjob.c
/qemu/bsd-user/main.c
/qemu/chardev/char-socket.c
/qemu/configure
/qemu/contrib/vhost-user-gpu/vhost-user-gpu.c
/qemu/contrib/vhost-user-gpu/virgl.c
/qemu/contrib/vhost-user-gpu/vugpu.h
/qemu/cpu.c
/qemu/crypto/aes.c
/qemu/crypto/block-luks.c
/qemu/crypto/desrfb.c
/qemu/crypto/secret.c
/qemu/crypto/secret_common.c
/qemu/crypto/secret_keyring.c
/qemu/crypto/tlscredsanon.c
/qemu/crypto/tlscredspsk.c
/qemu/crypto/tlscredsx509.c
/qemu/docs/amd-memory-encryption.txt
/qemu/docs/confidential-guest-support.txt
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/clocks.rst
/qemu/docs/devel/fuzzing.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/testing.rst
/qemu/docs/devel/tracing.rst
/qemu/docs/interop/qmp-spec.txt
/qemu/docs/meson.build
/qemu/docs/nvdimm.txt
/qemu/docs/papr-pef.txt
/qemu/docs/specs/pci-ids.txt
/qemu/docs/specs/pvpanic.txt
/qemu/docs/system/arm/virt.rst
/qemu/docs/system/build-platforms.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/removed-features.rst
/qemu/docs/system/s390x/protvirt.rst
/qemu/docs/system/tls.rst
/qemu/docs/system/vnc-security.rst
/qemu/dump/dump.c
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p-proxy.c
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/9p.h
/qemu/hw/Kconfig
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/cpu.c
/qemu/hw/acpi/ghes.c
/qemu/hw/acpi/hmat.c
/qemu/hw/acpi/hmat.h
/qemu/hw/acpi/memory_hotplug.c
/qemu/hw/acpi/nvdimm.c
/qemu/hw/acpi/pci.c
/qemu/hw/acpi/vmgenid.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/armsse.c
/qemu/hw/arm/digic_boards.c
/qemu/hw/arm/microbit.c
/qemu/hw/arm/mps2-tz.c
/qemu/hw/arm/mps2.c
/qemu/hw/arm/musca.c
/qemu/hw/arm/netduino2.c
/qemu/hw/arm/netduinoplus2.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/block/dataplane/xen-block.c
/qemu/hw/block/fdc.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/nand.c
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/onenand.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/swim.c
/qemu/hw/block/virtio-blk.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/exynos4210_uart.c
/qemu/hw/core/cpu.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/ptimer.c
/qemu/hw/display/qxl-logger.c
/qemu/hw/display/qxl-render.c
/qemu/hw/display/qxl.c
/qemu/hw/display/vhost-user-gpu.c
/qemu/hw/display/virtio-gpu-base.c
/qemu/hw/display/virtio-gpu.c
/qemu/hw/display/virtio-vga.c
/qemu/hw/display/vmware_vga.c
/qemu/hw/dma/Kconfig
/qemu/hw/dma/meson.build
/qemu/hw/gpio/Kconfig
/qemu/hw/gpio/gpio_pwr.c
/qemu/hw/gpio/meson.build
/qemu/hw/i386/Kconfig
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/acpi-common.h
/qemu/hw/i386/acpi-microvm.c
/qemu/hw/i386/microvm.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/i386/pc_sysfw.c
/qemu/hw/ide/core.c
/qemu/hw/intc/arm_gic.c
/qemu/hw/mem/memory-device.c
/qemu/hw/mem/nvdimm.c
/qemu/hw/mips/jazz.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/meson.build
/qemu/hw/misc/npcm7xx_pwm.c
/qemu/hw/misc/pvpanic-isa.c
/qemu/hw/misc/pvpanic-pci.c
/qemu/hw/misc/pvpanic.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/net/allwinner-sun8i-emac.c
/qemu/hw/net/cadence_gem.c
/qemu/hw/net/fsl_etsec/rings.c
/qemu/hw/net/ftgmac100.c
/qemu/hw/net/imx_fec.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/xen_nic.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/meson.build
/qemu/hw/ppc/pef.c
/qemu/hw/ppc/pnv_pnor.c
/qemu/hw/ppc/spapr.c
/qemu/hw/s390x/pv.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/scsi/scsi-generic.c
/qemu/hw/scsi/virtio-scsi-dataplane.c
/qemu/hw/sd/sd.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/timer/cmsdk-apb-dualtimer.c
/qemu/hw/timer/cmsdk-apb-timer.c
/qemu/hw/tpm/tpm_spapr.c
/qemu/hw/tpm/trace-events
/qemu/hw/usb/bus.c
/qemu/hw/usb/ccid-card-passthru.c
/qemu/hw/usb/core.c
/qemu/hw/usb/dev-smartcard-reader.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/dev-uas.c
/qemu/hw/usb/hcd-ehci.c
/qemu/hw/usb/hcd-xhci-pci.c
/qemu/hw/usb/hcd-xhci-sysbus.c
/qemu/hw/usb/hcd-xhci.h
/qemu/hw/usb/host-libusb.c
/qemu/hw/usb/meson.build
/qemu/hw/usb/pcap.c
/qemu/hw/vfio/ccw.c
/qemu/hw/vfio/display.c
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vhost-backend.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-balloon-pci.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-mmio.c
/qemu/hw/virtio/virtio-pmem.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/qemu/hw/xen/xen_pt_load_rom.c
/qemu/include/authz/listfile.h
/qemu/include/block/block-copy.h
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/blockjob_int.h
/qemu/include/block/nbd.h
/qemu/include/block/throttle-groups.h
/qemu/include/exec/confidential-guest-support.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/memory.h
/qemu/include/exec/memory_ldst_cached.h.inc
/qemu/include/exec/ram_addr.h
/qemu/include/hw/acpi/acpi-defs.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/acpi/ghes.h
/qemu/include/hw/acpi/pci.h
/qemu/include/hw/acpi/vmgenid.h
/qemu/include/hw/arm/armsse.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/boards.h
/qemu/include/hw/clock.h
/qemu/include/hw/core/accel-cpu.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/core/tcg-cpu-ops.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/mem/nvdimm.h
/qemu/include/hw/misc/pvpanic.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/ppc/pef.h
/qemu/include/hw/ptimer.h
/qemu/include/hw/s390x/pv.h
/qemu/include/hw/sd/sd.h
/qemu/include/hw/ssi/imx_spi.h
/qemu/include/hw/timer/cmsdk-apb-dualtimer.h
/qemu/include/hw/timer/cmsdk-apb-timer.h
/qemu/include/hw/usb.h
/qemu/include/hw/virtio/virtio-gpu.h
/qemu/include/hw/watchdog/cmsdk-apb-watchdog.h
/qemu/include/net/checksum.h
/qemu/include/qapi/util.h
/qemu/include/qemu/accel.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/crc-ccitt.h
/qemu/include/qemu/error-report.h
/qemu/include/qemu/event_notifier.h
/qemu/include/qemu/fifo8.h
/qemu/include/qemu/iov.h
/qemu/include/qemu/mmap-alloc.h
/qemu/include/qemu/osdep.h
/qemu/include/qemu/typedefs.h
/qemu/include/qom/object.h
/qemu/include/scsi/utils.h
/qemu/include/standard-headers/drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.h
/qemu/include/standard-headers/drm/drm_fourcc.h
/qemu/include/standard-headers/linux/const.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/fuse.h
/qemu/include/standard-headers/linux/kernel.h
/qemu/include/standard-headers/linux/pci_regs.h
/qemu/include/standard-headers/linux/vhost_types.h
/qemu/include/standard-headers/linux/virtio_gpu.h
/qemu/include/standard-headers/linux/virtio_ids.h
/qemu/include/sysemu/accel-ops.h
/qemu/include/sysemu/block-backend.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/hvf.h
/qemu/include/sysemu/kvm.h
/qemu/include/sysemu/kvm_int.h
/qemu/include/sysemu/sev.h
/qemu/include/tcg/tcg.h
/qemu/include/ui/console.h
/qemu/include/ui/egl-context.h
/qemu/include/ui/egl-helpers.h
/qemu/include/ui/gtk.h
/qemu/include/ui/qemu-spice.h
/qemu/include/ui/sdl2.h
/qemu/iothread.c
/qemu/job-qmp.c
/qemu/job.c
/qemu/linux-headers/asm-arm64/kvm.h
/qemu/linux-headers/asm-generic/unistd.h
/qemu/linux-headers/asm-mips/unistd_n32.h
/qemu/linux-headers/asm-mips/unistd_n64.h
/qemu/linux-headers/asm-mips/unistd_o32.h
/qemu/linux-headers/asm-powerpc/unistd_32.h
/qemu/linux-headers/asm-powerpc/unistd_64.h
/qemu/linux-headers/asm-s390/unistd_32.h
/qemu/linux-headers/asm-s390/unistd_64.h
/qemu/linux-headers/asm-x86/kvm.h
/qemu/linux-headers/asm-x86/unistd_32.h
/qemu/linux-headers/asm-x86/unistd_64.h
/qemu/linux-headers/asm-x86/unistd_x32.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/userfaultfd.h
/qemu/linux-headers/linux/vfio.h
/qemu/linux-headers/linux/vhost.h
/qemu/linux-user/alpha/target_fcntl.h
/qemu/linux-user/generic/fcntl.h
/qemu/linux-user/main.c
/qemu/linux-user/strace.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/memory_ldst.c.inc
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/migration.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/qmp-cmds-control.c
/qemu/monitor/qmp-cmds.c
/qemu/monitor/qmp.c
/qemu/monitor/trace-events
/qemu/net/checksum.c
/qemu/net/filter-rewriter.c
/qemu/net/net.c
/qemu/net/slirp.c
/qemu/os-posix.c
meson.build
/qemu/qapi/block-core.json
/qemu/qapi/misc.json
/qemu/qemu-img.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/commands-posix.c
/qemu/qga/commands-win32.c
/qemu/qobject/json-parser.c
/qemu/qobject/qdict.c
/qemu/qobject/qjson.c
/qemu/qom/object.c
/qemu/scripts/entitlement.sh
/qemu/scripts/git-submodule.sh
/qemu/scripts/oss-fuzz/minimize_qtest_trace.py
/qemu/scripts/simplebench/bench-backup.py
/qemu/scripts/simplebench/bench-example.py
/qemu/scripts/simplebench/bench_block_job.py
/qemu/scripts/simpletrace.py
/qemu/scripts/tracetool/backend/log.py
/qemu/scripts/tracetool/format/log_stap.py
/qemu/scripts/update-linux-headers.sh
/qemu/scsi/pr-manager.c
/qemu/scsi/utils.c
/qemu/softmmu/cpus.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qtest.c
/qemu/softmmu/rtc.c
/qemu/softmmu/runstate.c
/qemu/softmmu/tpm.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/target/alpha/cpu.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/cpu_tcg.c
/qemu/target/arm/helper.c
/qemu/target/arm/internals.h
/qemu/target/arm/kvm64.c
/qemu/target/avr/cpu.c
/qemu/target/avr/helper.c
/qemu/target/cris/cpu.c
/qemu/target/cris/helper.c
/qemu/target/hppa/cpu.c
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/hax/hax-accel-ops.c
/qemu/target/i386/hax/hax-accel-ops.h
/qemu/target/i386/hax/hax-all.c
/qemu/target/i386/hax/hax-mem.c
/qemu/target/i386/hax/hax-posix.c
/qemu/target/i386/hax/hax-windows.c
/qemu/target/i386/hax/hax-windows.h
/qemu/target/i386/hax/meson.build
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/hvf-accel-ops.c
/qemu/target/i386/hvf/hvf-accel-ops.h
/qemu/target/i386/hvf/hvf-i386.h
/qemu/target/i386/hvf/hvf.c
/qemu/target/i386/hvf/meson.build
/qemu/target/i386/hvf/x86_task.c
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/kvm/kvm.c
/qemu/target/i386/machine.c
/qemu/target/i386/sev-stub.c
/qemu/target/i386/sev.c
/qemu/target/i386/tcg/excp_helper.c
/qemu/target/i386/tcg/misc_helper.c
/qemu/target/i386/tcg/tcg-cpu.c
/qemu/target/i386/tcg/translate.c
/qemu/target/i386/whpx/meson.build
/qemu/target/i386/whpx/whpx-accel-ops.c
/qemu/target/i386/whpx/whpx-accel-ops.h
/qemu/target/i386/whpx/whpx-all.c
/qemu/target/lm32/cpu.c
/qemu/target/m68k/cpu.c
/qemu/target/microblaze/cpu.c
/qemu/target/microblaze/cpu.h
/qemu/target/microblaze/helper.c
/qemu/target/microblaze/mmu.c
/qemu/target/microblaze/mmu.h
/qemu/target/mips/cpu.c
/qemu/target/moxie/cpu.c
/qemu/target/nios2/cpu.c
/qemu/target/openrisc/cpu.c
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/translate_init.c.inc
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu_helper.c
/qemu/target/rx/cpu.c
/qemu/target/rx/op_helper.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/excp_helper.c
/qemu/target/s390x/insn-data.def
/qemu/target/s390x/kvm.c
/qemu/target/s390x/mem_helper.c
/qemu/target/s390x/misc_helper.c
/qemu/target/s390x/translate.c
/qemu/target/sh4/cpu.c
/qemu/target/sparc/cpu.c
/qemu/target/tilegx/cpu.c
/qemu/target/tricore/cpu.c
/qemu/target/unicore32/cpu.c
/qemu/target/xtensa/cpu.c
/qemu/target/xtensa/helper.c
/qemu/tcg/aarch64/tcg-target-con-set.h
/qemu/tcg/aarch64/tcg-target-con-str.h
/qemu/tcg/aarch64/tcg-target.c.inc
/qemu/tcg/arm/tcg-target-con-set.h
/qemu/tcg/arm/tcg-target-con-str.h
/qemu/tcg/arm/tcg-target.c.inc
/qemu/tcg/i386/tcg-target-con-set.h
/qemu/tcg/i386/tcg-target-con-str.h
/qemu/tcg/i386/tcg-target.c.inc
/qemu/tcg/mips/tcg-target-con-set.h
/qemu/tcg/mips/tcg-target-con-str.h
/qemu/tcg/mips/tcg-target.c.inc
/qemu/tcg/ppc/tcg-target-con-set.h
/qemu/tcg/ppc/tcg-target-con-str.h
/qemu/tcg/ppc/tcg-target.c.inc
/qemu/tcg/riscv/tcg-target-con-set.h
/qemu/tcg/riscv/tcg-target-con-str.h
/qemu/tcg/riscv/tcg-target.c.inc
/qemu/tcg/s390/tcg-target-con-set.h
/qemu/tcg/s390/tcg-target-con-str.h
/qemu/tcg/s390/tcg-target.c.inc
/qemu/tcg/sparc/tcg-target-con-set.h
/qemu/tcg/sparc/tcg-target-con-str.h
/qemu/tcg/sparc/tcg-target.c.inc
/qemu/tcg/sparc/tcg-target.h
/qemu/tcg/tcg-common.c
/qemu/tcg/tcg.c
/qemu/tcg/tci.c
/qemu/tcg/tci/tcg-target-con-set.h
/qemu/tcg/tci/tcg-target-con-str.h
/qemu/tcg/tci/tcg-target.c.inc
/qemu/tcg/tci/tcg-target.h
/qemu/tests/Makefile.include
/qemu/tests/acceptance/virtio-gpu.py
/qemu/tests/acceptance/vnc.py
/qemu/tests/check-block.sh
/qemu/tests/crypto-tls-x509-helpers.c
/qemu/tests/crypto-tls-x509-helpers.h
/qemu/tests/data/acpi/microvm/APIC
/qemu/tests/data/acpi/microvm/APIC.ioapic2
/qemu/tests/data/acpi/microvm/APIC.pcie
/qemu/tests/data/acpi/microvm/DSDT
/qemu/tests/data/acpi/microvm/DSDT.ioapic2
/qemu/tests/data/acpi/microvm/DSDT.pcie
/qemu/tests/data/acpi/microvm/DSDT.rtc
/qemu/tests/data/acpi/microvm/DSDT.usb
/qemu/tests/data/acpi/microvm/FACP
/qemu/tests/data/acpi/pc/APIC
/qemu/tests/data/acpi/pc/APIC.acpihmat
/qemu/tests/data/acpi/pc/APIC.cphp
/qemu/tests/data/acpi/pc/APIC.dimmpxm
/qemu/tests/data/acpi/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/pc/FACP
/qemu/tests/data/acpi/pc/HMAT.acpihmat
/qemu/tests/data/acpi/pc/HPET
/qemu/tests/data/acpi/pc/NFIT.dimmpxm
/qemu/tests/data/acpi/pc/SLIT.cphp
/qemu/tests/data/acpi/pc/SLIT.memhp
/qemu/tests/data/acpi/pc/SRAT.acpihmat
/qemu/tests/data/acpi/pc/SRAT.cphp
/qemu/tests/data/acpi/pc/SRAT.dimmpxm
/qemu/tests/data/acpi/pc/SRAT.memhp
/qemu/tests/data/acpi/pc/SRAT.numamem
/qemu/tests/data/acpi/pc/SSDT.dimmpxm
/qemu/tests/data/acpi/pc/WAET
/qemu/tests/data/acpi/q35/APIC
/qemu/tests/data/acpi/q35/APIC.acpihmat
/qemu/tests/data/acpi/q35/APIC.cphp
/qemu/tests/data/acpi/q35/APIC.dimmpxm
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.tis
/qemu/tests/data/acpi/q35/FACP
/qemu/tests/data/acpi/q35/HMAT.acpihmat
/qemu/tests/data/acpi/q35/HPET
/qemu/tests/data/acpi/q35/MCFG
/qemu/tests/data/acpi/q35/NFIT.dimmpxm
/qemu/tests/data/acpi/q35/SLIT.cphp
/qemu/tests/data/acpi/q35/SLIT.memhp
/qemu/tests/data/acpi/q35/SRAT.acpihmat
/qemu/tests/data/acpi/q35/SRAT.cphp
/qemu/tests/data/acpi/q35/SRAT.dimmpxm
/qemu/tests/data/acpi/q35/SRAT.memhp
/qemu/tests/data/acpi/q35/SRAT.mmio64
/qemu/tests/data/acpi/q35/SRAT.numamem
/qemu/tests/data/acpi/q35/SSDT.dimmpxm
/qemu/tests/data/acpi/q35/TPM2.tis
/qemu/tests/data/acpi/q35/WAET
/qemu/tests/data/acpi/virt/APIC
/qemu/tests/data/acpi/virt/APIC.memhp
/qemu/tests/data/acpi/virt/APIC.numamem
/qemu/tests/data/acpi/virt/DSDT
/qemu/tests/data/acpi/virt/DSDT.memhp
/qemu/tests/data/acpi/virt/DSDT.numamem
/qemu/tests/data/acpi/virt/DSDT.pxb
/qemu/tests/data/acpi/virt/FACP
/qemu/tests/data/acpi/virt/FACP.memhp
/qemu/tests/data/acpi/virt/FACP.numamem
/qemu/tests/data/acpi/virt/GTDT
/qemu/tests/data/acpi/virt/GTDT.memhp
/qemu/tests/data/acpi/virt/GTDT.numamem
/qemu/tests/data/acpi/virt/MCFG
/qemu/tests/data/acpi/virt/MCFG.memhp
/qemu/tests/data/acpi/virt/MCFG.numamem
/qemu/tests/data/acpi/virt/NFIT.memhp
/qemu/tests/data/acpi/virt/SLIT.memhp
/qemu/tests/data/acpi/virt/SPCR
/qemu/tests/data/acpi/virt/SPCR.memhp
/qemu/tests/data/acpi/virt/SPCR.numamem
/qemu/tests/data/acpi/virt/SRAT.memhp
/qemu/tests/data/acpi/virt/SRAT.numamem
/qemu/tests/data/acpi/virt/SSDT.memhp
/qemu/tests/docker/dockerfiles/centos7.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-amd64.docker
/qemu/tests/docker/dockerfiles/fedora.docker
/qemu/tests/docker/dockerfiles/ubuntu2004.docker
/qemu/tests/meson.build
/qemu/tests/pkix_asn1_tab.c
/qemu/tests/qemu-iotests/030
/qemu/tests/qemu-iotests/056
/qemu/tests/qemu-iotests/109.out
/qemu/tests/qemu-iotests/118
/qemu/tests/qemu-iotests/118.out
/qemu/tests/qemu-iotests/124
/qemu/tests/qemu-iotests/129
/qemu/tests/qemu-iotests/141.out
/qemu/tests/qemu-iotests/146.out
/qemu/tests/qemu-iotests/178
/qemu/tests/qemu-iotests/178.out.qcow2
/qemu/tests/qemu-iotests/178.out.raw
/qemu/tests/qemu-iotests/185
/qemu/tests/qemu-iotests/185.out
/qemu/tests/qemu-iotests/206.out
/qemu/tests/qemu-iotests/219
/qemu/tests/qemu-iotests/233
/qemu/tests/qemu-iotests/245
/qemu/tests/qemu-iotests/257
/qemu/tests/qemu-iotests/257.out
/qemu/tests/qemu-iotests/297
/qemu/tests/qemu-iotests/297.out
/qemu/tests/qemu-iotests/300
/qemu/tests/qemu-iotests/310
/qemu/tests/qemu-iotests/310.out
/qemu/tests/qemu-iotests/313
/qemu/tests/qemu-iotests/313.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/findtests.py
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/meson.build
/qemu/tests/qemu-iotests/pylintrc
/qemu/tests/qemu-iotests/testenv.py
/qemu/tests/qemu-iotests/testrunner.py
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-postcopy-test.out
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-test
/qemu/tests/qemu-iotests/tests/migrate-bitmaps-test.out
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/cmsdk-apb-dualtimer-test.c
/qemu/tests/qtest/cmsdk-apb-timer-test.c
/qemu/tests/qtest/cmsdk-apb-watchdog-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_pwm-test.c
/qemu/tests/qtest/pvpanic-pci-test.c
/qemu/tests/qtest/virtio-scsi-test.c
/qemu/tests/qtest/xlnx-can-test.c
/qemu/tests/tcg/s390x/exrl-trt.c
/qemu/tests/tcg/s390x/exrl-trtr.c
/qemu/tests/test-authz-pam.c
/qemu/tests/test-qemu-opts.c
/qemu/tests/test-qobject-output-visitor.c
/qemu/tests/test-string-output-visitor.c
/qemu/tests/test-write-threshold.c
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/trace/meson.build
/qemu/ui/console.c
/qemu/ui/egl-context.c
/qemu/ui/egl-headless.c
/qemu/ui/egl-helpers.c
/qemu/ui/gtk-egl.c
/qemu/ui/gtk-gl-area.c
/qemu/ui/gtk.c
/qemu/ui/keycodemapdb
/qemu/ui/meson.build
/qemu/ui/sdl2-gl.c
/qemu/ui/sdl2.c
/qemu/ui/spice-core.c
/qemu/ui/spice-display.c
/qemu/ui/vnc-stubs.c
/qemu/ui/vnc.c
/qemu/util/coroutine-sigaltstack.c
/qemu/util/crc-ccitt.c
/qemu/util/event_notifier-posix.c
/qemu/util/fifo8.c
/qemu/util/iov.c
/qemu/util/meson.build
/qemu/util/mmap-alloc.c
/qemu/util/oslib-posix.c
/qemu/util/qemu-error.c
/qemu/util/qemu-option.c
45b545dd14-Jan-2021 Philippe Mathieu-Daudé <philmd@redhat.com>

meson.build: Detect bzip2 program

The --enable-bzip2/--disable-bzip2 configure arguments are
somehow misleading, they check for the bzip2 library, not
the bzip2 program.

We need the bzip2 program t

meson.build: Detect bzip2 program

The --enable-bzip2/--disable-bzip2 configure arguments are
somehow misleading, they check for the bzip2 library, not
the bzip2 program.

We need the bzip2 program to install the EDK2 firmware blobs
(see commit 623ef637a2e "configure: Check bzip2 is available").

Check if the bzip2 program in the global meson.build to avoid
the configuration to succeed, but a later when trying to install
the firmware blobs:

../pc-bios/meson.build:5:2: ERROR: Program 'bzip2' not found

Reported-by: John Snow <jsnow@redhat.com>
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Fixes: c8d5450bba3 ("configure: move install_blobs from configure to meson")
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210114174509.2944817-3-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...

eae9a1d114-Jan-2021 Philippe Mathieu-Daudé <philmd@redhat.com>

meson.build: Declare global edk2_targets / install_edk2_blobs variables

Globally declare in the main meson.build:
- the list of EDK2 targets,
- whether the EDK2 blobs have to be installed.

Signed-o

meson.build: Declare global edk2_targets / install_edk2_blobs variables

Globally declare in the main meson.build:
- the list of EDK2 targets,
- whether the EDK2 blobs have to be installed.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210114174509.2944817-2-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...


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

build: -no-pie is no functional linker flag

Recent binutils changes dropping unsupported options [1] caused a build
issue in regard to the optionroms.

ld -m elf_i386 -T /<<PKGBUILDDIR>>/pc-bios/o

build: -no-pie is no functional linker flag

Recent binutils changes dropping unsupported options [1] caused a build
issue in regard to the optionroms.

ld -m elf_i386 -T /<<PKGBUILDDIR>>/pc-bios/optionrom//flat.lds -no-pie \
-s -o multiboot.img multiboot.o
ld.bfd: Error: unable to disambiguate: -no-pie (did you mean --no-pie ?)

This isn't really a regression in ld.bfd, filing the bug upstream
revealed that this never worked as a ld flag [2] - in fact it seems we
were by accident setting --nmagic).

Since it never had the wanted effect this usage of LDFLAGS_NOPIE, should be
droppable without any effect. This also is the only use-case of LDFLAGS_NOPIE
in .mak, therefore we can also remove it from being added there.

[1]: https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=983d925d
[2]: https://sourceware.org/bugzilla/show_bug.cgi?id=27050#c5

Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
Message-Id: <20201214150938.1297512-1-christian.ehrhardt@canonical.com>
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...


/qemu/.cirrus.yml
/qemu/.gitlab-ci.d/crossbuilds.yml
/qemu/.gitlab-ci.yml
/qemu/.mailmap
/qemu/.travis.yml
/qemu/CODING_STYLE.rst
/qemu/MAINTAINERS
/qemu/VERSION
/qemu/accel/kvm/kvm-all.c
/qemu/accel/tcg/cpu-exec.c
/qemu/accel/tcg/meson.build
/qemu/accel/tcg/tcg-all.c
/qemu/accel/tcg/tcg-cpus-icount.c
/qemu/accel/tcg/tcg-cpus-icount.h
/qemu/accel/tcg/tcg-cpus-mttcg.c
/qemu/accel/tcg/tcg-cpus-rr.c
/qemu/accel/tcg/tcg-cpus-rr.h
/qemu/accel/tcg/tcg-cpus.c
/qemu/accel/tcg/tcg-cpus.h
/qemu/accel/tcg/translate-all.c
/qemu/audio/audio.c
/qemu/audio/audio.h
/qemu/audio/coreaudio.c
/qemu/backends/tpm/tpm_util.c
/qemu/block.c
/qemu/block/accounting.c
/qemu/block/curl.c
/qemu/block/export/export.c
/qemu/block/export/fuse.c
/qemu/block/export/meson.build
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/file-posix.c
/qemu/block/io.c
/qemu/block/iscsi.c
/qemu/block/nvme.c
/qemu/block/qcow2-cluster.c
/qemu/block/quorum.c
/qemu/block/throttle-groups.c
/qemu/block/trace-events
/qemu/blockdev.c
/qemu/chardev/char-mux.c
/qemu/chardev/char.c
/qemu/chardev/meson.build
/qemu/configure
/qemu/contrib/elf2dmp/pdb.c
/qemu/contrib/elf2dmp/qemu_elf.c
/qemu/contrib/vhost-user-blk/meson.build
/qemu/contrib/vhost-user-blk/vhost-user-blk.c
/qemu/contrib/vhost-user-gpu/meson.build
/qemu/contrib/vhost-user-gpu/vhost-user-gpu.c
/qemu/contrib/vhost-user-gpu/virgl.c
/qemu/contrib/vhost-user-gpu/vugbm.c
/qemu/contrib/vhost-user-gpu/vugbm.h
/qemu/contrib/vhost-user-gpu/vugpu.h
/qemu/contrib/vhost-user-input/main.c
/qemu/contrib/vhost-user-input/meson.build
/qemu/contrib/vhost-user-scsi/meson.build
/qemu/contrib/vhost-user-scsi/vhost-user-scsi.c
/qemu/cpu.c
/qemu/docs/devel/loads-stores.rst
/qemu/docs/devel/writing-qmp-commands.txt
/qemu/docs/meson.build
/qemu/docs/specs/acpi_cpu_hotplug.txt
/qemu/docs/specs/tpm.rst
/qemu/docs/sphinx/kerneldoc.py
/qemu/docs/system/arm/aspeed.rst
/qemu/docs/system/arm/raspi.rst
/qemu/docs/system/arm/xscale.rst
/qemu/docs/system/cpu-hotplug.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/i386/microvm.rst
/qemu/docs/system/i386/pc.rst
/qemu/docs/system/index.rst
/qemu/docs/system/pr-manager.rst
/qemu/docs/system/removed-features.rst
/qemu/docs/system/target-arm.rst
/qemu/docs/system/target-i386.rst
/qemu/docs/system/virtio-net-failover.rst
/qemu/docs/system/virtio-pmem.rst
/qemu/docs/tools/conf.py
/qemu/docs/tools/index.rst
/qemu/docs/tools/qemu-pr-helper.rst
/qemu/fsdev/9p-marshal.h
/qemu/fsdev/file-op-9p.h
/qemu/hmp-commands.hx
/qemu/hw/Kconfig
/qemu/hw/acpi/aml-build.c
/qemu/hw/acpi/cpu.c
/qemu/hw/acpi/trace-events
/qemu/hw/alpha/dp264.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/armv7m.c
/qemu/hw/arm/aspeed.c
/qemu/hw/arm/aspeed_ast2600.c
/qemu/hw/arm/boot.c
/qemu/hw/arm/cubieboard.c
/qemu/hw/arm/digic_boards.c
/qemu/hw/arm/highbank.c
/qemu/hw/arm/npcm7xx_boards.c
/qemu/hw/arm/orangepi.c
/qemu/hw/arm/pxa2xx.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmu-common.c
/qemu/hw/arm/smmuv3-internal.h
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/spitz.c
/qemu/hw/arm/stellaris.c
/qemu/hw/arm/tosa.c
/qemu/hw/arm/vexpress.c
/qemu/hw/arm/virt-acpi-build.c
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-zcu102.c
/qemu/hw/arm/xlnx-zynqmp.c
/qemu/hw/arm/z2.c
/qemu/hw/audio/cs4231.c
/qemu/hw/avr/boot.c
/qemu/hw/block/m25p80.c
/qemu/hw/block/xen-block.c
/qemu/hw/char/serial.c
/qemu/hw/core/cpu.c
/qemu/hw/core/generic-loader.c
/qemu/hw/core/loader.c
/qemu/hw/core/machine-qmp-cmds.c
/qemu/hw/core/machine.c
/qemu/hw/core/meson.build
/qemu/hw/core/numa.c
/qemu/hw/core/qdev-prop-internal.h
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/core/qdev-properties.c
/qemu/hw/core/qdev.c
/qemu/hw/core/stream.c
/qemu/hw/cris/axis_dev88.c
/qemu/hw/cris/boot.c
/qemu/hw/cris/boot.h
/qemu/hw/display/Kconfig
/qemu/hw/display/artist.c
/qemu/hw/display/cg3.c
/qemu/hw/display/meson.build
/qemu/hw/display/pxa2xx_lcd.c
/qemu/hw/display/ssd0323.c
/qemu/hw/display/tcx.c
/qemu/hw/dma/xilinx_axidma.c
/qemu/hw/hppa/machine.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/acpi-common.c
/qemu/hw/i386/fw_cfg.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/kvm/apic.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/vmport.c
/qemu/hw/i386/x86.c
/qemu/hw/i386/xen/xen-hvm.c
/qemu/hw/ide/atapi.c
/qemu/hw/input/Kconfig
/qemu/hw/input/ads7846.c
/qemu/hw/input/meson.build
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/armv7m_nvic.c
/qemu/hw/intc/rx_icu.c
/qemu/hw/intc/spapr_xive.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/trace-events
/qemu/hw/intc/xics_kvm.c
/qemu/hw/intc/xive.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/lm32/milkymist.c
/qemu/hw/m68k/Kconfig
/qemu/hw/m68k/mcf5206.c
/qemu/hw/m68k/mcf5208.c
/qemu/hw/m68k/next-cube.c
/qemu/hw/m68k/q800.c
/qemu/hw/microblaze/boot.c
/qemu/hw/mips/boston.c
/qemu/hw/mips/cps.c
/qemu/hw/mips/fuloong2e.c
/qemu/hw/mips/jazz.c
/qemu/hw/mips/malta.c
/qemu/hw/mips/meson.build
/qemu/hw/mips/mipssim.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/emc141x.c
/qemu/hw/misc/imx25_ccm.c
/qemu/hw/misc/imx31_ccm.c
/qemu/hw/misc/imx6_ccm.c
/qemu/hw/misc/imx6_src.c
/qemu/hw/misc/imx6ul_ccm.c
/qemu/hw/misc/imx_ccm.c
/qemu/hw/misc/max111x.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/tmp421.c
/qemu/hw/misc/tz-mpc.c
/qemu/hw/moxie/moxiesim.c
/qemu/hw/net/can/meson.build
/qemu/hw/net/can/trace-events
/qemu/hw/net/can/trace.h
/qemu/hw/net/can/xlnx-zynqmp-can.c
/qemu/hw/net/dp8393x.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/virtio-net.c
/qemu/hw/net/xilinx_axienet.c
/qemu/hw/nios2/boot.c
/qemu/hw/nvram/fw_cfg.c
/qemu/hw/pci-host/gpex-acpi.c
/qemu/hw/pci-host/pam.c
/qemu/hw/pci-host/prep.c
/qemu/hw/pci-host/q35.c
/qemu/hw/pci/msix.c
/qemu/hw/pci/pci.c
/qemu/hw/ppc/e500.c
/qemu/hw/ppc/mac_newworld.c
/qemu/hw/ppc/mac_oldworld.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/ppc.c
/qemu/hw/ppc/ppc405_boards.c
/qemu/hw/ppc/ppc440_bamboo.c
/qemu/hw/ppc/prep.c
/qemu/hw/ppc/sam460ex.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_drc.c
/qemu/hw/ppc/spapr_events.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_irq.c
/qemu/hw/ppc/spapr_nvdimm.c
/qemu/hw/ppc/spapr_pci.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/ppc/trace-events
/qemu/hw/ppc/virtex_ml507.c
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/virt.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/rx/rx62n.c
/qemu/hw/s390x/css.c
/qemu/hw/s390x/ipl.c
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-skeys.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/scsi-bus.c
/qemu/hw/sd/ssi-sd.c
/qemu/hw/sh4/shix.c
/qemu/hw/smbios/smbios.c
/qemu/hw/sparc/leon3.c
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/sparc64.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/ssi/aspeed_smc.c
/qemu/hw/ssi/pl022.c
/qemu/hw/ssi/ssi.c
/qemu/hw/ssi/xilinx_spips.c
/qemu/hw/usb/core.c
/qemu/hw/vfio/common.c
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci-quirks.c
/qemu/hw/vfio/pci.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-balloon.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-pci.c
/qemu/hw/virtio/virtio-pci.h
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/wdt_diag288.c
/qemu/hw/xen/xen_pt.c
/qemu/hw/xen/xen_pt_config_init.c
/qemu/hw/xen/xen_pt_msi.c
/qemu/hw/xtensa/xtfpga.c
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/block/fuse.h
/qemu/include/block/nvme.h
/qemu/include/chardev/char.h
/qemu/include/exec/cpu-common.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/memory.h
/qemu/include/exec/poison.h
/qemu/include/hw/acpi/aml-build.h
/qemu/include/hw/acpi/cpu.h
/qemu/include/hw/arm/virt.h
/qemu/include/hw/arm/xlnx-zynqmp.h
/qemu/include/hw/block/swim.h
/qemu/include/hw/boards.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/display/macfb.h
/qemu/include/hw/i386/ioapic.h
/qemu/include/hw/i386/ioapic_internal.h
/qemu/include/hw/i386/microvm.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/intc/armv7m_nvic.h
/qemu/include/hw/mips/cpudevs.h
/qemu/include/hw/misc/emc141x_regs.h
/qemu/include/hw/misc/max111x.h
/qemu/include/hw/net/xlnx-zynqmp-can.h
/qemu/include/hw/nvram/fw_cfg.h
/qemu/include/hw/pci-host/gpex.h
/qemu/include/hw/pci-host/i440fx.h
/qemu/include/hw/pci-host/pam.h
/qemu/include/hw/pci-host/q35.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_drc.h
/qemu/include/hw/ppc/spapr_nvdimm.h
/qemu/include/hw/ppc/xics_spapr.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/qdev-properties.h
/qemu/include/hw/ssi/aspeed_smc.h
/qemu/include/hw/ssi/ssi.h
/qemu/include/hw/ssi/xilinx_spips.h
/qemu/include/hw/stream.h
/qemu/include/hw/vfio/vfio-common.h
/qemu/include/hw/virtio/virtio-net.h
/qemu/include/hw/xen/interface/io/ring.h
/qemu/include/migration/misc.h
/qemu/include/monitor/monitor.h
/qemu/include/net/net.h
/qemu/include/qapi/qmp/dispatch.h
/qemu/include/qapi/qmp/qerror.h
/qemu/include/qemu-common.h
/qemu/include/qemu/atomic.h
/qemu/include/qemu/compiler.h
/qemu/include/qemu/config-file.h
/qemu/include/qemu/datadir.h
/qemu/include/qemu/nvdimm-utils.h
/qemu/include/qemu/option.h
/qemu/include/qemu/plugin.h
/qemu/include/qemu/qemu-plugin.h
/qemu/include/qemu/vhost-user-server.h
/qemu/include/standard-headers/asm-x86/kvm_para.h
/qemu/include/sysemu/dma.h
/qemu/include/sysemu/runstate-action.h
/qemu/include/sysemu/runstate.h
/qemu/include/sysemu/sev.h
/qemu/include/sysemu/sysemu.h
/qemu/include/sysemu/whpx.h
/qemu/include/ui/console.h
/qemu/linux-user/arm/cpu_loop.c
/qemu/linux-user/ioctls.h
/qemu/linux-user/main.c
/qemu/linux-user/strace.c
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/migration.c
/qemu/monitor/hmp-cmds.c
/qemu/monitor/hmp.c
/qemu/monitor/misc.c
/qemu/monitor/qmp-cmds.c
/qemu/net/can/can_host.c
/qemu/net/dump.c
/qemu/net/filter-buffer.c
/qemu/net/filter-mirror.c
/qemu/net/filter-rewriter.c
/qemu/net/filter.c
/qemu/net/net.c
/qemu/net/tap.c
optionrom/Makefile
/qemu/plugins/loader.c
/qemu/python/qemu/machine.py
/qemu/qapi/block-core.json
/qemu/qapi/block-export.json
/qemu/qapi/block.json
/qemu/qapi/char.json
/qemu/qapi/control.json
/qemu/qapi/machine-target.json
/qemu/qapi/machine.json
/qemu/qapi/migration.json
/qemu/qapi/misc-target.json
/qemu/qapi/misc.json
/qemu/qapi/net.json
/qemu/qapi/pci.json
/qemu/qapi/qdev.json
/qemu/qapi/qmp-dispatch.c
/qemu/qapi/run-state.json
/qemu/qapi/ui.json
/qemu/qemu-options.hx
/qemu/qga/commands-win32.c
/qemu/qom/object.c
/qemu/qom/qom-qmp-cmds.c
/qemu/scripts/ci/gitlab-pipeline-status
/qemu/scripts/cocci-macro-file.h
/qemu/scripts/git.orderfile
/qemu/scripts/kernel-doc
/qemu/slirp
/qemu/softmmu/cpus.c
/qemu/softmmu/datadir.c
/qemu/softmmu/device_tree.c
/qemu/softmmu/dma-helpers.c
/qemu/softmmu/globals.c
/qemu/softmmu/icount.c
/qemu/softmmu/memory.c
/qemu/softmmu/meson.build
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/rtc.c
/qemu/softmmu/runstate-action.c
/qemu/softmmu/runstate.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/meson.build
/qemu/stubs/qmp-command-available.c
/qemu/subprojects/libvhost-user/libvhost-user-glib.c
/qemu/subprojects/libvhost-user/libvhost-user-glib.h
/qemu/subprojects/libvhost-user/libvhost-user.c
/qemu/subprojects/libvhost-user/libvhost-user.h
/qemu/subprojects/libvhost-user/link-test.c
/qemu/subprojects/libvhost-user/meson.build
/qemu/target/arm/arm-semi.c
/qemu/target/arm/cpu.c
/qemu/target/arm/cpu.h
/qemu/target/arm/cpu64.c
/qemu/target/arm/helper.c
/qemu/target/arm/m-nocp.decode
/qemu/target/arm/m_helper.c
/qemu/target/arm/t32.decode
/qemu/target/arm/translate-vfp.c.inc
/qemu/target/arm/translate.c
/qemu/target/arm/vfp.decode
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/kvm.c
/qemu/target/i386/kvm_i386.h
/qemu/target/i386/meson.build
/qemu/target/i386/monitor.c
/qemu/target/i386/seg_helper.c
/qemu/target/i386/sev-stub.c
/qemu/target/i386/sev.c
/qemu/target/i386/trace-events
/qemu/target/i386/translate.c
/qemu/target/i386/whp-dispatch.h
/qemu/target/i386/whpx-all.c
/qemu/target/i386/whpx-apic.c
/qemu/target/m68k/cpu.c
/qemu/target/m68k/cpu.h
/qemu/target/m68k/fpu_helper.c
/qemu/target/m68k/m68k-semi.c
/qemu/target/m68k/translate.c
/qemu/target/mips/addr.c
/qemu/target/mips/cp0_helper.c
/qemu/target/mips/cpu.c
/qemu/target/mips/cpu.h
/qemu/target/mips/fpu_helper.c
/qemu/target/mips/helper.c
/qemu/target/mips/internal.h
/qemu/target/mips/kvm.c
/qemu/target/mips/meson.build
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate_init.c.inc
/qemu/target/ppc/cpu-qom.h
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/machine.c
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate/vsx-impl.c.inc
/qemu/target/ppc/translate/vsx-ops.c.inc
/qemu/target/ppc/translate_init.c.inc
/qemu/target/s390x/cpu.c
/qemu/target/s390x/excp_helper.c
/qemu/target/s390x/mem_helper.c
/qemu/target/s390x/mmu_helper.c
/qemu/target/sparc/cpu.c
/qemu/tests/acceptance/avocado_qemu/__init__.py
/qemu/tests/acceptance/machine_s390_ccw_virtio.py
/qemu/tests/data/acpi/microvm/APIC.ioapic2
/qemu/tests/data/acpi/microvm/DSDT.ioapic2
/qemu/tests/data/acpi/pc/DSDT
/qemu/tests/data/acpi/pc/DSDT.acpihmat
/qemu/tests/data/acpi/pc/DSDT.bridge
/qemu/tests/data/acpi/pc/DSDT.cphp
/qemu/tests/data/acpi/pc/DSDT.dimmpxm
/qemu/tests/data/acpi/pc/DSDT.hpbridge
/qemu/tests/data/acpi/pc/DSDT.hpbrroot
/qemu/tests/data/acpi/pc/DSDT.ipmikcs
/qemu/tests/data/acpi/pc/DSDT.memhp
/qemu/tests/data/acpi/pc/DSDT.numamem
/qemu/tests/data/acpi/pc/DSDT.roothp
/qemu/tests/data/acpi/q35/DSDT
/qemu/tests/data/acpi/q35/DSDT.acpihmat
/qemu/tests/data/acpi/q35/DSDT.bridge
/qemu/tests/data/acpi/q35/DSDT.cphp
/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/qemu/tests/data/acpi/q35/DSDT.ipmibt
/qemu/tests/data/acpi/q35/DSDT.memhp
/qemu/tests/data/acpi/q35/DSDT.mmio64
/qemu/tests/data/acpi/q35/DSDT.numamem
/qemu/tests/data/acpi/q35/DSDT.tis
/qemu/tests/data/acpi/virt/DSDT.pxb
/qemu/tests/docker/dockerfiles/debian10.docker
/qemu/tests/docker/dockerfiles/fedora-win32-cross.docker
/qemu/tests/docker/dockerfiles/fedora-win64-cross.docker
/qemu/tests/docker/dockerfiles/ubuntu2004.docker
/qemu/tests/meson.build
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/qemu-iotests/025
/qemu/tests/qemu-iotests/026
/qemu/tests/qemu-iotests/028
/qemu/tests/qemu-iotests/028.out
/qemu/tests/qemu-iotests/031
/qemu/tests/qemu-iotests/034
/qemu/tests/qemu-iotests/036
/qemu/tests/qemu-iotests/037
/qemu/tests/qemu-iotests/038
/qemu/tests/qemu-iotests/039
/qemu/tests/qemu-iotests/040
/qemu/tests/qemu-iotests/046
/qemu/tests/qemu-iotests/046.out
/qemu/tests/qemu-iotests/050
/qemu/tests/qemu-iotests/054
/qemu/tests/qemu-iotests/060
/qemu/tests/qemu-iotests/071
/qemu/tests/qemu-iotests/079
/qemu/tests/qemu-iotests/080
/qemu/tests/qemu-iotests/089
/qemu/tests/qemu-iotests/089.out
/qemu/tests/qemu-iotests/090
/qemu/tests/qemu-iotests/091
/qemu/tests/qemu-iotests/095
/qemu/tests/qemu-iotests/097
/qemu/tests/qemu-iotests/098
/qemu/tests/qemu-iotests/102
/qemu/tests/qemu-iotests/103
/qemu/tests/qemu-iotests/106
/qemu/tests/qemu-iotests/107
/qemu/tests/qemu-iotests/108
/qemu/tests/qemu-iotests/111
/qemu/tests/qemu-iotests/112
/qemu/tests/qemu-iotests/115
/qemu/tests/qemu-iotests/117
/qemu/tests/qemu-iotests/120
/qemu/tests/qemu-iotests/121
/qemu/tests/qemu-iotests/127
/qemu/tests/qemu-iotests/133
/qemu/tests/qemu-iotests/137
/qemu/tests/qemu-iotests/138
/qemu/tests/qemu-iotests/140
/qemu/tests/qemu-iotests/154
/qemu/tests/qemu-iotests/161
/qemu/tests/qemu-iotests/171
/qemu/tests/qemu-iotests/174
/qemu/tests/qemu-iotests/175
/qemu/tests/qemu-iotests/176
/qemu/tests/qemu-iotests/177
/qemu/tests/qemu-iotests/179
/qemu/tests/qemu-iotests/183
/qemu/tests/qemu-iotests/186
/qemu/tests/qemu-iotests/187
/qemu/tests/qemu-iotests/191
/qemu/tests/qemu-iotests/195
/qemu/tests/qemu-iotests/200
/qemu/tests/qemu-iotests/200.out
/qemu/tests/qemu-iotests/204
/qemu/tests/qemu-iotests/206
/qemu/tests/qemu-iotests/206.out
/qemu/tests/qemu-iotests/214
/qemu/tests/qemu-iotests/217
/qemu/tests/qemu-iotests/220
/qemu/tests/qemu-iotests/221
/qemu/tests/qemu-iotests/221.out
/qemu/tests/qemu-iotests/229
/qemu/tests/qemu-iotests/229.out
/qemu/tests/qemu-iotests/242
/qemu/tests/qemu-iotests/247
/qemu/tests/qemu-iotests/249
/qemu/tests/qemu-iotests/250
/qemu/tests/qemu-iotests/252
/qemu/tests/qemu-iotests/265
/qemu/tests/qemu-iotests/268
/qemu/tests/qemu-iotests/272
/qemu/tests/qemu-iotests/273
/qemu/tests/qemu-iotests/279
/qemu/tests/qemu-iotests/286
/qemu/tests/qemu-iotests/287
/qemu/tests/qemu-iotests/289
/qemu/tests/qemu-iotests/290
/qemu/tests/qemu-iotests/291
/qemu/tests/qemu-iotests/292
/qemu/tests/qemu-iotests/293
/qemu/tests/qemu-iotests/294
/qemu/tests/qemu-iotests/305
/qemu/tests/qemu-iotests/308
/qemu/tests/qemu-iotests/308.out
/qemu/tests/qemu-iotests/check
/qemu/tests/qemu-iotests/common.filter
/qemu/tests/qemu-iotests/common.rc
/qemu/tests/qemu-iotests/group
/qemu/tests/qtest/bios-tables-test.c
/qemu/tests/qtest/emc141x-test.c
/qemu/tests/qtest/fuzz-test.c
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/fuzz/fuzz.h
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/npcm7xx_rng-test.c
/qemu/tests/qtest/pflash-cfi02-test.c
/qemu/tests/qtest/pvpanic-test.c
/qemu/tests/qtest/qmp-test.c
/qemu/tests/qtest/test-filter-redirector.c
/qemu/tests/qtest/vhost-user-test.c
/qemu/tests/qtest/virtio-9p-test.c
/qemu/tests/qtest/xlnx-can-test.c
/qemu/tests/tcg/arm/fcvt.c
/qemu/tests/tcg/i386/Makefile.target
/qemu/tests/tcg/i386/test-i386-bmi2.c
/qemu/tests/tcg/multiarch/Makefile.target
/qemu/tests/test-char.c
/qemu/tests/test-qemu-opts.c
/qemu/tests/test-qga.c
/qemu/tests/test-write-threshold.c
/qemu/tests/vhost-user-bridge.c
/qemu/tests/vm/freebsd
/qemu/tests/vm/haiku.x86_64
/qemu/tests/vm/netbsd
/qemu/tests/vm/openbsd
/qemu/tools/virtiofsd/buffer.c
/qemu/tools/virtiofsd/fuse_common.h
/qemu/tools/virtiofsd/fuse_log.c
/qemu/tools/virtiofsd/fuse_log.h
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/fuse_lowlevel.h
/qemu/tools/virtiofsd/fuse_misc.h
/qemu/tools/virtiofsd/fuse_opt.c
/qemu/tools/virtiofsd/fuse_signals.c
/qemu/tools/virtiofsd/fuse_virtio.c
/qemu/tools/virtiofsd/helper.c
/qemu/tools/virtiofsd/meson.build
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/tools/virtiofsd/passthrough_seccomp.h
/qemu/ui/console.c
/qemu/ui/keymaps.c
/qemu/ui/sdl2.c
/qemu/ui/vnc.c
/qemu/ui/vnc.h
/qemu/util/nvdimm-utils.c
/qemu/util/qemu-config.c
/qemu/util/qemu-option.c
/qemu/util/trace-events
/qemu/util/vfio-helpers.c
7a3d37a323-Nov-2020 Thomas Huth <thuth@redhat.com>

pc-bios/s390: Update the s390-ccw bios binaries

Update the binaries with the two reboot fixes from Eric Farman.

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

3d65199620-Nov-2020 Eric Farman <farman@linux.ibm.com>

pc-bios: s390x: Clear out leftover S390EP string

A Linux binary will have the string "S390EP" at address 0x10008,
which is important in getting the guest up off the ground. In the
case of a reboot (

pc-bios: s390x: Clear out leftover S390EP string

A Linux binary will have the string "S390EP" at address 0x10008,
which is important in getting the guest up off the ground. In the
case of a reboot (specifically chreipl going to a new device),
we should defer to the PSW at address zero for the new config,
which will re-write "S390EP" from the new image.

Let's clear it out at this point so that a reipl to, say, a DASD
passthrough device drives the IPL path from scratch without disrupting
disrupting the order of operations for other boots.

Rather than hardcoding the address of this magic (again), let's
define it somewhere so that the two users are visibly related.

Signed-off-by: Eric Farman <farman@linux.ibm.com>
Message-Id: <20201120160117.59366-3-farman@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

d8e5bbdd20-Nov-2020 Eric Farman <farman@linux.ibm.com>

pc-bios: s390x: Ensure Read IPL memory is clean

If, for example, we boot off a virtio device and chreipl to a vfio-ccw
device, the space at lowcore will be non-zero. We build a Read IPL CCW
at addre

pc-bios: s390x: Ensure Read IPL memory is clean

If, for example, we boot off a virtio device and chreipl to a vfio-ccw
device, the space at lowcore will be non-zero. We build a Read IPL CCW
at address zero, but it will have leftover PSW data that will conflict
with the Format-0 CCW being generated:

0x0: 00080000 80010000
------ Ccw0.cda
-- Ccw0.chainData
-- Reserved bits

The data address will be overwritten with the correct value (0x0), but
the apparent data chain bit will cause subsequent memory to be used as
the target of the data store, which may not be where we expect (0x0).

Clear out this space when we boot from DASD, so that we know it exists
exactly as we expect.

Signed-off-by: Eric Farman <farman@linux.ibm.com>
Reviewed-by: Jason J. Herne <jjherne@linux.ibm.com>
Reviewed-by: Janosch Frank <frankja@de.ibm.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-Id: <20201120160117.59366-2-farman@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>

show more ...

5983021e20-Nov-2020 Paolo Bonzini <pbonzini@redhat.com>

qboot: update to latest upstream

This also brings in two patches that Debian had to include,
qboot_stop_using_inttypes.patch and qboot_no_jump_tables.diff.

Reported-by: Michael Tokarev <mjt@tls.msk

qboot: update to latest upstream

This also brings in two patches that Debian had to include,
qboot_stop_using_inttypes.patch and qboot_no_jump_tables.diff.

Reported-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20201120152408.164346-1-pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

show more ...


/qemu/.cirrus.yml
/qemu/.gitattributes
/qemu/.gitlab-ci.d/check-patch.py
/qemu/.gitlab-ci.d/containers.yml
/qemu/.gitlab-ci.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/VERSION
/qemu/accel/stubs/hax-stub.c
/qemu/audio/jackaudio.c
/qemu/authz/listfile.c
/qemu/authz/pamacct.c
/qemu/authz/simple.c
/qemu/backends/tpm/tpm_emulator.c
/qemu/backends/tpm/tpm_ioctl.h
/qemu/backends/tpm/tpm_passthrough.c
/qemu/backends/tpm/tpm_util.c
/qemu/block.c
/qemu/block/blkdebug.c
/qemu/block/crypto.c
/qemu/block/crypto.h
/qemu/block/dmg-lzfse.c
/qemu/block/dmg.c
/qemu/block/export/export.c
/qemu/block/export/meson.build
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/file-posix.c
/qemu/block/io_uring.c
/qemu/block/nfs.c
/qemu/block/qcow2-cluster.c
/qemu/block/qcow2.c
/qemu/block/qcow2.h
/qemu/block/quorum.c
/qemu/block/vpc.c
/qemu/bsd-user/main.c
/qemu/chardev/char-stdio.c
/qemu/configure
/qemu/contrib/libvhost-user/libvhost-user.c
/qemu/contrib/libvhost-user/libvhost-user.h
/qemu/contrib/plugins/lockstep.c
/qemu/contrib/vhost-user-blk/vhost-user-blk.c
/qemu/contrib/vhost-user-gpu/meson.build
/qemu/contrib/vhost-user-scsi/vhost-user-scsi.c
/qemu/cpus-common.c
/qemu/default-configs/devices/mips-softmmu-common.mak
/qemu/disas/lm32.c
/qemu/docs/_templates/editpage.html
/qemu/docs/can.txt
/qemu/docs/conf.py
/qemu/docs/devel/_templates/editpage.html
/qemu/docs/devel/build-system.rst
/qemu/docs/devel/fuzzing.rst
/qemu/docs/devel/index.rst
/qemu/docs/devel/kconfig.rst
/qemu/docs/devel/qapi-code-gen.txt
/qemu/docs/interop/_templates/editpage.html
/qemu/docs/interop/vhost-user.rst
/qemu/docs/meson.build
/qemu/docs/replay.txt
/qemu/docs/specs/_templates/editpage.html
/qemu/docs/specs/ppc-spapr-numa.rst
/qemu/docs/system/_templates/editpage.html
/qemu/docs/system/arm/sbsa.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/system/target-arm.rst
/qemu/docs/tools/_templates/editpage.html
/qemu/docs/tools/virtiofsd.rst
/qemu/docs/user/_templates/editpage.html
/qemu/exec-vary.c
/qemu/hmp-commands.hx
/qemu/hw/9pfs/9p-local.c
/qemu/hw/9pfs/9p.c
/qemu/hw/9pfs/9p.h
/qemu/hw/9pfs/Kconfig
/qemu/hw/9pfs/cofs.c
/qemu/hw/9pfs/meson.build
/qemu/hw/acpi/core.c
/qemu/hw/acpi/generic_event_device.c
/qemu/hw/acpi/hmat.c
/qemu/hw/acpi/hmat.h
/qemu/hw/acpi/ich9.c
/qemu/hw/acpi/nvdimm.c
/qemu/hw/acpi/pcihp.c
/qemu/hw/acpi/piix4.c
/qemu/hw/arm/Kconfig
/qemu/hw/arm/armsse.c
/qemu/hw/arm/musicpal.c
/qemu/hw/arm/nseries.c
/qemu/hw/arm/stm32f205_soc.c
/qemu/hw/audio/milkymist-ac97.c
/qemu/hw/block/nand.c
/qemu/hw/block/nvme.c
/qemu/hw/block/pflash_cfi01.c
/qemu/hw/block/pflash_cfi02.c
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/char/lm32_juart.c
/qemu/hw/char/lm32_uart.c
/qemu/hw/char/milkymist-uart.c
/qemu/hw/core/bus.c
/qemu/hw/core/loader-fit.c
/qemu/hw/core/machine.c
/qemu/hw/core/platform-bus.c
/qemu/hw/core/qdev.c
/qemu/hw/core/register.c
/qemu/hw/core/sysbus.c
/qemu/hw/display/ads7846.c
/qemu/hw/display/ati_2d.c
/qemu/hw/display/bcm2835_fb.c
/qemu/hw/display/cirrus_vga.c
/qemu/hw/display/milkymist-tmu2.c
/qemu/hw/display/milkymist-vgafb.c
/qemu/hw/display/milkymist-vgafb_template.h
/qemu/hw/display/ssd0323.c
/qemu/hw/gpio/mpc8xxx.c
/qemu/hw/i2c/pm_smbus.c
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/pc.c
/qemu/hw/ide/ahci.c
/qemu/hw/ide/ahci_internal.h
/qemu/hw/ide/ich.c
/qemu/hw/ide/qdev.c
/qemu/hw/input/milkymist-softusb.c
/qemu/hw/input/ps2.c
/qemu/hw/intc/apic.c
/qemu/hw/intc/apic_common.c
/qemu/hw/intc/arm_gicv2m.c
/qemu/hw/intc/arm_gicv3_its_kvm.c
/qemu/hw/intc/ibex_plic.c
/qemu/hw/intc/ioapic.c
/qemu/hw/intc/ioapic_common.c
/qemu/hw/intc/lm32_pic.c
/qemu/hw/intc/loongson_liointc.c
/qemu/hw/intc/spapr_xive_kvm.c
/qemu/hw/intc/xics_pnv.c
/qemu/hw/isa/apm.c
/qemu/hw/isa/i82378.c
/qemu/hw/isa/isa-bus.c
/qemu/hw/isa/lpc_ich9.c
/qemu/hw/lm32/lm32_boards.c
/qemu/hw/lm32/lm32_hwsetup.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/mips/Kconfig
/qemu/hw/mips/boston.c
/qemu/hw/mips/cps.c
/qemu/hw/mips/meson.build
/qemu/hw/misc/applesmc.c
/qemu/hw/misc/macio/macio.c
/qemu/hw/misc/max111x.c
/qemu/hw/misc/milkymist-hpdmc.c
/qemu/hw/misc/milkymist-pfpu.c
/qemu/hw/misc/mips_cpc.c
/qemu/hw/misc/mips_itu.c
/qemu/hw/misc/pvpanic.c
/qemu/hw/misc/stm32f2xx_syscfg.c
/qemu/hw/misc/tmp105.c
/qemu/hw/misc/tmp105.h
/qemu/hw/net/can/ctucan_core.c
/qemu/hw/net/can/ctucan_core.h
/qemu/hw/net/e1000.c
/qemu/hw/net/e1000e.c
/qemu/hw/net/e1000e_core.c
/qemu/hw/net/e1000e_core.h
/qemu/hw/net/e1000x_common.c
/qemu/hw/net/e1000x_common.h
/qemu/hw/net/milkymist-minimac2.c
/qemu/hw/net/virtio-net.c
/qemu/hw/pci-bridge/i82801b11.c
/qemu/hw/pci-host/designware.c
/qemu/hw/pci-host/xilinx-pcie.c
/qemu/hw/ppc/pnv.c
/qemu/hw/ppc/pnv_core.c
/qemu/hw/ppc/pnv_lpc.c
/qemu/hw/ppc/pnv_psi.c
/qemu/hw/ppc/pnv_xscom.c
/qemu/hw/ppc/ppce500_spin.c
/qemu/hw/ppc/spapr.c
/qemu/hw/ppc/spapr_hcall.c
/qemu/hw/ppc/spapr_iommu.c
/qemu/hw/ppc/spapr_vio.c
/qemu/hw/rx/rx-gdbsim.c
/qemu/hw/s390x/ipl.h
/qemu/hw/s390x/meson.build
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/scsi/megasas.c
/qemu/hw/scsi/mptconfig.c
/qemu/hw/scsi/mptendian.c
/qemu/hw/scsi/mptsas.c
/qemu/hw/scsi/scsi-disk.c
/qemu/hw/sd/milkymist-memcard.c
/qemu/hw/sd/sd.c
/qemu/hw/smbios/smbios.c
/qemu/hw/ssi/imx_spi.c
/qemu/hw/ssi/xilinx_spi.c
/qemu/hw/timer/exynos4210_mct.c
/qemu/hw/timer/exynos4210_pwm.c
/qemu/hw/timer/hpet.c
/qemu/hw/timer/lm32_timer.c
/qemu/hw/timer/milkymist-sysctl.c
/qemu/hw/tpm/tpm_prop.h
/qemu/hw/tricore/tricore_testboard.c
/qemu/hw/usb/Kconfig
/qemu/hw/usb/dev-serial.c
/qemu/hw/usb/dev-storage.c
/qemu/hw/usb/hcd-ohci.c
/qemu/hw/usb/hcd-xhci-nec.c
/qemu/hw/usb/hcd-xhci-pci.c
/qemu/hw/usb/hcd-xhci-pci.h
/qemu/hw/usb/hcd-xhci.c
/qemu/hw/usb/hcd-xhci.h
/qemu/hw/usb/trace-events
/qemu/hw/vfio/common.c
/qemu/hw/vfio/igd.c
/qemu/hw/vfio/migration.c
/qemu/hw/virtio/trace-events
/qemu/hw/virtio/vhost-backend.c
/qemu/hw/virtio/vhost-user.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio-iommu.c
/qemu/hw/virtio/virtio-mem-pci.c
/qemu/hw/virtio/virtio-mem.c
/qemu/hw/xen/xen_pvdev.c
/qemu/include/block/block.h
/qemu/include/block/block_int.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/cpu-defs.h
/qemu/include/exec/cpu_ldst.h
/qemu/include/exec/cputlb.h
/qemu/include/exec/exec-all.h
/qemu/include/exec/ioport.h
/qemu/include/exec/memory.h
/qemu/include/exec/memory_ldst.h.inc
/qemu/include/exec/memory_ldst_cached.h.inc
/qemu/include/exec/memory_ldst_phys.h.inc
/qemu/include/exec/tb-context.h
/qemu/include/exec/tb-hash.h
/qemu/include/exec/user/thunk.h
/qemu/include/hw/acpi/acpi.h
/qemu/include/hw/acpi/ich9.h
/qemu/include/hw/acpi/pcihp.h
/qemu/include/hw/display/milkymist_tmu2.h
/qemu/include/hw/i386/apic_internal.h
/qemu/include/hw/i386/ich9.h
/qemu/include/hw/i386/ioapic.h
/qemu/include/hw/i386/ioapic_internal.h
/qemu/include/hw/ide/ahci.h
/qemu/include/hw/intc/ibex_plic.h
/qemu/include/hw/loader-fit.h
/qemu/include/hw/mem/memory-device.h
/qemu/include/hw/mips/cps.h
/qemu/include/hw/misc/mips_cpc.h
/qemu/include/hw/misc/mips_itu.h
/qemu/include/hw/misc/stm32f2xx_syscfg.h
/qemu/include/hw/pci-host/designware.h
/qemu/include/hw/pci-host/spapr.h
/qemu/include/hw/pci-host/xilinx-pcie.h
/qemu/include/hw/platform-bus.h
/qemu/include/hw/ppc/pnv.h
/qemu/include/hw/ppc/pnv_core.h
/qemu/include/hw/ppc/pnv_homer.h
/qemu/include/hw/ppc/pnv_lpc.h
/qemu/include/hw/ppc/pnv_occ.h
/qemu/include/hw/ppc/pnv_psi.h
/qemu/include/hw/ppc/pnv_xscom.h
/qemu/include/hw/ppc/spapr_vio.h
/qemu/include/hw/s390x/s390-pci-clp.h
/qemu/include/hw/s390x/s390-pci-vfio.h
/qemu/include/hw/semihosting/semihost.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/hw/xen/xen.h
/qemu/include/monitor/hmp-target.h
/qemu/include/qapi/util.h
/qemu/include/qemu/base64.h
/qemu/include/qemu/bswap.h
/qemu/include/qemu/buffer.h
/qemu/include/qemu/cutils.h
/qemu/include/qemu/filemonitor.h
/qemu/include/sysemu/tpm_util.h
/qemu/linux-user/aarch64/target_cpu.h
/qemu/linux-user/aarch64/target_structs.h
/qemu/linux-user/alpha/target_cpu.h
/qemu/linux-user/alpha/target_signal.h
/qemu/linux-user/alpha/target_structs.h
/qemu/linux-user/arm/target_cpu.h
/qemu/linux-user/arm/target_signal.h
/qemu/linux-user/arm/target_structs.h
/qemu/linux-user/cris/target_cpu.h
/qemu/linux-user/cris/target_signal.h
/qemu/linux-user/cris/target_structs.h
/qemu/linux-user/elfload.c
/qemu/linux-user/fd-trans.c
/qemu/linux-user/hppa/target_cpu.h
/qemu/linux-user/hppa/target_signal.h
/qemu/linux-user/hppa/target_structs.h
/qemu/linux-user/i386/target_cpu.h
/qemu/linux-user/i386/target_signal.h
/qemu/linux-user/i386/target_structs.h
/qemu/linux-user/m68k/target_signal.h
/qemu/linux-user/main.c
/qemu/linux-user/microblaze/target_cpu.h
/qemu/linux-user/microblaze/target_signal.h
/qemu/linux-user/microblaze/target_structs.h
/qemu/linux-user/mips/cpu_loop.c
/qemu/linux-user/mips/target_cpu.h
/qemu/linux-user/mips/target_signal.h
/qemu/linux-user/mips/target_structs.h
/qemu/linux-user/mips64/target_cpu.h
/qemu/linux-user/mips64/target_signal.h
/qemu/linux-user/nios2/target_cpu.h
/qemu/linux-user/nios2/target_signal.h
/qemu/linux-user/nios2/target_structs.h
/qemu/linux-user/ppc/target_cpu.h
/qemu/linux-user/ppc/target_signal.h
/qemu/linux-user/ppc/target_structs.h
/qemu/linux-user/ppc/target_syscall.h
/qemu/linux-user/s390x/target_signal.h
/qemu/linux-user/s390x/target_structs.h
/qemu/linux-user/sh4/target_signal.h
/qemu/linux-user/sparc/signal.c
/qemu/linux-user/sparc/target_cpu.h
/qemu/linux-user/sparc/target_signal.h
/qemu/linux-user/sparc/target_structs.h
/qemu/linux-user/sparc64/target_structs.h
/qemu/linux-user/syscall.c
/qemu/linux-user/tilegx/target_cpu.h
/qemu/linux-user/tilegx/target_structs.h
/qemu/linux-user/x86_64/target_signal.h
/qemu/linux-user/x86_64/target_structs.h
/qemu/memory_ldst.c.inc
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/dirtyrate.c
/qemu/migration/migration.c
/qemu/migration/multifd.c
/qemu/migration/ram.c
/qemu/migration/tls.c
/qemu/migration/tls.h
/qemu/monitor/hmp-cmds.c
/qemu/monitor/hmp.c
/qemu/monitor/misc.c
/qemu/monitor/monitor-internal.h
/qemu/nbd/nbd-internal.h
/qemu/nbd/server.c
/qemu/net/colo-compare.c
/qemu/net/colo.c
/qemu/net/eth.c
/qemu/net/filter-rewriter.c
/qemu/net/l2tpv3.c
/qemu/net/net.c
/qemu/net/vhost-vdpa.c
qboot.rom
/qemu/qapi/audio.json
/qemu/qapi/authz.json
/qemu/qapi/block-core.json
/qemu/qapi/char.json
/qemu/qapi/opts-visitor.c
/qemu/qapi/qapi-util.c
/qemu/qapi/qobject-input-visitor.c
/qemu/qapi/string-input-visitor.c
/qemu/qapi/ui.json
/qemu/qemu-img.c
/qemu/qemu-io.c
/qemu/qemu-nbd.c
/qemu/qga/commands-posix.c
/qemu/qga/meson.build
/qemu/qga/qapi-schema.json
/qemu/qobject/json-parser.c
/qemu/replay/replay-debugging.c
/qemu/roms/Makefile
/qemu/roms/qboot
/qemu/scripts/analyze-migration.py
/qemu/scripts/decodetree.py
/qemu/scripts/device-crash-test
/qemu/scripts/nsis.py
/qemu/scripts/oss-fuzz/build.sh
/qemu/scripts/replay-dump.py
/qemu/scripts/tracetool/format/d.py
/qemu/scsi/qemu-pr-helper.c
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/qdev-monitor.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/qemu-storage-daemon.c
/qemu/stubs/ram-block.c
/qemu/stubs/xen-hw-stub.c
/qemu/target/alpha/cpu.h
/qemu/target/alpha/fpu_helper.c
/qemu/target/alpha/gdbstub.c
/qemu/target/alpha/helper.c
/qemu/target/alpha/int_helper.c
/qemu/target/alpha/mem_helper.c
/qemu/target/alpha/sys_helper.c
/qemu/target/alpha/translate.c
/qemu/target/alpha/vax_helper.c
/qemu/target/arm/a32-uncond.decode
/qemu/target/arm/a32.decode
/qemu/target/arm/arch_dump.c
/qemu/target/arm/arm-semi.c
/qemu/target/arm/arm_ldst.h
/qemu/target/arm/cpu.h
/qemu/target/arm/crypto_helper.c
/qemu/target/arm/gdbstub.c
/qemu/target/arm/gdbstub64.c
/qemu/target/arm/helper-a64.c
/qemu/target/arm/helper-a64.h
/qemu/target/arm/helper-sve.h
/qemu/target/arm/helper.c
/qemu/target/arm/helper.h
/qemu/target/arm/iwmmxt_helper.c
/qemu/target/arm/neon-dp.decode
/qemu/target/arm/neon-ls.decode
/qemu/target/arm/neon-shared.decode
/qemu/target/arm/op_helper.c
/qemu/target/arm/pauth_helper.c
/qemu/target/arm/sve.decode
/qemu/target/arm/sve_helper.c
/qemu/target/arm/t16.decode
/qemu/target/arm/t32.decode
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-a64.h
/qemu/target/arm/translate-neon.c.inc
/qemu/target/arm/translate-sve.c
/qemu/target/arm/translate-vfp.c.inc
/qemu/target/arm/translate.c
/qemu/target/arm/vec_helper.c
/qemu/target/arm/vec_internal.h
/qemu/target/arm/vfp-uncond.decode
/qemu/target/arm/vfp.decode
/qemu/target/cris/cpu.h
/qemu/target/cris/crisv10-decode.h
/qemu/target/cris/crisv32-decode.h
/qemu/target/cris/gdbstub.c
/qemu/target/cris/helper.c
/qemu/target/cris/machine.c
/qemu/target/cris/mmu.c
/qemu/target/cris/op_helper.c
/qemu/target/cris/translate.c
/qemu/target/cris/translate_v10.c.inc
/qemu/target/hppa/cpu.h
/qemu/target/hppa/gdbstub.c
/qemu/target/hppa/helper.c
/qemu/target/hppa/insns.decode
/qemu/target/hppa/int_helper.c
/qemu/target/hppa/machine.c
/qemu/target/hppa/mem_helper.c
/qemu/target/hppa/op_helper.c
/qemu/target/hppa/translate.c
/qemu/target/i386/bpt_helper.c
/qemu/target/i386/cc_helper.c
/qemu/target/i386/cc_helper_template.h
/qemu/target/i386/cpu.c
/qemu/target/i386/cpu.h
/qemu/target/i386/excp_helper.c
/qemu/target/i386/fpu_helper.c
/qemu/target/i386/gdbstub.c
/qemu/target/i386/helper.c
/qemu/target/i386/hvf/panic.h
/qemu/target/i386/hvf/vmx.h
/qemu/target/i386/hvf/x86.c
/qemu/target/i386/hvf/x86.h
/qemu/target/i386/hvf/x86_cpuid.c
/qemu/target/i386/hvf/x86_decode.c
/qemu/target/i386/hvf/x86_decode.h
/qemu/target/i386/hvf/x86_descr.c
/qemu/target/i386/hvf/x86_descr.h
/qemu/target/i386/hvf/x86_emu.c
/qemu/target/i386/hvf/x86_emu.h
/qemu/target/i386/hvf/x86_flags.c
/qemu/target/i386/hvf/x86_flags.h
/qemu/target/i386/hvf/x86_mmu.c
/qemu/target/i386/hvf/x86_mmu.h
/qemu/target/i386/hvf/x86hvf.c
/qemu/target/i386/hvf/x86hvf.h
/qemu/target/i386/int_helper.c
/qemu/target/i386/kvm.c
/qemu/target/i386/mem_helper.c
/qemu/target/i386/misc_helper.c
/qemu/target/i386/monitor.c
/qemu/target/i386/mpx_helper.c
/qemu/target/i386/ops_sse.h
/qemu/target/i386/ops_sse_header.h
/qemu/target/i386/seg_helper.c
/qemu/target/i386/shift_helper_template.h
/qemu/target/i386/smm_helper.c
/qemu/target/i386/svm_helper.c
/qemu/target/i386/tcg-stub.c
/qemu/target/i386/translate.c
/qemu/target/lm32/cpu.h
/qemu/target/lm32/gdbstub.c
/qemu/target/lm32/helper.c
/qemu/target/lm32/translate.c
/qemu/target/m68k/monitor.c
/qemu/target/microblaze/cpu.h
/qemu/target/microblaze/gdbstub.c
/qemu/target/microblaze/helper.c
/qemu/target/microblaze/machine.c
/qemu/target/microblaze/mmu.c
/qemu/target/microblaze/mmu.h
/qemu/target/microblaze/op_helper.c
/qemu/target/microblaze/translate.c
/qemu/target/mips/cp0_helper.c
/qemu/target/mips/cpu.h
/qemu/target/mips/dsp_helper.c
/qemu/target/mips/fpu_helper.c
/qemu/target/mips/gdbstub.c
/qemu/target/mips/helper.c
/qemu/target/mips/lmmi_helper.c
/qemu/target/mips/mips-semi.c
/qemu/target/mips/msa_helper.c
/qemu/target/mips/op_helper.c
/qemu/target/mips/translate.c
/qemu/target/mips/translate_init.c.inc
/qemu/target/nios2/monitor.c
/qemu/target/openrisc/sys_helper.c
/qemu/target/ppc/compat.c
/qemu/target/ppc/cpu-models.c
/qemu/target/ppc/cpu-models.h
/qemu/target/ppc/cpu.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/dfp_helper.c
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/gdbstub.c
/qemu/target/ppc/helper_regs.h
/qemu/target/ppc/int_helper.c
/qemu/target/ppc/internal.h
/qemu/target/ppc/mem_helper.c
/qemu/target/ppc/misc_helper.c
/qemu/target/ppc/mmu-book3s-v3.c
/qemu/target/ppc/mmu-book3s-v3.h
/qemu/target/ppc/mmu-hash32.c
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/mmu-radix64.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/monitor.c
/qemu/target/ppc/timebase_helper.c
/qemu/target/ppc/translate.c
/qemu/target/ppc/translate_init.c.inc
/qemu/target/ppc/user_only_helper.c
/qemu/target/riscv/cpu-param.h
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/helper.h
/qemu/target/riscv/insn_trans/trans_rvh.c.inc
/qemu/target/riscv/monitor.c
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/translate.c
/qemu/target/s390x/cpu.c
/qemu/target/s390x/cpu.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/insn-data.def
/qemu/target/s390x/kvm-stub.c
/qemu/target/s390x/kvm.c
/qemu/target/s390x/kvm_s390x.h
/qemu/target/s390x/translate.c
/qemu/target/sh4/monitor.c
/qemu/target/sparc/cc_helper.c
/qemu/target/sparc/cpu.c
/qemu/target/sparc/fop_helper.c
/qemu/target/sparc/gdbstub.c
/qemu/target/sparc/helper.c
/qemu/target/sparc/int32_helper.c
/qemu/target/sparc/int64_helper.c
/qemu/target/sparc/ldst_helper.c
/qemu/target/sparc/mmu_helper.c
/qemu/target/sparc/monitor.c
/qemu/target/sparc/translate.c
/qemu/target/sparc/vis_helper.c
/qemu/target/sparc/win_helper.c
/qemu/target/tilegx/cpu.h
/qemu/target/tricore/gdbstub.c
/qemu/target/xtensa/gdbstub.c
/qemu/target/xtensa/monitor.c
/qemu/tcg/optimize.c
/qemu/tcg/tcg.c
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/pc_cpu_hotplug_props.py
/qemu/tests/acceptance/replay_kernel.py
/qemu/tests/acceptance/x86_cpu_model_versions.py
/qemu/tests/check-qjson.c
/qemu/tests/io-channel-helpers.c
/qemu/tests/io-channel-helpers.h
/qemu/tests/keys/vagrant
/qemu/tests/keys/vagrant.pub
/qemu/tests/migration/guestperf-batch.py
/qemu/tests/migration/guestperf-plot.py
/qemu/tests/migration/guestperf.py
/qemu/tests/migration/guestperf/comparison.py
/qemu/tests/migration/guestperf/engine.py
/qemu/tests/migration/guestperf/hardware.py
/qemu/tests/migration/guestperf/plot.py
/qemu/tests/migration/guestperf/progress.py
/qemu/tests/migration/guestperf/report.py
/qemu/tests/migration/guestperf/scenario.py
/qemu/tests/migration/guestperf/shell.py
/qemu/tests/migration/guestperf/timings.py
/qemu/tests/migration/stress.c
/qemu/tests/qemu-iotests/081
/qemu/tests/qemu-iotests/081.out
/qemu/tests/qemu-iotests/240
/qemu/tests/qemu-iotests/240.out
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/nbd-fault-injector.py
/qemu/tests/qtest/arm-cpu-features.c
/qemu/tests/qtest/cdrom-test.c
/qemu/tests/qtest/device-introspect-test.c
/qemu/tests/qtest/endianness-test.c
/qemu/tests/qtest/fuzz-test.c
/qemu/tests/qtest/fuzz/fork_fuzz.ld
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/meson.build
/qemu/tests/qtest/fuzz/qos_fuzz.c
/qemu/tests/qtest/fuzz/virtio_blk_fuzz.c
/qemu/tests/qtest/ivshmem-test.c
/qemu/tests/qtest/libqos/ahci.c
/qemu/tests/qtest/libqos/libqtest.h
/qemu/tests/qtest/libqtest-single.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/npcm7xx_rng-test.c
/qemu/tests/qtest/pvpanic-test.c
/qemu/tests/qtest/tpm-tests.c
/qemu/tests/test-base64.c
/qemu/tests/test-bufferiszero.c
/qemu/tests/test-crypto-pbkdf.c
/qemu/tests/test-qgraph.c
/qemu/tests/test-uuid.c
/qemu/tests/vm/Makefile.include
/qemu/tests/vm/basevm.py
/qemu/tests/vm/haiku.x86_64
/qemu/tests/vm/netbsd
/qemu/tests/vm/openbsd
/qemu/thunk.c
/qemu/tools/virtiofsd/buffer.c
/qemu/tools/virtiofsd/meson.build
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/trace/control.c
/qemu/trace/control.h
/qemu/trace/meson.build
/qemu/ui/console.c
/qemu/ui/trace-events
/qemu/ui/vnc-auth-sasl.c
/qemu/ui/vnc-auth-vencrypt.c
/qemu/ui/vnc-jobs.c
/qemu/ui/vnc-ws.c
/qemu/ui/vnc.c
/qemu/ui/x_keymap.c
/qemu/util/base64.c
/qemu/util/buffer.c
/qemu/util/cutils.c
/qemu/util/filemonitor-inotify.c
/qemu/util/filemonitor-stub.c
/qemu/util/log.c
/qemu/util/meson.build
/qemu/util/oslib-win32.c
/qemu/util/qemu-coroutine-lock.c
/qemu/util/qemu-option.c
/qemu/util/vfio-helpers.c
5e59294704-Nov-2020 Cornelia Huck <cohuck@redhat.com>

pc-bios/s390: update s390-ccw bios binaries

Contains "s390-bios: Skip writing iplb location to low core for ccw ipl".

Signed-off-by: Cornelia Huck <cohuck@redhat.com>

872882e730-Oct-2020 Jason J. Herne <jjherne@linux.ibm.com>

s390-bios: Skip writing iplb location to low core for ccw ipl

The architecture states that the iplb location is only written to low
core for list directed ipl and not for traditional ccw ipl. If we

s390-bios: Skip writing iplb location to low core for ccw ipl

The architecture states that the iplb location is only written to low
core for list directed ipl and not for traditional ccw ipl. If we don't
skip this then operating systems that load by reading into low core
memory may fail to start.

We should also not write the iplb pointer for network boot as it might
overwrite content that we got via network.

Fixes: 9bfc04f9ef68 ("pc-bios: s390x: Save iplb location in lowcore")
Signed-off-by: Jason J. Herne <jjherne@linux.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Acked-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20201030122823.347140-1-borntraeger@de.ibm.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>

show more ...


/qemu/.gitlab-ci.d/check-patch.py
/qemu/.gitlab-ci.yml
/qemu/MAINTAINERS
/qemu/Makefile
/qemu/README.rst
/qemu/VERSION
/qemu/accel/dummy-cpus.c
/qemu/accel/meson.build
/qemu/accel/qtest/meson.build
/qemu/accel/qtest/qtest.c
/qemu/accel/tcg/translate-all.c
/qemu/accel/tcg/user-exec-stub.c
/qemu/accel/xen/xen-all.c
/qemu/authz/base.c
/qemu/authz/list.c
/qemu/authz/listfile.c
/qemu/authz/pamacct.c
/qemu/authz/simple.c
/qemu/backends/cryptodev-builtin.c
/qemu/backends/cryptodev-vhost-user.c
/qemu/backends/cryptodev-vhost.c
/qemu/backends/cryptodev.c
/qemu/block.c
/qemu/block/commit.c
/qemu/block/coroutines.h
/qemu/block/export/export.c
/qemu/block/export/meson.build
/qemu/block/export/vhost-user-blk-server.c
/qemu/block/export/vhost-user-blk-server.h
/qemu/block/io.c
/qemu/block/mirror.c
/qemu/block/nbd.c
/qemu/block/nvme.c
/qemu/block/qcow2.c
/qemu/block/stream.c
/qemu/block/vvfat.c
/qemu/blockdev-nbd.c
/qemu/chardev/char-socket.c
/qemu/chardev/char.c
/qemu/configure
/qemu/contrib/elf2dmp/main.c
/qemu/contrib/gitdm/group-map-individuals
/qemu/contrib/libvhost-user/libvhost-user-glib.c
/qemu/contrib/libvhost-user/libvhost-user.c
/qemu/contrib/libvhost-user/libvhost-user.h
/qemu/contrib/libvhost-user/meson.build
/qemu/disas/capstone.c
/qemu/docs/devel/fuzzing.txt
/qemu/docs/devel/testing.rst
/qemu/docs/interop/nbd.txt
/qemu/docs/qemu-option-trace.rst.inc
/qemu/docs/specs/nvme.txt
/qemu/docs/specs/pci-ids.txt
/qemu/docs/system/arm/nuvoton.rst
/qemu/docs/system/deprecated.rst
/qemu/docs/tools/qemu-img.rst
/qemu/docs/tools/qemu-nbd.rst
/qemu/docs/tools/virtiofsd.rst
/qemu/hw/arm/Kconfig
/qemu/hw/arm/aspeed.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/npcm7xx.c
/qemu/hw/arm/raspi.c
/qemu/hw/arm/sbsa-ref.c
/qemu/hw/arm/smmuv3.c
/qemu/hw/arm/tosa.c
/qemu/hw/arm/trace-events
/qemu/hw/arm/virt.c
/qemu/hw/arm/xlnx-versal-virt.c
/qemu/hw/block/meson.build
/qemu/hw/block/nvme-ns.c
/qemu/hw/block/nvme-ns.h
/qemu/hw/block/nvme.c
/qemu/hw/block/nvme.h
/qemu/hw/block/trace-events
/qemu/hw/block/vhost-user-blk.c
/qemu/hw/char/pl011.c
/qemu/hw/char/trace-events
/qemu/hw/core/clock.c
/qemu/hw/core/machine.c
/qemu/hw/core/ptimer.c
/qemu/hw/core/qdev-properties-system.c
/qemu/hw/core/trace-events
/qemu/hw/display/exynos4210_fimd.c
/qemu/hw/display/meson.build
/qemu/hw/display/omap_lcdc.c
/qemu/hw/display/tcx.c
/qemu/hw/display/virtio-gpu-3d.c
/qemu/hw/dma/sparc32_dma.c
/qemu/hw/gpio/meson.build
/qemu/hw/gpio/npcm7xx_gpio.c
/qemu/hw/gpio/trace-events
/qemu/hw/i386/acpi-build.c
/qemu/hw/i386/intel_iommu.c
/qemu/hw/i386/pc.c
/qemu/hw/i386/pc_piix.c
/qemu/hw/ide/core.c
/qemu/hw/ide/piix.c
/qemu/hw/intc/arm_gicv3_cpuif.c
/qemu/hw/intc/sifive_plic.c
/qemu/hw/mem/pc-dimm.c
/qemu/hw/misc/Kconfig
/qemu/hw/misc/bcm2835_cprman.c
/qemu/hw/misc/led.c
/qemu/hw/misc/mchp_pfsoc_dmc.c
/qemu/hw/misc/mchp_pfsoc_ioscb.c
/qemu/hw/misc/mchp_pfsoc_sysreg.c
/qemu/hw/misc/meson.build
/qemu/hw/misc/mps2-fpgaio.c
/qemu/hw/misc/mps2-scc.c
/qemu/hw/misc/npcm7xx_clk.c
/qemu/hw/misc/npcm7xx_rng.c
/qemu/hw/misc/sifive_u_otp.c
/qemu/hw/misc/trace-events
/qemu/hw/net/spapr_llan.c
/qemu/hw/pci-host/sabre.c
/qemu/hw/pci/pci.c
/qemu/hw/pci/pcie.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_nvdimm.c
/qemu/hw/riscv/Kconfig
/qemu/hw/riscv/boot.c
/qemu/hw/riscv/microchip_pfsoc.c
/qemu/hw/riscv/opentitan.c
/qemu/hw/riscv/sifive_e.c
/qemu/hw/riscv/sifive_u.c
/qemu/hw/riscv/spike.c
/qemu/hw/riscv/virt.c
/qemu/hw/s390x/meson.build
/qemu/hw/s390x/s390-pci-bus.c
/qemu/hw/s390x/s390-pci-inst.c
/qemu/hw/s390x/s390-pci-vfio.c
/qemu/hw/s390x/s390-virtio-ccw.c
/qemu/hw/s390x/sclp.c
/qemu/hw/s390x/trace-events
/qemu/hw/sd/sd.c
/qemu/hw/sd/trace-events
/qemu/hw/sparc/sun4m.c
/qemu/hw/sparc64/sun4u.c
/qemu/hw/timer/armv7m_systick.c
/qemu/hw/timer/npcm7xx_timer.c
/qemu/hw/timer/sh_timer.c
/qemu/hw/usb/hcd-ehci-sysbus.c
/qemu/hw/usb/hcd-ehci.h
/qemu/hw/vfio/common.c
/qemu/hw/vfio/meson.build
/qemu/hw/vfio/migration.c
/qemu/hw/vfio/pci.c
/qemu/hw/vfio/pci.h
/qemu/hw/vfio/platform.c
/qemu/hw/vfio/trace-events
/qemu/hw/virtio/vhost-vdpa.c
/qemu/hw/virtio/vhost-vsock.c
/qemu/hw/virtio/vhost.c
/qemu/hw/virtio/virtio.c
/qemu/hw/watchdog/Kconfig
/qemu/hw/watchdog/meson.build
/qemu/hw/watchdog/sbsa_gwdt.c
/qemu/include/authz/base.h
/qemu/include/authz/list.h
/qemu/include/authz/listfile.h
/qemu/include/authz/pamacct.h
/qemu/include/authz/simple.h
/qemu/include/block/block.h
/qemu/include/block/nbd.h
/qemu/include/block/nvme.h
/qemu/include/elf.h
/qemu/include/exec/cpu-all.h
/qemu/include/exec/memory.h
/qemu/include/exec/memory_ldst_cached.h.inc
/qemu/include/glib-compat.h
/qemu/include/hw/arm/bcm2835_peripherals.h
/qemu/include/hw/arm/bcm2836.h
/qemu/include/hw/arm/npcm7xx.h
/qemu/include/hw/arm/raspi_platform.h
/qemu/include/hw/boards.h
/qemu/include/hw/char/pl011.h
/qemu/include/hw/clock.h
/qemu/include/hw/core/cpu.h
/qemu/include/hw/gpio/npcm7xx_gpio.h
/qemu/include/hw/i386/pc.h
/qemu/include/hw/i386/x86.h
/qemu/include/hw/intc/arm_gicv3_common.h
/qemu/include/hw/intc/sifive_plic.h
/qemu/include/hw/mem/pc-dimm.h
/qemu/include/hw/misc/bcm2835_cprman.h
/qemu/include/hw/misc/bcm2835_cprman_internals.h
/qemu/include/hw/misc/led.h
/qemu/include/hw/misc/mchp_pfsoc_dmc.h
/qemu/include/hw/misc/mchp_pfsoc_ioscb.h
/qemu/include/hw/misc/mchp_pfsoc_sysreg.h
/qemu/include/hw/misc/mps2-fpgaio.h
/qemu/include/hw/misc/mps2-scc.h
/qemu/include/hw/misc/npcm7xx_clk.h
/qemu/include/hw/misc/npcm7xx_rng.h
/qemu/include/hw/misc/sifive_u_otp.h
/qemu/include/hw/pci/pci.h
/qemu/include/hw/ppc/spapr.h
/qemu/include/hw/ppc/spapr_nvdimm.h
/qemu/include/hw/qdev-core.h
/qemu/include/hw/riscv/boot.h
/qemu/include/hw/riscv/microchip_pfsoc.h
/qemu/include/hw/riscv/sifive_u.h
/qemu/include/hw/s390x/s390-pci-bus.h
/qemu/include/hw/s390x/s390-pci-clp.h
/qemu/include/hw/s390x/s390-pci-inst.h
/qemu/include/hw/s390x/s390-pci-vfio.h
/qemu/include/hw/sparc/sparc32_dma.h
/qemu/include/hw/timer/armv7m_systick.h
/qemu/include/hw/timer/npcm7xx_timer.h
/qemu/include/hw/vfio/vfio-common.h
/qemu/include/hw/virtio/vhost.h
/qemu/include/hw/watchdog/sbsa_gwdt.h
/qemu/include/io/channel-buffer.h
/qemu/include/io/channel-command.h
/qemu/include/io/channel-file.h
/qemu/include/io/channel-socket.h
/qemu/include/io/channel-tls.h
/qemu/include/io/channel-util.h
/qemu/include/io/channel-watch.h
/qemu/include/io/channel-websock.h
/qemu/include/io/channel.h
/qemu/include/io/dns-resolver.h
/qemu/include/io/task.h
/qemu/include/migration/vmstate.h
/qemu/include/qapi/util.h
/qemu/include/qemu/vhost-user-server.h
/qemu/include/standard-headers/drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.h
/qemu/include/standard-headers/linux/ethtool.h
/qemu/include/standard-headers/linux/fuse.h
/qemu/include/standard-headers/linux/input-event-codes.h
/qemu/include/standard-headers/linux/pci_regs.h
/qemu/include/standard-headers/linux/virtio_fs.h
/qemu/include/standard-headers/linux/virtio_gpu.h
/qemu/include/standard-headers/linux/virtio_mmio.h
/qemu/include/standard-headers/linux/virtio_pci.h
/qemu/include/sysemu/cpus.h
/qemu/include/sysemu/cryptodev-vhost-user.h
/qemu/include/sysemu/cryptodev-vhost.h
/qemu/include/sysemu/cryptodev.h
/qemu/include/tcg/tcg-opc.h
/qemu/include/tcg/tcg.h
/qemu/io/channel-buffer.c
/qemu/io/channel-command.c
/qemu/io/channel-file.c
/qemu/io/channel-socket.c
/qemu/io/channel-tls.c
/qemu/io/channel-util.c
/qemu/io/channel-watch.c
/qemu/io/channel-websock.c
/qemu/io/channel.c
/qemu/io/dns-resolver.c
/qemu/io/task.c
/qemu/linux-headers/asm-arm64/kvm.h
/qemu/linux-headers/asm-arm64/mman.h
/qemu/linux-headers/asm-generic/hugetlb_encode.h
/qemu/linux-headers/asm-generic/unistd.h
/qemu/linux-headers/asm-mips/unistd_n32.h
/qemu/linux-headers/asm-mips/unistd_n64.h
/qemu/linux-headers/asm-mips/unistd_o32.h
/qemu/linux-headers/asm-powerpc/unistd_32.h
/qemu/linux-headers/asm-powerpc/unistd_64.h
/qemu/linux-headers/asm-s390/unistd_32.h
/qemu/linux-headers/asm-s390/unistd_64.h
/qemu/linux-headers/asm-x86/kvm.h
/qemu/linux-headers/asm-x86/unistd_32.h
/qemu/linux-headers/asm-x86/unistd_64.h
/qemu/linux-headers/asm-x86/unistd_x32.h
/qemu/linux-headers/linux/kvm.h
/qemu/linux-headers/linux/mman.h
/qemu/linux-headers/linux/vfio.h
/qemu/linux-headers/linux/vfio_zdev.h
/qemu/linux-user/aarch64/signal.c
/qemu/linux-user/aarch64/syscall_nr.h
/qemu/linux-user/alpha/syscall.tbl
/qemu/linux-user/arm/syscall.tbl
/qemu/linux-user/elfload.c
/qemu/linux-user/hppa/syscall.tbl
/qemu/linux-user/i386/syscall_32.tbl
/qemu/linux-user/m68k/syscall.tbl
/qemu/linux-user/microblaze/syscall.tbl
/qemu/linux-user/mips/syscall-args-o32.c.inc
/qemu/linux-user/mips/syscall_o32.tbl
/qemu/linux-user/mips64/syscall_n32.tbl
/qemu/linux-user/mips64/syscall_n64.tbl
/qemu/linux-user/mmap.c
/qemu/linux-user/nios2/syscall_nr.h
/qemu/linux-user/openrisc/syscall_nr.h
/qemu/linux-user/ppc/syscall.tbl
/qemu/linux-user/qemu.h
/qemu/linux-user/riscv/syscall32_nr.h
/qemu/linux-user/riscv/syscall64_nr.h
/qemu/linux-user/s390x/syscall.tbl
/qemu/linux-user/sh4/syscall.tbl
/qemu/linux-user/sparc/syscall.tbl
/qemu/linux-user/sparc64/syscall.tbl
/qemu/linux-user/syscall.c
/qemu/linux-user/syscall_defs.h
/qemu/linux-user/x86_64/syscall_64.tbl
/qemu/linux-user/xtensa/syscall.tbl
/qemu/memory_ldst.c.inc
/qemu/meson.build
/qemu/meson_options.txt
/qemu/migration/block-dirty-bitmap.c
/qemu/migration/block.c
/qemu/migration/migration.c
/qemu/migration/migration.h
/qemu/migration/page_cache.c
/qemu/migration/postcopy-ram.c
/qemu/migration/ram.c
/qemu/migration/rdma.c
/qemu/migration/savevm.c
/qemu/migration/trace-events
/qemu/migration/vmstate-types.c
/qemu/migration/vmstate.c
/qemu/monitor/hmp-cmds.c
/qemu/nbd/meson.build
/qemu/nbd/server.c
/qemu/net/vhost-vdpa.c
s390-ccw/main.c
/qemu/qapi/block-core.json
/qemu/qapi/block-export.json
/qemu/qapi/migration.json
/qemu/qapi/sockets.json
/qemu/qemu-img-cmds.hx
/qemu/qemu-img.c
/qemu/qemu-nbd.c
/qemu/qemu-options.hx
/qemu/qga/commands-posix-ssh.c
/qemu/qga/commands-posix.c
/qemu/qga/commands-win32.c
/qemu/qga/meson.build
/qemu/qga/qapi-schema.json
/qemu/scripts/checkpatch.pl
/qemu/scripts/gensyscalls.sh
/qemu/scripts/kernel-doc
/qemu/scripts/oss-fuzz/build.sh
/qemu/scripts/oss-fuzz/minimize_qtest_trace.py
/qemu/scripts/oss-fuzz/reorder_fuzzer_qtest_trace.py
/qemu/scripts/qmp/qmp
/qemu/scripts/qmp/qmp-shell
/qemu/scripts/tracetool.py
/qemu/scripts/update-linux-headers.sh
/qemu/softmmu/memory.c
/qemu/softmmu/physmem.c
/qemu/softmmu/vl.c
/qemu/storage-daemon/meson.build
/qemu/stubs/blk-exp-close-all.c
/qemu/stubs/meson.build
/qemu/target/arm/cpu.h
/qemu/target/arm/helper.c
/qemu/target/arm/m_helper.c
/qemu/target/arm/translate-a64.c
/qemu/target/arm/translate-neon.c.inc
/qemu/target/arm/translate-vfp.c.inc
/qemu/target/arm/translate.c
/qemu/target/arm/vec_helper.c
/qemu/target/ppc/cpu.h
/qemu/target/ppc/excp_helper.c
/qemu/target/ppc/fpu_helper.c
/qemu/target/ppc/internal.h
/qemu/target/ppc/kvm.c
/qemu/target/ppc/kvm_ppc.h
/qemu/target/ppc/machine.c
/qemu/target/ppc/mmu-hash64.c
/qemu/target/ppc/mmu_helper.c
/qemu/target/ppc/translate_init.c.inc
/qemu/target/riscv/cpu.c
/qemu/target/riscv/cpu.h
/qemu/target/riscv/cpu_bits.h
/qemu/target/riscv/cpu_helper.c
/qemu/target/riscv/csr.c
/qemu/target/riscv/internals.h
/qemu/target/riscv/machine.c
/qemu/target/riscv/meson.build
/qemu/target/riscv/op_helper.c
/qemu/target/riscv/pmp.c
/qemu/target/riscv/pmp.h
/qemu/target/rx/insns.decode
/qemu/target/rx/op_helper.c
/qemu/target/rx/translate.c
/qemu/target/s390x/cpu_features.c
/qemu/target/s390x/cpu_features.h
/qemu/target/s390x/cpu_models.c
/qemu/target/s390x/kvm.c
/qemu/target/sh4/cpu.h
/qemu/target/sh4/op_helper.c
/qemu/target/sh4/translate.c
/qemu/target/xtensa/cpu.c
/qemu/tcg/optimize.c
/qemu/tcg/tcg.c
/qemu/tests/acceptance/boot_linux.py
/qemu/tests/acceptance/boot_linux_console.py
/qemu/tests/acceptance/machine_m68k_nextcube.py
/qemu/tests/acceptance/ppc_prep_40p.py
/qemu/tests/acceptance/reverse_debugging.py
/qemu/tests/acceptance/virtiofs_submounts.py
/qemu/tests/acceptance/virtiofs_submounts.py.data/cleanup.sh
/qemu/tests/acceptance/virtiofs_submounts.py.data/guest-cleanup.sh
/qemu/tests/acceptance/virtiofs_submounts.py.data/guest.sh
/qemu/tests/acceptance/virtiofs_submounts.py.data/host.sh
/qemu/tests/docker/dockerfiles/centos7.docker
/qemu/tests/docker/dockerfiles/centos8.docker
/qemu/tests/docker/dockerfiles/debian-amd64.docker
/qemu/tests/docker/dockerfiles/fedora.docker
/qemu/tests/docker/dockerfiles/ubuntu2004.docker
/qemu/tests/qemu-iotests/162.out
/qemu/tests/qemu-iotests/274
/qemu/tests/qemu-iotests/274.out
/qemu/tests/qemu-iotests/291
/qemu/tests/qemu-iotests/291.out
/qemu/tests/qemu-iotests/309
/qemu/tests/qemu-iotests/309.out
/qemu/tests/qemu-iotests/group
/qemu/tests/qemu-iotests/iotests.py
/qemu/tests/qemu-iotests/pylintrc
/qemu/tests/qtest/fuzz/fuzz.c
/qemu/tests/qtest/fuzz/fuzz.h
/qemu/tests/qtest/fuzz/generic_fuzz.c
/qemu/tests/qtest/fuzz/generic_fuzz_configs.h
/qemu/tests/qtest/fuzz/meson.build
/qemu/tests/qtest/libqos/virtio-9p.c
/qemu/tests/qtest/libqos/virtio-9p.h
/qemu/tests/qtest/libqtest.c
/qemu/tests/qtest/meson.build
/qemu/tests/qtest/migration-helpers.c
/qemu/tests/qtest/migration-test.c
/qemu/tests/qtest/npcm7xx_gpio-test.c
/qemu/tests/qtest/npcm7xx_rng-test.c
/qemu/tests/qtest/npcm7xx_watchdog_timer-test.c
/qemu/tests/qtest/virtio-9p-test.c
/qemu/tests/tcg/aarch64/Makefile.target
/qemu/tests/tcg/aarch64/bti-1.c
/qemu/tests/tcg/aarch64/bti-2.c
/qemu/tests/tcg/aarch64/bti-crt.inc.c
/qemu/tests/tcg/configure.sh
/qemu/tests/test-authz-list.c
/qemu/tests/test-authz-listfile.c
/qemu/tests/test-authz-pam.c
/qemu/tests/test-authz-simple.c
/qemu/tests/test-bdrv-drain.c
/qemu/tests/test-crypto-afsplit.c
/qemu/tests/test-crypto-block.c
/qemu/tests/test-crypto-cipher.c
/qemu/tests/test-crypto-hash.c
/qemu/tests/test-crypto-ivgen.c
/qemu/tests/test-crypto-secret.c
/qemu/tests/test-crypto-xts.c
/qemu/tests/test-io-channel-buffer.c
/qemu/tests/test-io-channel-command.c
/qemu/tests/test-io-channel-file.c
/qemu/tests/test-io-channel-socket.c
/qemu/tests/test-io-task.c
/qemu/tests/test-util-sockets.c
/qemu/tests/vhost-user-bridge.c
/qemu/tools/meson.build
/qemu/tools/virtiofsd/fuse_common.h
/qemu/tools/virtiofsd/fuse_lowlevel.c
/qemu/tools/virtiofsd/fuse_lowlevel.h
/qemu/tools/virtiofsd/fuse_virtio.c
/qemu/tools/virtiofsd/helper.c
/qemu/tools/virtiofsd/passthrough_ll.c
/qemu/tools/virtiofsd/passthrough_seccomp.c
/qemu/trace/control.c
/qemu/util/aio-win32.c
/qemu/util/block-helpers.c
/qemu/util/block-helpers.h
/qemu/util/cutils.c
/qemu/util/meson.build
/qemu/util/module.c
/qemu/util/qemu-sockets.c
/qemu/util/vhost-user-server.c

12345678910>>...35