├── .dir-locals.el ├── .editorconfig ├── .exrc ├── .gdbinit ├── .gitignore ├── .gitmodules ├── .gitpublish ├── .mailmap ├── .shippable.yml ├── .travis.yml ├── CODING_STYLE ├── COPYING ├── COPYING.LIB ├── Changelog ├── HACKING ├── LICENSE ├── MAINTAINERS ├── Makefile ├── Makefile.objs ├── Makefile.target ├── README.md ├── README.upstream ├── VERSION ├── accel ├── Makefile.objs ├── accel.c ├── kvm │ ├── Makefile.objs │ ├── kvm-all.c │ ├── sev-stub.c │ └── trace-events ├── stubs │ ├── Makefile.objs │ ├── hax-stub.c │ ├── hvf-stub.c │ ├── kvm-stub.c │ ├── tcg-stub.c │ └── whpx-stub.c └── tcg │ ├── Makefile.objs │ ├── atomic_template.h │ ├── cpu-exec-common.c │ ├── cpu-exec.c │ ├── cputlb.c │ ├── softmmu_template.h │ ├── tcg-all.c │ ├── tcg-runtime-gvec.c │ ├── tcg-runtime.c │ ├── tcg-runtime.h │ ├── trace-events │ ├── translate-all.c │ ├── translate-all.h │ ├── translator.c │ ├── user-exec-stub.c │ └── user-exec.c ├── arch_init.c ├── audio ├── Makefile.objs ├── alsaaudio.c ├── audio.c ├── audio.h ├── audio_int.h ├── audio_pt_int.c ├── audio_pt_int.h ├── audio_template.h ├── audio_win_int.c ├── audio_win_int.h ├── coreaudio.c ├── dsound_template.h ├── dsoundaudio.c ├── mixeng.c ├── mixeng.h ├── mixeng_template.h ├── noaudio.c ├── ossaudio.c ├── paaudio.c ├── rate_template.h ├── sdlaudio.c ├── spiceaudio.c ├── trace-events ├── wavaudio.c └── wavcapture.c ├── backends ├── Makefile.objs ├── cryptodev-builtin.c ├── cryptodev-vhost-user.c ├── cryptodev-vhost.c ├── cryptodev.c ├── hostmem-file.c ├── hostmem-memfd.c ├── hostmem-ram.c ├── hostmem.c ├── rng-egd.c ├── rng-random.c ├── rng.c └── tpm.c ├── balloon.c ├── block.c ├── block ├── Makefile.objs ├── accounting.c ├── backup.c ├── blkdebug.c ├── blklogwrites.c ├── blkreplay.c ├── blkverify.c ├── block-backend.c ├── bochs.c ├── cloop.c ├── commit.c ├── copy-on-read.c ├── create.c ├── crypto.c ├── crypto.h ├── curl.c ├── dirty-bitmap.c ├── dmg-bz2.c ├── dmg-lzfse.c ├── dmg.c ├── dmg.h ├── file-posix.c ├── file-win32.c ├── gluster.c ├── io.c ├── iscsi-opts.c ├── iscsi.c ├── linux-aio.c ├── mirror.c ├── nbd-client.c ├── nbd-client.h ├── nbd.c ├── nfs.c ├── null.c ├── nvme.c ├── ocssd.c ├── parallels.c ├── parallels.h ├── qapi.c ├── qcow.c ├── qcow2-bitmap.c ├── qcow2-cache.c ├── qcow2-cluster.c ├── qcow2-refcount.c ├── qcow2-snapshot.c ├── qcow2.c ├── qcow2.h ├── qed-check.c ├── qed-cluster.c ├── qed-l2-cache.c ├── qed-table.c ├── qed.c ├── qed.h ├── quorum.c ├── raw-format.c ├── rbd.c ├── replication.c ├── sheepdog.c ├── snapshot.c ├── ssh.c ├── stream.c ├── throttle-groups.c ├── throttle.c ├── trace-events ├── vdi.c ├── vhdx-endian.c ├── vhdx-log.c ├── vhdx.c ├── vhdx.h ├── vmdk.c ├── vpc.c ├── vvfat.c ├── vxhs.c ├── win32-aio.c └── write-threshold.c ├── blockdev-nbd.c ├── blockdev.c ├── blockjob.c ├── bootdevice.c ├── bsd-user ├── Makefile.objs ├── bsd-mman.h ├── bsdload.c ├── elfload.c ├── errno_defs.h ├── freebsd │ ├── strace.list │ └── syscall_nr.h ├── i386 │ ├── target_signal.h │ └── target_syscall.h ├── main.c ├── mmap.c ├── netbsd │ ├── strace.list │ └── syscall_nr.h ├── openbsd │ ├── strace.list │ └── syscall_nr.h ├── qemu.h ├── signal.c ├── sparc │ ├── target_signal.h │ └── target_syscall.h ├── sparc64 │ ├── target_signal.h │ └── target_syscall.h ├── strace.c ├── syscall.c ├── syscall_defs.h ├── uaccess.c └── x86_64 │ ├── target_signal.h │ └── target_syscall.h ├── bt-host.c ├── bt-vhci.c ├── chardev ├── Makefile.objs ├── baum.c ├── char-console.c ├── char-fd.c ├── char-fe.c ├── char-file.c ├── char-io.c ├── char-mux.c ├── char-null.c ├── char-parallel.c ├── char-pipe.c ├── char-pty.c ├── char-ringbuf.c ├── char-serial.c ├── char-socket.c ├── char-stdio.c ├── char-udp.c ├── char-win-stdio.c ├── char-win.c ├── char.c ├── msmouse.c ├── spice.c ├── testdev.c ├── trace-events └── wctablet.c ├── configure ├── contrib ├── elf2dmp │ ├── Makefile.objs │ ├── addrspace.c │ ├── addrspace.h │ ├── download.c │ ├── download.h │ ├── err.h │ ├── kdbg.h │ ├── main.c │ ├── pdb.c │ ├── pdb.h │ ├── pe.h │ ├── qemu_elf.c │ └── qemu_elf.h ├── gitdm │ ├── aliases │ ├── domain-map │ ├── filetypes.txt │ ├── group-map-academics │ ├── group-map-cadence │ ├── group-map-codeweavers │ ├── group-map-ibm │ ├── group-map-individuals │ ├── group-map-redhat │ └── group-map-wavecomp ├── ivshmem-client │ ├── Makefile.objs │ ├── ivshmem-client.c │ ├── ivshmem-client.h │ └── main.c ├── ivshmem-server │ ├── Makefile.objs │ ├── ivshmem-server.c │ ├── ivshmem-server.h │ └── main.c ├── libvhost-user │ ├── Makefile.objs │ ├── libvhost-user-glib.c │ ├── libvhost-user-glib.h │ ├── libvhost-user.c │ └── libvhost-user.h ├── rdmacm-mux │ ├── Makefile.objs │ ├── main.c │ └── rdmacm-mux.h ├── systemd │ ├── qemu-guest-agent.service │ ├── qemu-pr-helper.service │ └── qemu-pr-helper.socket ├── vhost-user-blk │ ├── Makefile.objs │ └── vhost-user-blk.c └── vhost-user-scsi │ ├── Makefile.objs │ └── vhost-user-scsi.c ├── cpus-common.c ├── cpus.c ├── crypto ├── Makefile.objs ├── aes.c ├── afalg.c ├── afalgpriv.h ├── afsplit.c ├── block-luks.c ├── block-luks.h ├── block-qcow.c ├── block-qcow.h ├── block.c ├── blockpriv.h ├── cipher-afalg.c ├── cipher-builtin.c ├── cipher-gcrypt.c ├── cipher-nettle.c ├── cipher.c ├── cipherpriv.h ├── desrfb.c ├── hash-afalg.c ├── hash-gcrypt.c ├── hash-glib.c ├── hash-nettle.c ├── hash.c ├── hashpriv.h ├── hmac-gcrypt.c ├── hmac-glib.c ├── hmac-nettle.c ├── hmac.c ├── hmacpriv.h ├── init.c ├── ivgen-essiv.c ├── ivgen-essiv.h ├── ivgen-plain.c ├── ivgen-plain.h ├── ivgen-plain64.c ├── ivgen-plain64.h ├── ivgen.c ├── ivgenpriv.h ├── pbkdf-gcrypt.c ├── pbkdf-nettle.c ├── pbkdf-stub.c ├── pbkdf.c ├── random-gcrypt.c ├── random-gnutls.c ├── random-platform.c ├── secret.c ├── tlscreds.c ├── tlscredsanon.c ├── tlscredspriv.h ├── tlscredspsk.c ├── tlscredsx509.c ├── tlssession.c ├── trace-events └── xts.c ├── default-configs ├── aarch64-linux-user.mak ├── aarch64-softmmu.mak ├── aarch64_be-linux-user.mak ├── alpha-linux-user.mak ├── alpha-softmmu.mak ├── arm-linux-user.mak ├── arm-softmmu.mak ├── armeb-linux-user.mak ├── cris-linux-user.mak ├── cris-softmmu.mak ├── hppa-linux-user.mak ├── hppa-softmmu.mak ├── hyperv.mak ├── i386-bsd-user.mak ├── i386-linux-user.mak ├── i386-softmmu.mak ├── lm32-softmmu.mak ├── m68k-linux-user.mak ├── m68k-softmmu.mak ├── microblaze-linux-user.mak ├── microblaze-softmmu.mak ├── microblazeel-linux-user.mak ├── microblazeel-softmmu.mak ├── mips-linux-user.mak ├── mips-softmmu-common.mak ├── mips-softmmu.mak ├── mips64-linux-user.mak ├── mips64-softmmu.mak ├── mips64el-linux-user.mak ├── mips64el-softmmu.mak ├── mipsel-linux-user.mak ├── mipsel-softmmu.mak ├── mipsn32-linux-user.mak ├── mipsn32el-linux-user.mak ├── moxie-softmmu.mak ├── nios2-linux-user.mak ├── nios2-softmmu.mak ├── or1k-linux-user.mak ├── or1k-softmmu.mak ├── pci.mak ├── ppc-linux-user.mak ├── ppc-softmmu.mak ├── ppc64-linux-user.mak ├── ppc64-softmmu.mak ├── ppc64abi32-linux-user.mak ├── ppc64le-linux-user.mak ├── riscv32-linux-user.mak ├── riscv32-softmmu.mak ├── riscv64-linux-user.mak ├── riscv64-softmmu.mak ├── s390x-linux-user.mak ├── s390x-softmmu.mak ├── sh4-linux-user.mak ├── sh4-softmmu.mak ├── sh4eb-linux-user.mak ├── sh4eb-softmmu.mak ├── sound.mak ├── sparc-bsd-user.mak ├── sparc-linux-user.mak ├── sparc-softmmu.mak ├── sparc32plus-linux-user.mak ├── sparc64-bsd-user.mak ├── sparc64-linux-user.mak ├── sparc64-softmmu.mak ├── tilegx-linux-user.mak ├── tricore-softmmu.mak ├── unicore32-softmmu.mak ├── usb.mak ├── virtio.mak ├── x86_64-bsd-user.mak ├── x86_64-linux-user.mak ├── x86_64-softmmu.mak ├── xtensa-linux-user.mak ├── xtensa-softmmu.mak ├── xtensaeb-linux-user.mak └── xtensaeb-softmmu.mak ├── device-hotplug.c ├── device_tree.c ├── disas.c ├── disas ├── Makefile.objs ├── alpha.c ├── arm-a64.cc ├── arm.c ├── cris.c ├── hppa.c ├── i386.c ├── libvixl │ ├── LICENCE │ ├── Makefile.objs │ ├── README │ └── vixl │ │ ├── a64 │ │ ├── assembler-a64.h │ │ ├── constants-a64.h │ │ ├── cpu-a64.h │ │ ├── decoder-a64.cc │ │ ├── decoder-a64.h │ │ ├── disasm-a64.cc │ │ ├── disasm-a64.h │ │ ├── instructions-a64.cc │ │ └── instructions-a64.h │ │ ├── code-buffer.h │ │ ├── compiler-intrinsics.cc │ │ ├── compiler-intrinsics.h │ │ ├── globals.h │ │ ├── invalset.h │ │ ├── platform.h │ │ ├── utils.cc │ │ └── utils.h ├── lm32.c ├── m68k.c ├── microblaze.c ├── mips.c ├── moxie.c ├── nanomips.cpp ├── nanomips.h ├── nios2.c ├── ppc.c ├── riscv.c ├── s390.c ├── sh4.c ├── sparc.c ├── tci.c └── xtensa.c ├── dma-helpers.c ├── docs ├── COLO-FT.txt ├── amd-memory-encryption.txt ├── block-replication.txt ├── bootindex.txt ├── can.txt ├── ccid.txt ├── colo-proxy.txt ├── config │ ├── ich9-ehci-uhci.cfg │ ├── mach-virt-graphical.cfg │ ├── mach-virt-serial.cfg │ ├── q35-emulated.cfg │ ├── q35-virtio-graphical.cfg │ └── q35-virtio-serial.cfg ├── cpu-hotplug.rst ├── devel │ ├── atomics.txt │ ├── blkdebug.txt │ ├── blkverify.txt │ ├── build-system.txt │ ├── loads-stores.rst │ ├── lockcnt.txt │ ├── memory.txt │ ├── migration.rst │ ├── multi-thread-tcg.txt │ ├── multiple-iothreads.txt │ ├── qapi-code-gen.txt │ ├── rcu.txt │ ├── stable-process.rst │ ├── testing.rst │ ├── tracing.txt │ ├── virtio-migration.txt │ └── writing-qmp-commands.txt ├── generic-loader.txt ├── igd-assign.txt ├── image-fuzzer.txt ├── interop │ ├── bitmaps.rst │ ├── firmware.json │ ├── live-block-operations.rst │ ├── nbd.txt │ ├── parallels.txt │ ├── pr-helper.rst │ ├── prl-xml.txt │ ├── qcow2.txt │ ├── qed_spec.txt │ ├── qemu-ga-ref.texi │ ├── qemu-qmp-ref.texi │ ├── qmp-intro.txt │ ├── qmp-spec.txt │ ├── vhost-user.txt │ └── vnc-ledstate-Pseudo-encoding.txt ├── memory-hotplug.txt ├── multi-thread-compression.txt ├── multiseat.txt ├── nvdimm.txt ├── pci_expander_bridge.txt ├── pcie.txt ├── pcie_pci_bridge.txt ├── pr-manager.rst ├── pvrdma.txt ├── qcow2-cache.txt ├── qdev-device-use.txt ├── qemu-block-drivers.texi ├── qemu-cpu-models.texi ├── qemu_logo.pdf ├── qemupciserial.inf ├── rdma.txt ├── replay.txt ├── specs │ ├── acpi_cpu_hotplug.txt │ ├── acpi_mem_hotplug.txt │ ├── acpi_nvdimm.txt │ ├── acpi_pci_hotplug.txt │ ├── edu.txt │ ├── fw_cfg.txt │ ├── ivshmem-spec.txt │ ├── pci-ids.txt │ ├── pci-serial.txt │ ├── pci-testdev.txt │ ├── ppc-spapr-hcalls.txt │ ├── ppc-spapr-hotplug.txt │ ├── pvpanic.txt │ ├── rocker.txt │ ├── standard-vga.txt │ ├── tpm.txt │ ├── vmcoreinfo.txt │ ├── vmgenid.txt │ └── vmw_pvscsi-spec.txt ├── spice-port-fqdn.txt ├── spin │ ├── aio_notify.promela │ ├── aio_notify_accept.promela │ ├── aio_notify_bug.promela │ ├── tcg-exclusive.promela │ └── win32-qemu-event.promela ├── throttle.txt ├── usb-storage.txt ├── usb2.txt ├── vfio-ap.txt ├── virtio-balloon-stats.txt ├── xbzrle.txt └── xen-save-devices-state.txt ├── dump.c ├── exec.c ├── fpu ├── softfloat-specialize.h └── softfloat.c ├── fsdev ├── 9p-iov-marshal.c ├── 9p-iov-marshal.h ├── 9p-marshal.c ├── 9p-marshal.h ├── Makefile.objs ├── file-op-9p.h ├── qemu-fsdev-dummy.c ├── qemu-fsdev-opts.c ├── qemu-fsdev-throttle.c ├── qemu-fsdev-throttle.h ├── qemu-fsdev.c ├── qemu-fsdev.h ├── virtfs-proxy-helper.c └── virtfs-proxy-helper.texi ├── gdb-xml ├── aarch64-core.xml ├── aarch64-fpu.xml ├── arm-core.xml ├── arm-neon.xml ├── arm-vfp.xml ├── arm-vfp3.xml ├── cf-core.xml ├── cf-fp.xml ├── i386-32bit.xml ├── i386-64bit.xml ├── m68k-fp.xml ├── power-altivec.xml ├── power-core.xml ├── power-fpu.xml ├── power-spe.xml ├── power-vsx.xml ├── power64-core.xml ├── s390-acr.xml ├── s390-cr.xml ├── s390-fpr.xml ├── s390-gs.xml ├── s390-virt.xml ├── s390-vx.xml └── s390x-core64.xml ├── gdbstub.c ├── gitdm.config ├── hmp-commands-info.hx ├── hmp-commands.hx ├── hmp.c ├── hmp.h ├── hw ├── 9pfs │ ├── 9p-local.c │ ├── 9p-local.h │ ├── 9p-posix-acl.c │ ├── 9p-proxy.c │ ├── 9p-proxy.h │ ├── 9p-synth.c │ ├── 9p-synth.h │ ├── 9p-util.c │ ├── 9p-util.h │ ├── 9p-xattr-user.c │ ├── 9p-xattr.c │ ├── 9p-xattr.h │ ├── 9p.c │ ├── 9p.h │ ├── Makefile.objs │ ├── codir.c │ ├── cofile.c │ ├── cofs.c │ ├── coth.c │ ├── coth.h │ ├── coxattr.c │ ├── trace-events │ ├── virtio-9p-device.c │ ├── virtio-9p.h │ ├── xen-9p-backend.c │ └── xen-9pfs.h ├── Makefile.objs ├── acpi │ ├── Makefile.objs │ ├── acpi-stub.c │ ├── acpi_interface.c │ ├── aml-build.c │ ├── bios-linker-loader.c │ ├── core.c │ ├── cpu.c │ ├── cpu_hotplug.c │ ├── ich9.c │ ├── ipmi-stub.c │ ├── ipmi.c │ ├── memory_hotplug.c │ ├── nvdimm.c │ ├── pcihp.c │ ├── piix4.c │ ├── tco.c │ ├── tpm.c │ ├── trace-events │ └── vmgenid.c ├── adc │ ├── Makefile.objs │ └── stm32f2xx_adc.c ├── alpha │ ├── Makefile.objs │ ├── alpha_sys.h │ ├── dp264.c │ ├── pci.c │ ├── trace-events │ └── typhoon.c ├── arm │ ├── Makefile.objs │ ├── allwinner-a10.c │ ├── armsse.c │ ├── armv7m.c │ ├── aspeed.c │ ├── aspeed_soc.c │ ├── bcm2835_peripherals.c │ ├── bcm2836.c │ ├── boot.c │ ├── collie.c │ ├── cubieboard.c │ ├── digic.c │ ├── digic_boards.c │ ├── exynos4210.c │ ├── exynos4_boards.c │ ├── fsl-imx25.c │ ├── fsl-imx31.c │ ├── fsl-imx6.c │ ├── fsl-imx6ul.c │ ├── fsl-imx7.c │ ├── gumstix.c │ ├── highbank.c │ ├── imx25_pdk.c │ ├── integratorcp.c │ ├── kzm.c │ ├── mainstone.c │ ├── mcimx6ul-evk.c │ ├── mcimx7d-sabre.c │ ├── microbit.c │ ├── mps2-tz.c │ ├── mps2.c │ ├── msf2-soc.c │ ├── msf2-som.c │ ├── musicpal.c │ ├── netduino2.c │ ├── nrf51_soc.c │ ├── nseries.c │ ├── omap1.c │ ├── omap2.c │ ├── omap_sx1.c │ ├── palm.c │ ├── pxa2xx.c │ ├── pxa2xx_gpio.c │ ├── pxa2xx_pic.c │ ├── raspi.c │ ├── realview.c │ ├── sabrelite.c │ ├── smmu-common.c │ ├── smmu-internal.h │ ├── smmuv3-internal.h │ ├── smmuv3.c │ ├── spitz.c │ ├── stellaris.c │ ├── stm32f205_soc.c │ ├── strongarm.c │ ├── strongarm.h │ ├── sysbus-fdt.c │ ├── tosa.c │ ├── trace-events │ ├── versatilepb.c │ ├── vexpress.c │ ├── virt-acpi-build.c │ ├── virt.c │ ├── xilinx_zynq.c │ ├── xlnx-versal-virt.c │ ├── xlnx-versal.c │ ├── xlnx-zcu102.c │ ├── xlnx-zynqmp.c │ └── z2.c ├── audio │ ├── Makefile.objs │ ├── ac97.c │ ├── adlib.c │ ├── cs4231.c │ ├── cs4231a.c │ ├── es1370.c │ ├── fmopl.c │ ├── fmopl.h │ ├── gus.c │ ├── gusemu.h │ ├── gusemu_hal.c │ ├── gusemu_mixer.c │ ├── gustate.h │ ├── hda-codec-common.h │ ├── hda-codec.c │ ├── intel-hda-defs.h │ ├── intel-hda.c │ ├── intel-hda.h │ ├── lm4549.c │ ├── lm4549.h │ ├── marvell_88w8618.c │ ├── milkymist-ac97.c │ ├── pcspk.c │ ├── pl041.c │ ├── pl041.h │ ├── pl041.hx │ ├── sb16.c │ ├── soundhw.c │ ├── trace-events │ └── wm8750.c ├── block │ ├── Makefile.objs │ ├── block.c │ ├── cdrom.c │ ├── dataplane │ │ ├── Makefile.objs │ │ ├── trace-events │ │ ├── virtio-blk.c │ │ ├── virtio-blk.h │ │ ├── xen-block.c │ │ └── xen-block.h │ ├── ecc.c │ ├── fdc.c │ ├── hd-geometry.c │ ├── m25p80.c │ ├── nand.c │ ├── nvme │ │ ├── lightnvm.c │ │ ├── lightnvm.h │ │ ├── nvme.c │ │ ├── nvme.h │ │ └── trace-events │ ├── onenand.c │ ├── pflash_cfi01.c │ ├── pflash_cfi02.c │ ├── tc58128.c │ ├── trace-events │ ├── vhost-user-blk.c │ ├── virtio-blk.c │ ├── xen-block.c │ └── xen_blkif.h ├── bt │ ├── Makefile.objs │ ├── core.c │ ├── hci-csr.c │ ├── hci.c │ ├── hid.c │ ├── l2cap.c │ └── sdp.c ├── char │ ├── Makefile.objs │ ├── bcm2835_aux.c │ ├── cadence_uart.c │ ├── cmsdk-apb-uart.c │ ├── debugcon.c │ ├── digic-uart.c │ ├── escc.c │ ├── etraxfs_ser.c │ ├── exynos4210_uart.c │ ├── grlib_apbuart.c │ ├── imx_serial.c │ ├── ipoctal232.c │ ├── lm32_juart.c │ ├── lm32_uart.c │ ├── mcf_uart.c │ ├── milkymist-uart.c │ ├── nrf51_uart.c │ ├── omap_uart.c │ ├── parallel-isa.c │ ├── parallel.c │ ├── pl011.c │ ├── sclpconsole-lm.c │ ├── sclpconsole.c │ ├── serial-isa.c │ ├── serial-pci.c │ ├── serial.c │ ├── sh_serial.c │ ├── spapr_vty.c │ ├── stm32f2xx_usart.c │ ├── terminal3270.c │ ├── trace-events │ ├── virtio-console.c │ ├── virtio-serial-bus.c │ ├── xen_console.c │ └── xilinx_uartlite.c ├── core │ ├── Makefile.objs │ ├── bus.c │ ├── empty_slot.c │ ├── fw-path-provider.c │ ├── generic-loader.c │ ├── hotplug.c │ ├── irq.c │ ├── loader-fit.c │ ├── loader.c │ ├── machine.c │ ├── nmi.c │ ├── null-machine.c │ ├── or-irq.c │ ├── platform-bus.c │ ├── ptimer.c │ ├── qdev-fw.c │ ├── qdev-properties-system.c │ ├── qdev-properties.c │ ├── qdev.c │ ├── register.c │ ├── reset.c │ ├── split-irq.c │ ├── stream.c │ ├── sysbus.c │ └── uboot_image.h ├── cpu │ ├── Makefile.objs │ ├── a15mpcore.c │ ├── a9mpcore.c │ ├── arm11mpcore.c │ ├── cluster.c │ ├── core.c │ └── realview_mpcore.c ├── cris │ ├── Makefile.objs │ ├── axis_dev88.c │ ├── boot.c │ └── boot.h ├── display │ ├── Makefile.objs │ ├── ads7846.c │ ├── bcm2835_fb.c │ ├── blizzard.c │ ├── bochs-display.c │ ├── cg3.c │ ├── cirrus_vga.c │ ├── cirrus_vga_internal.h │ ├── cirrus_vga_isa.c │ ├── cirrus_vga_rop.h │ ├── cirrus_vga_rop2.h │ ├── dpcd.c │ ├── edid-generate.c │ ├── edid-region.c │ ├── exynos4210_fimd.c │ ├── framebuffer.c │ ├── framebuffer.h │ ├── g364fb.c │ ├── jazz_led.c │ ├── milkymist-tmu2.c │ ├── milkymist-vgafb.c │ ├── milkymist-vgafb_template.h │ ├── omap_dss.c │ ├── omap_lcd_template.h │ ├── omap_lcdc.c │ ├── pl110.c │ ├── pl110_template.h │ ├── pxa2xx_lcd.c │ ├── pxa2xx_template.h │ ├── qxl-logger.c │ ├── qxl-render.c │ ├── qxl.c │ ├── qxl.h │ ├── ramfb-standalone.c │ ├── ramfb.c │ ├── sii9022.c │ ├── sm501.c │ ├── sm501_template.h │ ├── ssd0303.c │ ├── ssd0323.c │ ├── tc6393xb.c │ ├── tc6393xb_template.h │ ├── tcx.c │ ├── trace-events │ ├── vga-helpers.h │ ├── vga-isa-mm.c │ ├── vga-isa.c │ ├── vga-pci.c │ ├── vga.c │ ├── vga_int.h │ ├── vga_regs.h │ ├── virtio-gpu-3d.c │ ├── virtio-gpu-pci.c │ ├── virtio-gpu.c │ ├── virtio-vga.c │ ├── vmware_vga.c │ ├── xenfb.c │ └── xlnx_dp.c ├── dma │ ├── Makefile.objs │ ├── bcm2835_dma.c │ ├── etraxfs_dma.c │ ├── i82374.c │ ├── i8257.c │ ├── omap_dma.c │ ├── pl080.c │ ├── pl330.c │ ├── puv3_dma.c │ ├── pxa2xx_dma.c │ ├── rc4030.c │ ├── soc_dma.c │ ├── sparc32_dma.c │ ├── trace-events │ ├── xilinx_axidma.c │ ├── xlnx-zdma.c │ ├── xlnx-zynq-devcfg.c │ └── xlnx_dpdma.c ├── gpio │ ├── Makefile.objs │ ├── bcm2835_gpio.c │ ├── gpio_key.c │ ├── imx_gpio.c │ ├── max7310.c │ ├── mpc8xxx.c │ ├── nrf51_gpio.c │ ├── omap_gpio.c │ ├── pl061.c │ ├── puv3_gpio.c │ ├── trace-events │ └── zaurus.c ├── hppa │ ├── Makefile.objs │ ├── dino.c │ ├── hppa_hardware.h │ ├── hppa_sys.h │ ├── machine.c │ ├── pci.c │ └── trace-events ├── hyperv │ ├── Makefile.objs │ ├── hyperv.c │ └── hyperv_testdev.c ├── i2c │ ├── Makefile.objs │ ├── aspeed_i2c.c │ ├── bitbang_i2c.c │ ├── bitbang_i2c.h │ ├── core.c │ ├── exynos4210_i2c.c │ ├── i2c-ddc.c │ ├── imx_i2c.c │ ├── microbit_i2c.c │ ├── omap_i2c.c │ ├── pm_smbus.c │ ├── ppc4xx_i2c.c │ ├── smbus.c │ ├── smbus_eeprom.c │ ├── smbus_ich9.c │ ├── trace-events │ └── versatile_i2c.c ├── i386 │ ├── Makefile.objs │ ├── acpi-build.c │ ├── acpi-build.h │ ├── amd_iommu.c │ ├── amd_iommu.h │ ├── intel_iommu.c │ ├── intel_iommu_internal.h │ ├── kvm │ │ ├── Makefile.objs │ │ ├── apic.c │ │ ├── clock.c │ │ ├── i8254.c │ │ ├── i8259.c │ │ └── ioapic.c │ ├── kvmvapic.c │ ├── multiboot.c │ ├── multiboot.h │ ├── pc.c │ ├── pc_piix.c │ ├── pc_q35.c │ ├── pc_sysfw.c │ ├── trace-events │ ├── vmmouse.c │ ├── vmport.c │ ├── x86-iommu.c │ └── xen │ │ ├── Makefile.objs │ │ ├── trace-events │ │ ├── xen-hvm.c │ │ ├── xen-mapcache.c │ │ ├── xen_apic.c │ │ ├── xen_platform.c │ │ └── xen_pvdevice.c ├── ide │ ├── Makefile.objs │ ├── ahci-allwinner.c │ ├── ahci.c │ ├── ahci_internal.h │ ├── atapi.c │ ├── cmd646.c │ ├── core.c │ ├── ich.c │ ├── ioport.c │ ├── isa.c │ ├── macio.c │ ├── microdrive.c │ ├── mmio.c │ ├── pci.c │ ├── piix.c │ ├── qdev.c │ ├── sii3112.c │ ├── trace-events │ └── via.c ├── input │ ├── Makefile.objs │ ├── adb-internal.h │ ├── adb-kbd.c │ ├── adb-mouse.c │ ├── adb.c │ ├── hid.c │ ├── lm832x.c │ ├── milkymist-softusb.c │ ├── pckbd.c │ ├── pl050.c │ ├── ps2.c │ ├── pxa2xx_keypad.c │ ├── stellaris_input.c │ ├── trace-events │ ├── tsc2005.c │ ├── tsc210x.c │ ├── virtio-input-hid.c │ ├── virtio-input-host.c │ └── virtio-input.c ├── intc │ ├── Makefile.objs │ ├── allwinner-a10-pic.c │ ├── apic.c │ ├── apic_common.c │ ├── arm_gic.c │ ├── arm_gic_common.c │ ├── arm_gic_kvm.c │ ├── arm_gicv2m.c │ ├── arm_gicv3.c │ ├── arm_gicv3_common.c │ ├── arm_gicv3_cpuif.c │ ├── arm_gicv3_dist.c │ ├── arm_gicv3_its_common.c │ ├── arm_gicv3_its_kvm.c │ ├── arm_gicv3_kvm.c │ ├── arm_gicv3_redist.c │ ├── armv7m_nvic.c │ ├── aspeed_vic.c │ ├── bcm2835_ic.c │ ├── bcm2836_control.c │ ├── etraxfs_pic.c │ ├── exynos4210_combiner.c │ ├── exynos4210_gic.c │ ├── gic_internal.h │ ├── gicv3_internal.h │ ├── grlib_irqmp.c │ ├── heathrow_pic.c │ ├── i8259.c │ ├── i8259_common.c │ ├── imx_avic.c │ ├── imx_gpcv2.c │ ├── intc.c │ ├── ioapic.c │ ├── ioapic_common.c │ ├── lm32_pic.c │ ├── mips_gic.c │ ├── nios2_iic.c │ ├── omap_intc.c │ ├── ompic.c │ ├── openpic.c │ ├── openpic_kvm.c │ ├── pl190.c │ ├── puv3_intc.c │ ├── realview_gic.c │ ├── s390_flic.c │ ├── s390_flic_kvm.c │ ├── sh_intc.c │ ├── slavio_intctl.c │ ├── spapr_xive.c │ ├── trace-events │ ├── vgic_common.h │ ├── xics.c │ ├── xics_kvm.c │ ├── xics_pnv.c │ ├── xics_spapr.c │ ├── xilinx_intc.c │ ├── xive.c │ ├── xlnx-pmu-iomod-intc.c │ └── xlnx-zynqmp-ipi.c ├── ipack │ ├── Makefile.objs │ ├── ipack.c │ └── tpci200.c ├── ipmi │ ├── Makefile.objs │ ├── ipmi.c │ ├── ipmi_bmc_extern.c │ ├── ipmi_bmc_sim.c │ ├── isa_ipmi_bt.c │ └── isa_ipmi_kcs.c ├── isa │ ├── Makefile.objs │ ├── apm.c │ ├── i82378.c │ ├── isa-bus.c │ ├── isa-superio.c │ ├── lpc_ich9.c │ ├── pc87312.c │ ├── piix4.c │ ├── smc37c669-superio.c │ ├── trace-events │ └── vt82c686.c ├── lm32 │ ├── Makefile.objs │ ├── lm32.h │ ├── lm32_boards.c │ ├── lm32_hwsetup.h │ ├── milkymist-hw.h │ └── milkymist.c ├── m68k │ ├── Makefile.objs │ ├── an5206.c │ ├── mcf5206.c │ ├── mcf5208.c │ └── mcf_intc.c ├── mem │ ├── Makefile.objs │ ├── memory-device.c │ ├── nvdimm.c │ ├── pc-dimm.c │ └── trace-events ├── microblaze │ ├── Makefile.objs │ ├── boot.c │ ├── boot.h │ ├── petalogix_ml605_mmu.c │ ├── petalogix_s3adsp1800_mmu.c │ └── xlnx-zynqmp-pmu.c ├── mips │ ├── Makefile.objs │ ├── addr.c │ ├── boston.c │ ├── cps.c │ ├── gt64xxx_pci.c │ ├── mips_fulong2e.c │ ├── mips_int.c │ ├── mips_jazz.c │ ├── mips_malta.c │ ├── mips_mipssim.c │ └── mips_r4k.c ├── misc │ ├── Makefile.objs │ ├── a9scu.c │ ├── applesmc.c │ ├── arm11scu.c │ ├── arm_integrator_debug.c │ ├── arm_l2x0.c │ ├── arm_sysctl.c │ ├── armsse-cpuid.c │ ├── aspeed_scu.c │ ├── aspeed_sdmc.c │ ├── auxbus.c │ ├── bcm2835_mbox.c │ ├── bcm2835_property.c │ ├── bcm2835_rng.c │ ├── cbus.c │ ├── debugexit.c │ ├── eccmemctl.c │ ├── edu.c │ ├── exynos4210_clk.c │ ├── exynos4210_pmu.c │ ├── exynos4210_rng.c │ ├── imx25_ccm.c │ ├── imx2_wdt.c │ ├── imx31_ccm.c │ ├── imx6_ccm.c │ ├── imx6_src.c │ ├── imx6ul_ccm.c │ ├── imx7_ccm.c │ ├── imx7_gpr.c │ ├── imx7_snvs.c │ ├── imx_ccm.c │ ├── iotkit-secctl.c │ ├── iotkit-sysctl.c │ ├── iotkit-sysinfo.c │ ├── ivshmem.c │ ├── macio │ │ ├── Makefile.objs │ │ ├── cuda.c │ │ ├── gpio.c │ │ ├── mac_dbdma.c │ │ ├── macio.c │ │ ├── pmu.c │ │ └── trace-events │ ├── max111x.c │ ├── milkymist-hpdmc.c │ ├── milkymist-pfpu.c │ ├── mips_cmgcr.c │ ├── mips_cpc.c │ ├── mips_itu.c │ ├── mos6522.c │ ├── mps2-fpgaio.c │ ├── mps2-scc.c │ ├── msf2-sysreg.c │ ├── mst_fpga.c │ ├── nrf51_rng.c │ ├── omap_clk.c │ ├── omap_gpmc.c │ ├── omap_l4.c │ ├── omap_sdrc.c │ ├── omap_tap.c │ ├── pc-testdev.c │ ├── pca9552.c │ ├── pci-testdev.c │ ├── puv3_pm.c │ ├── pvpanic.c │ ├── sga.c │ ├── slavio_misc.c │ ├── stm32f2xx_syscfg.c │ ├── tmp105.c │ ├── tmp105.h │ ├── tmp421.c │ ├── trace-events │ ├── tz-mpc.c │ ├── tz-msc.c │ ├── tz-ppc.c │ ├── unimp.c │ ├── vmcoreinfo.c │ ├── zynq-xadc.c │ └── zynq_slcr.c ├── moxie │ ├── Makefile.objs │ └── moxiesim.c ├── net │ ├── Makefile.objs │ ├── allwinner_emac.c │ ├── cadence_gem.c │ ├── can │ │ ├── Makefile.objs │ │ ├── can_kvaser_pci.c │ │ ├── can_mioe3680_pci.c │ │ ├── can_pcm3680_pci.c │ │ ├── can_sja1000.c │ │ └── can_sja1000.h │ ├── dp8393x.c │ ├── e1000.c │ ├── e1000_regs.h │ ├── e1000e.c │ ├── e1000e_core.c │ ├── e1000e_core.h │ ├── e1000x_common.c │ ├── e1000x_common.h │ ├── eepro100.c │ ├── etraxfs_eth.c │ ├── fsl_etsec │ │ ├── etsec.c │ │ ├── etsec.h │ │ ├── miim.c │ │ ├── registers.c │ │ ├── registers.h │ │ └── rings.c │ ├── ftgmac100.c │ ├── imx_fec.c │ ├── lan9118.c │ ├── lance.c │ ├── mcf_fec.c │ ├── milkymist-minimac2.c │ ├── mipsnet.c │ ├── ne2000-isa.c │ ├── ne2000.c │ ├── ne2000.h │ ├── net_rx_pkt.c │ ├── net_rx_pkt.h │ ├── net_tx_pkt.c │ ├── net_tx_pkt.h │ ├── opencores_eth.c │ ├── pcnet-pci.c │ ├── pcnet.c │ ├── pcnet.h │ ├── rocker │ │ ├── qmp-norocker.c │ │ ├── rocker.c │ │ ├── rocker.h │ │ ├── rocker_desc.c │ │ ├── rocker_desc.h │ │ ├── rocker_fp.c │ │ ├── rocker_fp.h │ │ ├── rocker_hw.h │ │ ├── rocker_of_dpa.c │ │ ├── rocker_of_dpa.h │ │ ├── rocker_tlv.h │ │ ├── rocker_world.c │ │ └── rocker_world.h │ ├── rtl8139.c │ ├── smc91c111.c │ ├── spapr_llan.c │ ├── stellaris_enet.c │ ├── sungem.c │ ├── sunhme.c │ ├── trace-events │ ├── vhost_net.c │ ├── virtio-net.c │ ├── vmware_utils.h │ ├── vmxnet3.c │ ├── vmxnet3.h │ ├── vmxnet3_defs.h │ ├── vmxnet_debug.h │ ├── xen_nic.c │ ├── xgmac.c │ ├── xilinx_axienet.c │ └── xilinx_ethlite.c ├── nios2 │ ├── 10m50_devboard.c │ ├── Makefile.objs │ ├── boot.c │ ├── boot.h │ └── cpu_pic.c ├── nvram │ ├── Makefile.objs │ ├── chrp_nvram.c │ ├── ds1225y.c │ ├── eeprom93xx.c │ ├── eeprom_at24c.c │ ├── fw_cfg.c │ ├── mac_nvram.c │ ├── nrf51_nvm.c │ ├── spapr_nvram.c │ └── trace-events ├── openrisc │ ├── Makefile.objs │ ├── cputimer.c │ ├── openrisc_sim.c │ └── pic_cpu.c ├── pci-bridge │ ├── Makefile.objs │ ├── dec.c │ ├── dec.h │ ├── gen_pcie_root_port.c │ ├── i82801b11.c │ ├── ioh3420.c │ ├── pci_bridge_dev.c │ ├── pci_expander_bridge.c │ ├── pcie_pci_bridge.c │ ├── pcie_root_port.c │ ├── simba.c │ ├── xio3130_downstream.c │ └── xio3130_upstream.c ├── pci-host │ ├── Makefile.objs │ ├── bonito.c │ ├── designware.c │ ├── gpex.c │ ├── grackle.c │ ├── pam.c │ ├── piix.c │ ├── ppce500.c │ ├── prep.c │ ├── q35.c │ ├── sabre.c │ ├── trace-events │ ├── uninorth.c │ ├── versatile.c │ └── xilinx-pcie.c ├── pci │ ├── Makefile.objs │ ├── msi.c │ ├── msix.c │ ├── pci-stub.c │ ├── pci.c │ ├── pci_bridge.c │ ├── pci_host.c │ ├── pcie.c │ ├── pcie_aer.c │ ├── pcie_host.c │ ├── pcie_port.c │ ├── shpc.c │ ├── slotid_cap.c │ └── trace-events ├── pcmcia │ ├── Makefile.objs │ ├── pcmcia.c │ └── pxa2xx.c ├── ppc │ ├── Makefile.objs │ ├── e500-ccsr.h │ ├── e500.c │ ├── e500.h │ ├── e500plat.c │ ├── fdt.c │ ├── mac.h │ ├── mac_newworld.c │ ├── mac_oldworld.c │ ├── mpc8544_guts.c │ ├── mpc8544ds.c │ ├── pnv.c │ ├── pnv_bmc.c │ ├── pnv_core.c │ ├── pnv_lpc.c │ ├── pnv_occ.c │ ├── pnv_psi.c │ ├── pnv_xscom.c │ ├── ppc.c │ ├── ppc405.h │ ├── ppc405_boards.c │ ├── ppc405_uc.c │ ├── ppc440.h │ ├── ppc440_bamboo.c │ ├── ppc440_pcix.c │ ├── ppc440_uc.c │ ├── ppc4xx_devs.c │ ├── ppc4xx_pci.c │ ├── ppc_booke.c │ ├── ppce500_spin.c │ ├── prep.c │ ├── prep_systemio.c │ ├── rs6000_mc.c │ ├── sam460ex.c │ ├── spapr.c │ ├── spapr_caps.c │ ├── spapr_cpu_core.c │ ├── spapr_drc.c │ ├── spapr_events.c │ ├── spapr_hcall.c │ ├── spapr_iommu.c │ ├── spapr_irq.c │ ├── spapr_ovec.c │ ├── spapr_pci.c │ ├── spapr_pci_vfio.c │ ├── spapr_rng.c │ ├── spapr_rtas.c │ ├── spapr_rtas_ddw.c │ ├── spapr_rtc.c │ ├── spapr_vio.c │ ├── trace-events │ └── virtex_ml507.c ├── rdma │ ├── Makefile.objs │ ├── rdma_backend.c │ ├── rdma_backend.h │ ├── rdma_backend_defs.h │ ├── rdma_rm.c │ ├── rdma_rm.h │ ├── rdma_rm_defs.h │ ├── rdma_utils.c │ ├── rdma_utils.h │ ├── trace-events │ └── vmw │ │ ├── pvrdma.h │ │ ├── pvrdma_cmd.c │ │ ├── pvrdma_dev_ring.c │ │ ├── pvrdma_dev_ring.h │ │ ├── pvrdma_main.c │ │ ├── pvrdma_qp_ops.c │ │ ├── pvrdma_qp_ops.h │ │ └── trace-events ├── riscv │ ├── Makefile.objs │ ├── riscv_hart.c │ ├── riscv_htif.c │ ├── sifive_clint.c │ ├── sifive_e.c │ ├── sifive_plic.c │ ├── sifive_prci.c │ ├── sifive_test.c │ ├── sifive_u.c │ ├── sifive_uart.c │ ├── spike.c │ └── virt.c ├── s390x │ ├── 3270-ccw.c │ ├── Makefile.objs │ ├── ap-bridge.c │ ├── ap-device.c │ ├── ccw-device.c │ ├── ccw-device.h │ ├── css-bridge.c │ ├── css.c │ ├── event-facility.c │ ├── ipl.c │ ├── ipl.h │ ├── s390-ccw.c │ ├── s390-pci-bus.c │ ├── s390-pci-bus.h │ ├── s390-pci-inst.c │ ├── s390-pci-inst.h │ ├── s390-pci-stub.c │ ├── s390-skeys-kvm.c │ ├── s390-skeys.c │ ├── s390-stattrib-kvm.c │ ├── s390-stattrib.c │ ├── s390-virtio-ccw.c │ ├── s390-virtio-hcall.c │ ├── s390-virtio-hcall.h │ ├── sclp.c │ ├── sclpcpu.c │ ├── sclpquiesce.c │ ├── tod-kvm.c │ ├── tod-qemu.c │ ├── tod.c │ ├── trace-events │ ├── vhost-vsock-ccw.c │ ├── virtio-ccw-9p.c │ ├── virtio-ccw-balloon.c │ ├── virtio-ccw-blk.c │ ├── virtio-ccw-crypto.c │ ├── virtio-ccw-gpu.c │ ├── virtio-ccw-input.c │ ├── virtio-ccw-net.c │ ├── virtio-ccw-rng.c │ ├── virtio-ccw-scsi.c │ ├── virtio-ccw-serial.c │ ├── virtio-ccw.c │ └── virtio-ccw.h ├── scsi │ ├── Makefile.objs │ ├── emulation.c │ ├── esp-pci.c │ ├── esp.c │ ├── lsi53c895a.c │ ├── megasas.c │ ├── mfi.h │ ├── mpi.h │ ├── mptconfig.c │ ├── mptendian.c │ ├── mptsas.c │ ├── mptsas.h │ ├── scsi-bus.c │ ├── scsi-disk.c │ ├── scsi-generic.c │ ├── spapr_vscsi.c │ ├── srp.h │ ├── trace-events │ ├── vhost-scsi-common.c │ ├── vhost-scsi.c │ ├── vhost-user-scsi.c │ ├── viosrp.h │ ├── virtio-scsi-dataplane.c │ ├── virtio-scsi.c │ ├── vmw_pvscsi.c │ └── vmw_pvscsi.h ├── sd │ ├── Makefile.objs │ ├── bcm2835_sdhost.c │ ├── core.c │ ├── milkymist-memcard.c │ ├── omap_mmc.c │ ├── pl181.c │ ├── pxa2xx_mmci.c │ ├── sd.c │ ├── sdhci-internal.h │ ├── sdhci.c │ ├── sdmmc-internal.c │ ├── sdmmc-internal.h │ ├── ssi-sd.c │ └── trace-events ├── sh4 │ ├── Makefile.objs │ ├── r2d.c │ ├── sh7750.c │ ├── sh7750_regnames.c │ ├── sh7750_regnames.h │ ├── sh7750_regs.h │ ├── sh_pci.c │ └── shix.c ├── smbios │ ├── Makefile.objs │ ├── smbios-stub.c │ ├── smbios.c │ ├── smbios_build.h │ ├── smbios_type_38-stub.c │ └── smbios_type_38.c ├── sparc │ ├── Makefile.objs │ ├── leon3.c │ ├── sun4m.c │ ├── sun4m_iommu.c │ └── trace-events ├── sparc64 │ ├── Makefile.objs │ ├── niagara.c │ ├── sparc64.c │ ├── sun4u.c │ ├── sun4u_iommu.c │ └── trace-events ├── ssi │ ├── Makefile.objs │ ├── aspeed_smc.c │ ├── imx_spi.c │ ├── mss-spi.c │ ├── omap_spi.c │ ├── pl022.c │ ├── ssi.c │ ├── stm32f2xx_spi.c │ ├── xilinx_spi.c │ └── xilinx_spips.c ├── timer │ ├── Makefile.objs │ ├── a9gtimer.c │ ├── allwinner-a10-pit.c │ ├── altera_timer.c │ ├── arm_mptimer.c │ ├── arm_timer.c │ ├── armv7m_systick.c │ ├── aspeed_timer.c │ ├── cadence_ttc.c │ ├── cmsdk-apb-dualtimer.c │ ├── cmsdk-apb-timer.c │ ├── digic-timer.c │ ├── ds1338.c │ ├── etraxfs_timer.c │ ├── exynos4210_mct.c │ ├── exynos4210_pwm.c │ ├── exynos4210_rtc.c │ ├── grlib_gptimer.c │ ├── hpet.c │ ├── i8254.c │ ├── i8254_common.c │ ├── imx_epit.c │ ├── imx_gpt.c │ ├── lm32_timer.c │ ├── m41t80.c │ ├── m48t59-internal.h │ ├── m48t59-isa.c │ ├── m48t59.c │ ├── mc146818rtc.c │ ├── milkymist-sysctl.c │ ├── mips_gictimer.c │ ├── mss-timer.c │ ├── nrf51_timer.c │ ├── omap_gptimer.c │ ├── omap_synctimer.c │ ├── pl031.c │ ├── puv3_ost.c │ ├── pxa2xx_timer.c │ ├── sh_timer.c │ ├── slavio_timer.c │ ├── stm32f2xx_timer.c │ ├── sun4v-rtc.c │ ├── trace-events │ ├── twl92230.c │ ├── xilinx_timer.c │ └── xlnx-zynqmp-rtc.c ├── tpm │ ├── Makefile.objs │ ├── tpm_crb.c │ ├── tpm_emulator.c │ ├── tpm_int.h │ ├── tpm_ioctl.h │ ├── tpm_passthrough.c │ ├── tpm_ppi.c │ ├── tpm_ppi.h │ ├── tpm_tis.c │ ├── tpm_util.c │ ├── tpm_util.h │ └── trace-events ├── tricore │ ├── Makefile.objs │ └── tricore_testboard.c ├── unicore32 │ ├── Makefile.objs │ └── puv3.c ├── usb │ ├── Makefile.objs │ ├── bus.c │ ├── ccid-card-emulated.c │ ├── ccid-card-passthru.c │ ├── ccid.h │ ├── chipidea.c │ ├── combined-packet.c │ ├── core.c │ ├── desc-msos.c │ ├── desc.c │ ├── desc.h │ ├── dev-audio.c │ ├── dev-bluetooth.c │ ├── dev-hid.c │ ├── dev-hub.c │ ├── dev-mtp.c │ ├── dev-network.c │ ├── dev-serial.c │ ├── dev-smartcard-reader.c │ ├── dev-storage.c │ ├── dev-uas.c │ ├── dev-wacom.c │ ├── hcd-ehci-pci.c │ ├── hcd-ehci-sysbus.c │ ├── hcd-ehci.c │ ├── hcd-ehci.h │ ├── hcd-musb.c │ ├── hcd-ohci.c │ ├── hcd-uhci.c │ ├── hcd-xhci-nec.c │ ├── hcd-xhci.c │ ├── hcd-xhci.h │ ├── host-libusb.c │ ├── host-stub.c │ ├── host.h │ ├── libhw.c │ ├── quirks-ftdi-ids.h │ ├── quirks-pl2303-ids.h │ ├── quirks.c │ ├── quirks.h │ ├── redirect.c │ ├── trace-events │ ├── tusb6010.c │ └── xen-usb.c ├── vfio │ ├── Makefile.objs │ ├── amd-xgbe.c │ ├── ap.c │ ├── calxeda-xgmac.c │ ├── ccw.c │ ├── common.c │ ├── display.c │ ├── pci-quirks.c │ ├── pci.c │ ├── pci.h │ ├── platform.c │ ├── spapr.c │ └── trace-events ├── virtio │ ├── Makefile.objs │ ├── trace-events │ ├── vhost-backend.c │ ├── vhost-scsi-pci.c │ ├── vhost-stub.c │ ├── vhost-user-blk-pci.c │ ├── vhost-user-scsi-pci.c │ ├── vhost-user.c │ ├── vhost-vsock-pci.c │ ├── vhost-vsock.c │ ├── vhost.c │ ├── virtio-9p-pci.c │ ├── virtio-balloon-pci.c │ ├── virtio-balloon.c │ ├── virtio-blk-pci.c │ ├── virtio-bus.c │ ├── virtio-crypto-pci.c │ ├── virtio-crypto.c │ ├── virtio-input-host-pci.c │ ├── virtio-input-pci.c │ ├── virtio-mmio.c │ ├── virtio-net-pci.c │ ├── virtio-pci.c │ ├── virtio-pci.h │ ├── virtio-rng-pci.c │ ├── virtio-rng.c │ ├── virtio-scsi-pci.c │ ├── virtio-serial-pci.c │ └── virtio.c ├── watchdog │ ├── Makefile.objs │ ├── cmsdk-apb-watchdog.c │ ├── trace-events │ ├── watchdog.c │ ├── wdt_aspeed.c │ ├── wdt_diag288.c │ ├── wdt_i6300esb.c │ └── wdt_ib700.c ├── xen │ ├── Makefile.objs │ ├── trace-events │ ├── xen-backend.c │ ├── xen-bus-helper.c │ ├── xen-bus.c │ ├── xen-common.c │ ├── xen-host-pci-device.c │ ├── xen-host-pci-device.h │ ├── xen-legacy-backend.c │ ├── xen_devconfig.c │ ├── xen_pt.c │ ├── xen_pt.h │ ├── xen_pt_config_init.c │ ├── xen_pt_graphics.c │ ├── xen_pt_load_rom.c │ ├── xen_pt_msi.c │ └── xen_pvdev.c ├── xenpv │ ├── Makefile.objs │ └── xen_machine_pv.c └── xtensa │ ├── Makefile.objs │ ├── bootparam.h │ ├── mx_pic.c │ ├── pic_cpu.c │ ├── sim.c │ ├── xtensa_memory.c │ ├── xtensa_memory.h │ └── xtfpga.c ├── include ├── block │ ├── accounting.h │ ├── aio-wait.h │ ├── aio.h │ ├── block.h │ ├── block_backup.h │ ├── block_int.h │ ├── blockjob.h │ ├── blockjob_int.h │ ├── dirty-bitmap.h │ ├── lightnvm.h │ ├── nbd.h │ ├── nvme.h │ ├── qapi.h │ ├── qdict.h │ ├── raw-aio.h │ ├── snapshot.h │ ├── thread-pool.h │ ├── throttle-groups.h │ └── write-threshold.h ├── chardev │ ├── char-fd.h │ ├── char-fe.h │ ├── char-io.h │ ├── char-mux.h │ ├── char-parallel.h │ ├── char-serial.h │ ├── char-win-stdio.h │ ├── char-win.h │ └── char.h ├── crypto │ ├── aes.h │ ├── afsplit.h │ ├── block.h │ ├── cipher.h │ ├── desrfb.h │ ├── hash.h │ ├── hmac.h │ ├── init.h │ ├── ivgen.h │ ├── pbkdf.h │ ├── random.h │ ├── secret.h │ ├── tlscreds.h │ ├── tlscredsanon.h │ ├── tlscredspsk.h │ ├── tlscredsx509.h │ ├── tlssession.h │ └── xts.h ├── disas │ ├── bfd.h │ ├── capstone.h │ └── disas.h ├── elf.h ├── exec │ ├── address-spaces.h │ ├── cpu-all.h │ ├── cpu-common.h │ ├── cpu-defs.h │ ├── cpu_ldst.h │ ├── cpu_ldst_template.h │ ├── cpu_ldst_useronly_template.h │ ├── cputlb.h │ ├── exec-all.h │ ├── gdbstub.h │ ├── gen-icount.h │ ├── helper-gen.h │ ├── helper-head.h │ ├── helper-proto.h │ ├── helper-tcg.h │ ├── hwaddr.h │ ├── ioport.h │ ├── log.h │ ├── memattrs.h │ ├── memory-internal.h │ ├── memory.h │ ├── memory_ldst.inc.h │ ├── memory_ldst_cached.inc.h │ ├── memory_ldst_phys.inc.h │ ├── poison.h │ ├── ram_addr.h │ ├── ramlist.h │ ├── semihost.h │ ├── softmmu-semi.h │ ├── target_page.h │ ├── tb-context.h │ ├── tb-hash.h │ ├── tb-lookup.h │ ├── translator.h │ └── user │ │ ├── abitypes.h │ │ └── thunk.h ├── fpu │ ├── softfloat-macros.h │ ├── softfloat-types.h │ └── softfloat.h ├── glib-compat.h ├── hw │ ├── acpi │ │ ├── acpi-defs.h │ │ ├── acpi.h │ │ ├── acpi_dev_interface.h │ │ ├── aml-build.h │ │ ├── bios-linker-loader.h │ │ ├── cpu.h │ │ ├── cpu_hotplug.h │ │ ├── ich9.h │ │ ├── ipmi.h │ │ ├── memory_hotplug.h │ │ ├── pc-hotplug.h │ │ ├── pcihp.h │ │ ├── piix4.h │ │ ├── tco.h │ │ ├── tpm.h │ │ └── vmgenid.h │ ├── adc │ │ └── stm32f2xx_adc.h │ ├── arm │ │ ├── allwinner-a10.h │ │ ├── arm.h │ │ ├── armsse.h │ │ ├── armv7m.h │ │ ├── aspeed.h │ │ ├── aspeed_soc.h │ │ ├── bcm2835_peripherals.h │ │ ├── bcm2836.h │ │ ├── digic.h │ │ ├── exynos4210.h │ │ ├── fdt.h │ │ ├── fsl-imx25.h │ │ ├── fsl-imx31.h │ │ ├── fsl-imx6.h │ │ ├── fsl-imx6ul.h │ │ ├── fsl-imx7.h │ │ ├── linux-boot-if.h │ │ ├── msf2-soc.h │ │ ├── nrf51.h │ │ ├── nrf51_soc.h │ │ ├── omap.h │ │ ├── primecell.h │ │ ├── pxa.h │ │ ├── raspi_platform.h │ │ ├── sharpsl.h │ │ ├── smmu-common.h │ │ ├── smmuv3.h │ │ ├── soc_dma.h │ │ ├── stm32f205_soc.h │ │ ├── sysbus-fdt.h │ │ ├── virt.h │ │ ├── xlnx-versal.h │ │ └── xlnx-zynqmp.h │ ├── audio │ │ ├── pcspk.h │ │ ├── soundhw.h │ │ └── wm8750.h │ ├── block │ │ ├── block.h │ │ ├── fdc.h │ │ └── flash.h │ ├── boards.h │ ├── bt.h │ ├── char │ │ ├── bcm2835_aux.h │ │ ├── cadence_uart.h │ │ ├── cmsdk-apb-uart.h │ │ ├── digic-uart.h │ │ ├── escc.h │ │ ├── imx_serial.h │ │ ├── lm32_juart.h │ │ ├── nrf51_uart.h │ │ ├── parallel.h │ │ ├── pl011.h │ │ ├── serial.h │ │ ├── stm32f2xx_usart.h │ │ └── xilinx_uartlite.h │ ├── core │ │ ├── generic-loader.h │ │ └── split-irq.h │ ├── cpu │ │ ├── a15mpcore.h │ │ ├── a9mpcore.h │ │ ├── arm11mpcore.h │ │ ├── cluster.h │ │ └── core.h │ ├── cris │ │ ├── etraxfs.h │ │ └── etraxfs_dma.h │ ├── devices.h │ ├── display │ │ ├── bcm2835_fb.h │ │ ├── bochs-vbe.h │ │ ├── dpcd.h │ │ ├── edid.h │ │ ├── milkymist_tmu2.h │ │ ├── ramfb.h │ │ ├── vga.h │ │ └── xlnx_dp.h │ ├── dma │ │ ├── bcm2835_dma.h │ │ ├── i8257.h │ │ ├── pl080.h │ │ ├── xlnx-zdma.h │ │ ├── xlnx-zynq-devcfg.h │ │ └── xlnx_dpdma.h │ ├── elf_ops.h │ ├── empty_slot.h │ ├── firmware │ │ └── smbios.h │ ├── fw-path-provider.h │ ├── gpio │ │ ├── bcm2835_gpio.h │ │ ├── imx_gpio.h │ │ └── nrf51_gpio.h │ ├── hotplug.h │ ├── hw.h │ ├── hyperv │ │ ├── hyperv-proto.h │ │ └── hyperv.h │ ├── i2c │ │ ├── aspeed_i2c.h │ │ ├── i2c-ddc.h │ │ ├── i2c.h │ │ ├── imx_i2c.h │ │ ├── microbit_i2c.h │ │ ├── pm_smbus.h │ │ ├── ppc4xx_i2c.h │ │ └── smbus.h │ ├── i386 │ │ ├── apic-msidef.h │ │ ├── apic.h │ │ ├── apic_internal.h │ │ ├── ich9.h │ │ ├── intel_iommu.h │ │ ├── ioapic.h │ │ ├── ioapic_internal.h │ │ ├── pc.h │ │ ├── topology.h │ │ └── x86-iommu.h │ ├── ide.h │ ├── ide │ │ ├── ahci.h │ │ ├── internal.h │ │ └── pci.h │ ├── input │ │ ├── adb-keys.h │ │ ├── adb.h │ │ ├── hid.h │ │ ├── i8042.h │ │ └── ps2.h │ ├── intc │ │ ├── allwinner-a10-pic.h │ │ ├── arm_gic.h │ │ ├── arm_gic_common.h │ │ ├── arm_gicv3.h │ │ ├── arm_gicv3_common.h │ │ ├── arm_gicv3_its_common.h │ │ ├── armv7m_nvic.h │ │ ├── aspeed_vic.h │ │ ├── bcm2835_ic.h │ │ ├── bcm2836_control.h │ │ ├── heathrow_pic.h │ │ ├── imx_avic.h │ │ ├── imx_gpcv2.h │ │ ├── intc.h │ │ ├── mips_gic.h │ │ ├── realview_gic.h │ │ ├── xlnx-pmu-iomod-intc.h │ │ └── xlnx-zynqmp-ipi.h │ ├── ipack │ │ └── ipack.h │ ├── ipmi │ │ └── ipmi.h │ ├── irq.h │ ├── isa │ │ ├── apm.h │ │ ├── i8259_internal.h │ │ ├── isa.h │ │ ├── pc87312.h │ │ ├── superio.h │ │ └── vt82c686.h │ ├── kvm │ │ └── clock.h │ ├── lm32 │ │ └── lm32_pic.h │ ├── loader-fit.h │ ├── loader.h │ ├── m68k │ │ ├── mcf.h │ │ └── mcf_fec.h │ ├── mem │ │ ├── memory-device.h │ │ ├── nvdimm.h │ │ └── pc-dimm.h │ ├── mips │ │ ├── bios.h │ │ ├── cps.h │ │ ├── cpudevs.h │ │ └── mips.h │ ├── misc │ │ ├── a9scu.h │ │ ├── arm11scu.h │ │ ├── arm_integrator_debug.h │ │ ├── armsse-cpuid.h │ │ ├── aspeed_scu.h │ │ ├── aspeed_sdmc.h │ │ ├── auxbus.h │ │ ├── bcm2835_mbox.h │ │ ├── bcm2835_mbox_defs.h │ │ ├── bcm2835_property.h │ │ ├── bcm2835_rng.h │ │ ├── imx25_ccm.h │ │ ├── imx2_wdt.h │ │ ├── imx31_ccm.h │ │ ├── imx6_ccm.h │ │ ├── imx6_src.h │ │ ├── imx6ul_ccm.h │ │ ├── imx7_ccm.h │ │ ├── imx7_gpr.h │ │ ├── imx7_snvs.h │ │ ├── imx_ccm.h │ │ ├── iotkit-secctl.h │ │ ├── iotkit-sysctl.h │ │ ├── iotkit-sysinfo.h │ │ ├── ivshmem.h │ │ ├── macio │ │ │ ├── cuda.h │ │ │ ├── gpio.h │ │ │ ├── macio.h │ │ │ └── pmu.h │ │ ├── mips_cmgcr.h │ │ ├── mips_cpc.h │ │ ├── mips_itu.h │ │ ├── mos6522.h │ │ ├── mps2-fpgaio.h │ │ ├── mps2-scc.h │ │ ├── msf2-sysreg.h │ │ ├── nrf51_rng.h │ │ ├── pca9552.h │ │ ├── pca9552_regs.h │ │ ├── pvpanic.h │ │ ├── stm32f2xx_syscfg.h │ │ ├── tmp105_regs.h │ │ ├── tz-mpc.h │ │ ├── tz-msc.h │ │ ├── tz-ppc.h │ │ ├── unimp.h │ │ ├── vmcoreinfo.h │ │ └── zynq-xadc.h │ ├── net │ │ ├── allwinner_emac.h │ │ ├── cadence_gem.h │ │ ├── ftgmac100.h │ │ ├── imx_fec.h │ │ ├── lance.h │ │ ├── mii.h │ │ └── ne2000-isa.h │ ├── nmi.h │ ├── nvram │ │ ├── chrp_nvram.h │ │ ├── eeprom93xx.h │ │ ├── fw_cfg.h │ │ ├── nrf51_nvm.h │ │ └── sun_nvram.h │ ├── or-irq.h │ ├── pci-bridge │ │ └── simba.h │ ├── pci-host │ │ ├── designware.h │ │ ├── gpex.h │ │ ├── pam.h │ │ ├── ppce500.h │ │ ├── q35.h │ │ ├── sabre.h │ │ ├── spapr.h │ │ ├── uninorth.h │ │ └── xilinx-pcie.h │ ├── pci │ │ ├── msi.h │ │ ├── msix.h │ │ ├── pci.h │ │ ├── pci_bridge.h │ │ ├── pci_bus.h │ │ ├── pci_host.h │ │ ├── pci_ids.h │ │ ├── pci_regs.h │ │ ├── pcie.h │ │ ├── pcie_aer.h │ │ ├── pcie_host.h │ │ ├── pcie_port.h │ │ ├── pcie_regs.h │ │ ├── shpc.h │ │ └── slotid_cap.h │ ├── pcmcia.h │ ├── platform-bus.h │ ├── ppc │ │ ├── fdt.h │ │ ├── mac_dbdma.h │ │ ├── openpic.h │ │ ├── openpic_kvm.h │ │ ├── pnv.h │ │ ├── pnv_core.h │ │ ├── pnv_lpc.h │ │ ├── pnv_occ.h │ │ ├── pnv_psi.h │ │ ├── pnv_xscom.h │ │ ├── ppc.h │ │ ├── ppc4xx.h │ │ ├── ppc_e500.h │ │ ├── spapr.h │ │ ├── spapr_cpu_core.h │ │ ├── spapr_drc.h │ │ ├── spapr_irq.h │ │ ├── spapr_ovec.h │ │ ├── spapr_rtas.h │ │ ├── spapr_vio.h │ │ ├── spapr_xive.h │ │ ├── xics.h │ │ ├── xics_spapr.h │ │ ├── xive.h │ │ └── xive_regs.h │ ├── ptimer.h │ ├── qdev-core.h │ ├── qdev-dma.h │ ├── qdev-properties.h │ ├── qdev.h │ ├── register.h │ ├── registerfields.h │ ├── riscv │ │ ├── riscv_hart.h │ │ ├── riscv_htif.h │ │ ├── sifive_clint.h │ │ ├── sifive_e.h │ │ ├── sifive_plic.h │ │ ├── sifive_prci.h │ │ ├── sifive_test.h │ │ ├── sifive_u.h │ │ ├── sifive_uart.h │ │ ├── spike.h │ │ └── virt.h │ ├── s390x │ │ ├── 3270-ccw.h │ │ ├── adapter.h │ │ ├── ap-bridge.h │ │ ├── ap-device.h │ │ ├── css-bridge.h │ │ ├── css.h │ │ ├── ebcdic.h │ │ ├── event-facility.h │ │ ├── ioinst.h │ │ ├── s390-ccw.h │ │ ├── s390-virtio-ccw.h │ │ ├── s390_flic.h │ │ ├── sclp.h │ │ ├── storage-attributes.h │ │ ├── storage-keys.h │ │ └── tod.h │ ├── scsi │ │ ├── emulation.h │ │ ├── esp.h │ │ └── scsi.h │ ├── sd │ │ ├── bcm2835_sdhost.h │ │ ├── sd.h │ │ └── sdhci.h │ ├── sh4 │ │ ├── sh.h │ │ └── sh_intc.h │ ├── sparc │ │ ├── grlib.h │ │ ├── sparc32_dma.h │ │ ├── sparc64.h │ │ ├── sun4m_iommu.h │ │ └── sun4u_iommu.h │ ├── ssi │ │ ├── aspeed_smc.h │ │ ├── imx_spi.h │ │ ├── mss-spi.h │ │ ├── pl022.h │ │ ├── ssi.h │ │ ├── stm32f2xx_spi.h │ │ └── xilinx_spips.h │ ├── stream.h │ ├── sysbus.h │ ├── timer │ │ ├── a9gtimer.h │ │ ├── allwinner-a10-pit.h │ │ ├── arm_mptimer.h │ │ ├── armv7m_systick.h │ │ ├── aspeed_timer.h │ │ ├── cmsdk-apb-dualtimer.h │ │ ├── cmsdk-apb-timer.h │ │ ├── digic-timer.h │ │ ├── hpet.h │ │ ├── i8254.h │ │ ├── i8254_internal.h │ │ ├── imx_epit.h │ │ ├── imx_gpt.h │ │ ├── m48t59.h │ │ ├── mc146818rtc.h │ │ ├── mc146818rtc_regs.h │ │ ├── mips_gictimer.h │ │ ├── mss-timer.h │ │ ├── nrf51_timer.h │ │ ├── stm32f2xx_timer.h │ │ ├── sun4v-rtc.h │ │ └── xlnx-zynqmp-rtc.h │ ├── tricore │ │ └── tricore.h │ ├── unicore32 │ │ └── puv3.h │ ├── usb.h │ ├── usb │ │ ├── chipidea.h │ │ ├── ehci-regs.h │ │ └── uhci-regs.h │ ├── vfio │ │ ├── vfio-amd-xgbe.h │ │ ├── vfio-calxeda-xgmac.h │ │ ├── vfio-common.h │ │ ├── vfio-platform.h │ │ └── vfio.h │ ├── virtio │ │ ├── vhost-backend.h │ │ ├── vhost-scsi-common.h │ │ ├── vhost-scsi.h │ │ ├── vhost-user-blk.h │ │ ├── vhost-user-scsi.h │ │ ├── vhost-user.h │ │ ├── vhost-vsock.h │ │ ├── vhost.h │ │ ├── virtio-access.h │ │ ├── virtio-balloon.h │ │ ├── virtio-blk.h │ │ ├── virtio-bus.h │ │ ├── virtio-crypto.h │ │ ├── virtio-gpu.h │ │ ├── virtio-input.h │ │ ├── virtio-net.h │ │ ├── virtio-rng.h │ │ ├── virtio-scsi.h │ │ ├── virtio-serial.h │ │ └── virtio.h │ ├── watchdog │ │ ├── cmsdk-apb-watchdog.h │ │ ├── wdt_aspeed.h │ │ └── wdt_diag288.h │ ├── xen │ │ ├── io │ │ │ └── ring.h │ │ ├── start_info.h │ │ ├── xen-backend.h │ │ ├── xen-block.h │ │ ├── xen-bus-helper.h │ │ ├── xen-bus.h │ │ ├── xen-legacy-backend.h │ │ ├── xen.h │ │ ├── xen_common.h │ │ └── xen_pvdev.h │ └── xtensa │ │ ├── mx_pic.h │ │ └── xtensa-isa.h ├── io │ ├── channel-buffer.h │ ├── channel-command.h │ ├── channel-file.h │ ├── channel-socket.h │ ├── channel-tls.h │ ├── channel-util.h │ ├── channel-watch.h │ ├── channel-websock.h │ ├── channel.h │ ├── dns-resolver.h │ ├── net-listener.h │ └── task.h ├── libdecnumber │ ├── dconfig.h │ ├── decContext.h │ ├── decDPD.h │ ├── decNumber.h │ ├── decNumberLocal.h │ └── dpd │ │ ├── decimal128.h │ │ ├── decimal128Local.h │ │ ├── decimal32.h │ │ └── decimal64.h ├── migration │ ├── blocker.h │ ├── colo.h │ ├── cpu.h │ ├── failover.h │ ├── global_state.h │ ├── misc.h │ ├── qemu-file-types.h │ ├── register.h │ ├── snapshot.h │ └── vmstate.h ├── monitor │ ├── hmp-target.h │ ├── monitor.h │ └── qdev.h ├── net │ ├── can_emu.h │ ├── can_host.h │ ├── checksum.h │ ├── eth.h │ ├── filter.h │ ├── net.h │ ├── queue.h │ ├── slirp.h │ ├── tap.h │ ├── vhost-user.h │ └── vhost_net.h ├── qapi │ ├── clone-visitor.h │ ├── dealloc-visitor.h │ ├── error.h │ ├── opts-visitor.h │ ├── qmp-event.h │ ├── qmp │ │ ├── dispatch.h │ │ ├── json-parser.h │ │ ├── qbool.h │ │ ├── qdict.h │ │ ├── qerror.h │ │ ├── qjson.h │ │ ├── qlist.h │ │ ├── qlit.h │ │ ├── qnull.h │ │ ├── qnum.h │ │ ├── qobject.h │ │ └── qstring.h │ ├── qobject-input-visitor.h │ ├── qobject-output-visitor.h │ ├── string-input-visitor.h │ ├── string-output-visitor.h │ ├── util.h │ ├── visitor-impl.h │ └── visitor.h ├── qemu-common.h ├── qemu-io.h ├── qemu │ ├── acl.h │ ├── atomic.h │ ├── atomic128.h │ ├── base64.h │ ├── bcd.h │ ├── bitmap.h │ ├── bitops.h │ ├── bswap.h │ ├── buffer.h │ ├── compiler.h │ ├── config-file.h │ ├── coroutine.h │ ├── coroutine_int.h │ ├── cpuid.h │ ├── crc32c.h │ ├── cutils.h │ ├── drm.h │ ├── envlist.h │ ├── error-report.h │ ├── event_notifier.h │ ├── fifo32.h │ ├── fifo8.h │ ├── fprintf-fn.h │ ├── futex.h │ ├── hbitmap.h │ ├── help_option.h │ ├── host-utils.h │ ├── id.h │ ├── int128.h │ ├── iov.h │ ├── iova-tree.h │ ├── jhash.h │ ├── job.h │ ├── lockable.h │ ├── log-for-trace.h │ ├── log.h │ ├── main-loop.h │ ├── memfd.h │ ├── mmap-alloc.h │ ├── module.h │ ├── notify.h │ ├── option.h │ ├── option_int.h │ ├── osdep.h │ ├── path.h │ ├── pmem.h │ ├── processor.h │ ├── qdist.h │ ├── qht.h │ ├── qsp.h │ ├── queue.h │ ├── range.h │ ├── ratelimit.h │ ├── rcu.h │ ├── rcu_queue.h │ ├── readline.h │ ├── seqlock.h │ ├── sockets.h │ ├── stats64.h │ ├── sys_membarrier.h │ ├── systemd.h │ ├── thread-posix.h │ ├── thread-win32.h │ ├── thread.h │ ├── throttle-options.h │ ├── throttle.h │ ├── timed-average.h │ ├── timer.h │ ├── typedefs.h │ ├── unicode.h │ ├── units.h │ ├── uri.h │ ├── uuid.h │ ├── vfio-helpers.h │ ├── win_dump_defs.h │ ├── xattr.h │ └── xxhash.h ├── qom │ ├── cpu.h │ ├── object.h │ ├── object_interfaces.h │ └── qom-qobject.h ├── scsi │ ├── constants.h │ ├── pr-manager.h │ └── utils.h ├── standard-headers │ ├── asm-s390 │ │ └── virtio-ccw.h │ ├── asm-x86 │ │ ├── bootparam.h │ │ └── kvm_para.h │ ├── drivers │ │ └── infiniband │ │ │ └── hw │ │ │ └── vmw_pvrdma │ │ │ ├── pvrdma_dev_api.h │ │ │ ├── pvrdma_ring.h │ │ │ └── pvrdma_verbs.h │ ├── drm │ │ └── drm_fourcc.h │ ├── linux │ │ ├── ethtool.h │ │ ├── if_ether.h │ │ ├── input-event-codes.h │ │ ├── input.h │ │ ├── kernel.h │ │ ├── pci_regs.h │ │ ├── qemu_fw_cfg.h │ │ ├── sysinfo.h │ │ ├── types.h │ │ ├── vhost_types.h │ │ ├── virtio_9p.h │ │ ├── virtio_balloon.h │ │ ├── virtio_blk.h │ │ ├── virtio_config.h │ │ ├── virtio_console.h │ │ ├── virtio_crypto.h │ │ ├── virtio_gpu.h │ │ ├── virtio_ids.h │ │ ├── virtio_input.h │ │ ├── virtio_mmio.h │ │ ├── virtio_net.h │ │ ├── virtio_pci.h │ │ ├── virtio_ring.h │ │ ├── virtio_rng.h │ │ ├── virtio_scsi.h │ │ ├── virtio_types.h │ │ └── virtio_vsock.h │ └── rdma │ │ └── vmw_pvrdma-abi.h ├── sysemu │ ├── accel.h │ ├── arch_init.h │ ├── balloon.h │ ├── block-backend.h │ ├── blockdev.h │ ├── bt.h │ ├── cpus.h │ ├── cryptodev-vhost-user.h │ ├── cryptodev-vhost.h │ ├── cryptodev.h │ ├── device_tree.h │ ├── dma.h │ ├── dump-arch.h │ ├── dump.h │ ├── hax.h │ ├── hostmem.h │ ├── hvf.h │ ├── hw_accel.h │ ├── iothread.h │ ├── kvm.h │ ├── kvm_int.h │ ├── memory_mapping.h │ ├── numa.h │ ├── os-posix.h │ ├── os-win32.h │ ├── qtest.h │ ├── replay.h │ ├── reset.h │ ├── rng-random.h │ ├── rng.h │ ├── seccomp.h │ ├── sev.h │ ├── sysemu.h │ ├── tpm.h │ ├── tpm_backend.h │ ├── watchdog.h │ ├── whpx.h │ └── xen-mapcache.h ├── trace-tcg.h └── ui │ ├── console.h │ ├── egl-context.h │ ├── egl-helpers.h │ ├── gtk.h │ ├── input.h │ ├── kbd-state.h │ ├── pixel_ops.h │ ├── qemu-pixman.h │ ├── qemu-spice.h │ ├── sdl2.h │ ├── shader.h │ └── spice-display.h ├── io ├── Makefile.objs ├── channel-buffer.c ├── channel-command.c ├── channel-file.c ├── channel-socket.c ├── channel-tls.c ├── channel-util.c ├── channel-watch.c ├── channel-websock.c ├── channel.c ├── dns-resolver.c ├── net-listener.c ├── task.c └── trace-events ├── ioport.c ├── iothread.c ├── job-qmp.c ├── job.c ├── kernel.config ├── libdecnumber ├── Makefile.objs ├── decContext.c ├── decNumber.c └── dpd │ ├── decimal128.c │ ├── decimal32.c │ └── decimal64.c ├── linux-headers ├── COPYING ├── LICENSES │ ├── exceptions │ │ └── Linux-syscall-note │ └── preferred │ │ ├── BSD-2-Clause │ │ ├── BSD-3-Clause │ │ └── GPL-2.0 ├── README ├── asm-arm │ ├── bitsperlong.h │ ├── kvm.h │ ├── unistd-common.h │ ├── unistd-eabi.h │ ├── unistd-oabi.h │ └── unistd.h ├── asm-arm64 │ ├── bitsperlong.h │ ├── kvm.h │ └── unistd.h ├── asm-generic │ ├── bitsperlong.h │ └── unistd.h ├── asm-mips │ ├── bitsperlong.h │ ├── kvm.h │ ├── sgidefs.h │ ├── unistd.h │ ├── unistd_n32.h │ ├── unistd_n64.h │ └── unistd_o32.h ├── asm-powerpc │ ├── bitsperlong.h │ ├── kvm.h │ ├── unistd.h │ ├── unistd_32.h │ └── unistd_64.h ├── asm-s390 │ ├── bitsperlong.h │ ├── kvm.h │ ├── unistd.h │ ├── unistd_32.h │ └── unistd_64.h ├── asm-x86 │ ├── bitsperlong.h │ ├── kvm.h │ ├── unistd.h │ ├── unistd_32.h │ ├── unistd_64.h │ └── unistd_x32.h └── linux │ ├── kvm.h │ ├── psci.h │ ├── psp-sev.h │ ├── userfaultfd.h │ ├── vfio.h │ ├── vfio_ccw.h │ ├── vhost.h │ ├── vhost_types.h │ ├── virtio_config.h │ └── virtio_ring.h ├── linux-user ├── Makefile.objs ├── aarch64 │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── alpha │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── arm │ ├── cpu_loop.c │ ├── nwfpe │ │ ├── Makefile.objs │ │ ├── double_cpdo.c │ │ ├── extended_cpdo.c │ │ ├── fpa11.c │ │ ├── fpa11.h │ │ ├── fpa11.inl │ │ ├── fpa11_cpdo.c │ │ ├── fpa11_cpdt.c │ │ ├── fpa11_cprt.c │ │ ├── fpopcode.c │ │ ├── fpopcode.h │ │ ├── fpsr.h │ │ └── single_cpdo.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── cpu_loop-common.h ├── cris │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── elfload.c ├── errno_defs.h ├── exit.c ├── fd-trans.c ├── fd-trans.h ├── flat.h ├── flatload.c ├── generic │ ├── fcntl.h │ ├── signal.h │ └── sockbits.h ├── host │ ├── aarch64 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── arm │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── i386 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── ia64 │ │ └── hostdep.h │ ├── mips │ │ └── hostdep.h │ ├── ppc │ │ └── hostdep.h │ ├── ppc64 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── riscv32 │ │ └── hostdep.h │ ├── riscv64 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── s390 │ │ └── hostdep.h │ ├── s390x │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S │ ├── sparc │ │ └── hostdep.h │ ├── sparc64 │ │ └── hostdep.h │ ├── x32 │ │ └── hostdep.h │ └── x86_64 │ │ ├── hostdep.h │ │ └── safe-syscall.inc.S ├── hppa │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── i386 │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── ioctls.h ├── linux_loop.h ├── linuxload.c ├── m68k-sim.c ├── m68k │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── main.c ├── microblaze │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mips │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mips64 │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── mmap.c ├── nios2 │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── openrisc │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── ppc │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── qemu.h ├── riscv │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── s390x │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── safe-syscall.S ├── sh4 │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── signal-common.h ├── signal.c ├── socket.h ├── sparc │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_errno.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── sparc64 │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── strace.c ├── strace.list ├── syscall.c ├── syscall_defs.h ├── syscall_types.h ├── target_flat.h ├── tilegx │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── trace-events ├── uaccess.c ├── uname.c ├── uname.h ├── vm86.c ├── x86_64 │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h └── xtensa │ ├── cpu_loop.c │ ├── signal.c │ ├── sockbits.h │ ├── syscall_nr.h │ ├── target_cpu.h │ ├── target_elf.h │ ├── target_fcntl.h │ ├── target_flat.h │ ├── target_signal.h │ ├── target_structs.h │ ├── target_syscall.h │ └── termbits.h ├── memory.c ├── memory_ldst.inc.c ├── memory_mapping.c ├── migration ├── Makefile.objs ├── block-dirty-bitmap.c ├── block.c ├── block.h ├── channel.c ├── channel.h ├── colo-failover.c ├── colo.c ├── exec.c ├── exec.h ├── fd.c ├── fd.h ├── global_state.c ├── migration.c ├── migration.h ├── page_cache.c ├── page_cache.h ├── postcopy-ram.c ├── postcopy-ram.h ├── qemu-file-channel.c ├── qemu-file-channel.h ├── qemu-file.c ├── qemu-file.h ├── qjson.c ├── qjson.h ├── ram.c ├── ram.h ├── rdma.c ├── rdma.h ├── savevm.c ├── savevm.h ├── socket.c ├── socket.h ├── tls.c ├── tls.h ├── trace-events ├── vmstate-types.c ├── vmstate.c ├── xbzrle.c └── xbzrle.h ├── module-common.c ├── monitor.c ├── nbd ├── Makefile.objs ├── client.c ├── common.c ├── nbd-internal.h ├── server.c └── trace-events ├── net ├── Makefile.objs ├── can │ ├── Makefile.objs │ ├── can_core.c │ ├── can_host.c │ └── can_socketcan.c ├── checksum.c ├── clients.h ├── colo-compare.c ├── colo-compare.h ├── colo.c ├── colo.h ├── dump.c ├── eth.c ├── filter-buffer.c ├── filter-mirror.c ├── filter-replay.c ├── filter-rewriter.c ├── filter.c ├── hub.c ├── hub.h ├── l2tpv3.c ├── net.c ├── netmap.c ├── queue.c ├── slirp.c ├── socket.c ├── tap-bsd.c ├── tap-linux.c ├── tap-linux.h ├── tap-solaris.c ├── tap-stub.c ├── tap-win32.c ├── tap.c ├── tap_int.h ├── trace-events ├── util.c ├── util.h ├── vde.c └── vhost-user.c ├── numa.c ├── os-posix.c ├── os-win32.c ├── pc-bios ├── Makefile ├── QEMU,cgthree.bin ├── QEMU,tcx.bin ├── README ├── bamboo.dtb ├── bamboo.dts ├── bios-256k.bin ├── bios.bin ├── canyonlands.dtb ├── canyonlands.dts ├── efi-e1000.rom ├── efi-e1000e.rom ├── efi-eepro100.rom ├── efi-ne2k_pci.rom ├── efi-pcnet.rom ├── efi-rtl8139.rom ├── efi-virtio.rom ├── efi-vmxnet3.rom ├── hppa-firmware.img ├── keymaps │ ├── Makefile │ ├── ar │ ├── bepo │ ├── cz │ ├── da │ ├── de │ ├── de-ch │ ├── en-gb │ ├── en-us │ ├── es │ ├── et │ ├── fi │ ├── fo │ ├── fr │ ├── fr-be │ ├── fr-ca │ ├── fr-ch │ ├── hr │ ├── hu │ ├── is │ ├── it │ ├── ja │ ├── lt │ ├── lv │ ├── mk │ ├── nl │ ├── no │ ├── pl │ ├── pt │ ├── pt-br │ ├── ru │ ├── sl │ ├── sv │ ├── th │ └── tr ├── kvmvapic.bin ├── linuxboot.bin ├── linuxboot_dma.bin ├── multiboot.bin ├── openbios-ppc ├── openbios-sparc32 ├── openbios-sparc64 ├── optionrom │ ├── Makefile │ ├── code16gcc.h │ ├── flat.lds │ ├── kvmvapic.S │ ├── linuxboot.S │ ├── linuxboot_dma.c │ ├── multiboot.S │ ├── optionrom.h │ ├── optrom.h │ ├── optrom_fw_cfg.h │ ├── pvh.S │ └── pvh_main.c ├── palcode-clipper ├── petalogix-ml605.dtb ├── petalogix-s3adsp1800.dtb ├── ppc_rom.bin ├── pvh.bin ├── pxe-e1000.rom ├── pxe-eepro100.rom ├── pxe-ne2k_pci.rom ├── pxe-pcnet.rom ├── pxe-rtl8139.rom ├── pxe-virtio.rom ├── qemu-nsis.bmp ├── qemu-nsis.ico ├── qemu.rsrc ├── qemu_logo.svg ├── qemu_vga.ndrv ├── s390-ccw.img ├── s390-ccw │ ├── Makefile │ ├── bootmap.c │ ├── bootmap.h │ ├── bswap.h │ ├── cio.h │ ├── iplb.h │ ├── jump2ipl.c │ ├── libc.c │ ├── libc.h │ ├── main.c │ ├── menu.c │ ├── netboot.mak │ ├── netmain.c │ ├── s390-ccw.h │ ├── sclp.c │ ├── sclp.h │ ├── scsi.h │ ├── start.S │ ├── virtio-blkdev.c │ ├── virtio-net.c │ ├── virtio-scsi.c │ ├── virtio-scsi.h │ ├── virtio.c │ └── virtio.h ├── s390-netboot.img ├── sgabios.bin ├── skiboot.lid ├── slof.bin ├── spapr-rtas.bin ├── spapr-rtas │ ├── Makefile │ └── spapr-rtas.S ├── u-boot-sam460-20100605.bin ├── u-boot.e500 ├── vgabios-bochs-display.bin ├── vgabios-cirrus.bin ├── vgabios-qxl.bin ├── vgabios-ramfb.bin ├── vgabios-stdvga.bin ├── vgabios-virtio.bin ├── vgabios-vmware.bin └── vgabios.bin ├── po ├── Makefile ├── bg.po ├── de_DE.po ├── fr_FR.po ├── hu.po ├── it.po ├── messages.po ├── tr.po └── zh_CN.po ├── qapi ├── Makefile.objs ├── block-core.json ├── block.json ├── char.json ├── common.json ├── crypto.json ├── introspect.json ├── job.json ├── migration.json ├── misc.json ├── net.json ├── opts-visitor.c ├── qapi-clone-visitor.c ├── qapi-dealloc-visitor.c ├── qapi-schema.json ├── qapi-util.c ├── qapi-visit-core.c ├── qmp-dispatch.c ├── qmp-event.c ├── qmp-registry.c ├── qobject-input-visitor.c ├── qobject-output-visitor.c ├── rdma.json ├── rocker.json ├── run-state.json ├── sockets.json ├── string-input-visitor.c ├── string-output-visitor.c ├── tpm.json ├── trace-events ├── trace.json ├── transaction.json └── ui.json ├── qdev-monitor.c ├── qdict-test-data.txt ├── qemu-bridge-helper.c ├── qemu-deprecated.texi ├── qemu-doc.texi ├── qemu-edid.c ├── qemu-ga.texi ├── qemu-img-cmds.hx ├── qemu-img.c ├── qemu-img.texi ├── qemu-io-cmds.c ├── qemu-io.c ├── qemu-keymap.c ├── qemu-nbd.c ├── qemu-nbd.texi ├── qemu-option-trace.texi ├── qemu-options-wrapper.h ├── qemu-options.h ├── qemu-options.hx ├── qemu-seccomp.c ├── qemu-tech.texi ├── qemu.nsi ├── qemu.sasl ├── qga ├── Makefile.objs ├── channel-posix.c ├── channel-win32.c ├── channel.h ├── commands-posix.c ├── commands-win32.c ├── commands.c ├── guest-agent-command-state.c ├── guest-agent-core.h ├── installer │ └── qemu-ga.wxs ├── main.c ├── qapi-schema.json ├── service-win32.c ├── service-win32.h ├── vss-win32.c ├── vss-win32.h └── vss-win32 │ ├── Makefile.objs │ ├── install.cpp │ ├── install.h │ ├── provider.cpp │ ├── qga-vss.def │ ├── qga-vss.idl │ ├── qga-vss.tlb │ ├── requester.cpp │ ├── requester.h │ ├── vss-common.h │ └── vss-handles.h ├── qmp.c ├── qobject ├── Makefile.objs ├── block-qdict.c ├── json-lexer.c ├── json-parser-int.h ├── json-parser.c ├── json-streamer.c ├── qbool.c ├── qdict.c ├── qjson.c ├── qlist.c ├── qlit.c ├── qnull.c ├── qnum.c ├── qobject.c └── qstring.c ├── qom ├── Makefile.objs ├── container.c ├── cpu.c ├── object.c ├── object_interfaces.c ├── qom-qobject.c └── trace-events ├── qtest.c ├── replay ├── Makefile.objs ├── replay-audio.c ├── replay-char.c ├── replay-events.c ├── replay-input.c ├── replay-internal.c ├── replay-internal.h ├── replay-net.c ├── replay-snapshot.c ├── replay-time.c └── replay.c ├── replication.c ├── replication.h ├── roms ├── Makefile ├── config.seabios-128k ├── config.seabios-256k ├── config.vga-bochs-display ├── config.vga-cirrus ├── config.vga-isavga ├── config.vga-qxl ├── config.vga-ramfb ├── config.vga-stdvga ├── config.vga-virtio ├── config.vga-vmware └── configure-seabios.sh ├── rules.mak ├── scripts ├── analyse-9p-simpletrace.py ├── analyse-locks-simpletrace.py ├── analyze-inclusions ├── analyze-migration.py ├── archive-source.sh ├── checkpatch.pl ├── clean-header-guards.pl ├── clean-includes ├── cleanup-trace-events.pl ├── cocci-macro-file.h ├── coccinelle │ ├── cpu_restore_state.cocci │ ├── err-bad-newline.cocci │ ├── error_propagate_null.cocci │ ├── inplace-byteswaps.cocci │ ├── memory-region-init-ram.cocci │ ├── overflow_muldiv64.cocci │ ├── qobject.cocci │ ├── remove_local_err.cocci │ ├── remove_muldiv64.cocci │ ├── return_directly.cocci │ ├── round.cocci │ ├── simplify_muldiv64.cocci │ ├── swap_muldiv64.cocci │ ├── tcg_gen_extract.cocci │ ├── typecast.cocci │ └── use-error_fatal.cocci ├── coverity-model.c ├── create_config ├── decodetree.py ├── device-crash-test ├── disas-objdump.pl ├── dump-guest-memory.py ├── extract-vsssdk-headers ├── feature_to_c.sh ├── fix-multiline-comments.sh ├── get_maintainer.pl ├── git-submodule.sh ├── git.orderfile ├── hxtool ├── kvm │ ├── kvm_flightrecorder │ └── vmxcap ├── make-release ├── make_device_config.sh ├── modules │ └── module_block.py ├── qapi-gen.py ├── qapi │ ├── __init__.py │ ├── commands.py │ ├── common.py │ ├── doc.py │ ├── events.py │ ├── introspect.py │ ├── types.py │ └── visit.py ├── qemu-binfmt-conf.sh ├── qemu-gdb.py ├── qemu-guest-agent │ ├── fsfreeze-hook │ └── fsfreeze-hook.d │ │ └── mysql-flush.sh.sample ├── qemu-trace-stap ├── qemu-trace-stap.texi ├── qemu.py ├── qemugdb │ ├── __init__.py │ ├── aio.py │ ├── coroutine.py │ ├── mtree.py │ ├── tcg.py │ └── timers.py ├── qmp │ ├── __init__.py │ ├── qemu-ga-client │ ├── qmp │ ├── qmp-shell │ ├── qmp.py │ ├── qom-fuse │ ├── qom-get │ ├── qom-list │ ├── qom-set │ └── qom-tree ├── qtest.py ├── refresh-pxe-roms.sh ├── render_block_graph.py ├── replay-dump.py ├── shaderinclude.pl ├── show-fixed-bugs.sh ├── signrom.py ├── simpletrace.py ├── switch-timer-api ├── tap-driver.pl ├── tap-merge.pl ├── texi2pod.pl ├── tracetool.py ├── tracetool │ ├── __init__.py │ ├── backend │ │ ├── __init__.py │ │ ├── dtrace.py │ │ ├── ftrace.py │ │ ├── log.py │ │ ├── simple.py │ │ ├── syslog.py │ │ └── ust.py │ ├── format │ │ ├── __init__.py │ │ ├── c.py │ │ ├── d.py │ │ ├── h.py │ │ ├── log_stap.py │ │ ├── simpletrace_stap.py │ │ ├── stap.py │ │ ├── tcg_h.py │ │ ├── tcg_helper_c.py │ │ ├── tcg_helper_h.py │ │ ├── tcg_helper_wrapper_h.py │ │ ├── ust_events_c.py │ │ └── ust_events_h.py │ ├── transform.py │ └── vcpu.py ├── travis │ └── coverage-summary.sh ├── update-linux-headers.sh └── vmstate-static-checker.py ├── scsi ├── Makefile.objs ├── pr-helper.h ├── pr-manager-helper.c ├── pr-manager-stub.c ├── pr-manager.c ├── qemu-pr-helper.c ├── trace-events └── utils.c ├── slirp ├── COPYRIGHT ├── Makefile.objs ├── arp_table.c ├── bootp.c ├── bootp.h ├── cksum.c ├── debug.h ├── dhcpv6.c ├── dhcpv6.h ├── dnssearch.c ├── if.c ├── if.h ├── ip.h ├── ip6.h ├── ip6_icmp.c ├── ip6_icmp.h ├── ip6_input.c ├── ip6_output.c ├── ip_icmp.c ├── ip_icmp.h ├── ip_input.c ├── ip_output.c ├── libslirp.h ├── main.h ├── mbuf.c ├── mbuf.h ├── misc.c ├── misc.h ├── ncsi-pkt.h ├── ncsi.c ├── ndp_table.c ├── qtailq.h ├── sbuf.c ├── sbuf.h ├── slirp.c ├── slirp.h ├── socket.c ├── socket.h ├── state.c ├── state.h ├── tcp.h ├── tcp_input.c ├── tcp_output.c ├── tcp_subr.c ├── tcp_timer.c ├── tcp_timer.h ├── tcp_var.h ├── tcpip.h ├── tftp.c ├── tftp.h ├── udp.c ├── udp.h ├── udp6.c ├── util.c └── util.h ├── stubs ├── Makefile.objs ├── arch-query-cpu-def.c ├── arch-query-cpu-model-baseline.c ├── arch-query-cpu-model-comparison.c ├── arch-query-cpu-model-expansion.c ├── bdrv-next-monitor-owned.c ├── blk-commit-all.c ├── blockdev-close-all-bdrv-states.c ├── change-state-handler.c ├── clock-warp.c ├── cpu-get-clock.c ├── cpu-get-icount.c ├── dump.c ├── error-printf.c ├── fd-register.c ├── fdset.c ├── gdbstub.c ├── get-vm-name.c ├── iothread-lock.c ├── iothread.c ├── is-daemonized.c ├── linux-aio.c ├── machine-init-done.c ├── migr-blocker.c ├── monitor.c ├── notify-event.c ├── pc_madt_cpu_entry.c ├── pci-host-piix.c ├── qmp_memory_device.c ├── qtest.c ├── ram-block.c ├── ramfb.c ├── replay.c ├── runstate-check.c ├── set-fd-handler.c ├── sysbus.c ├── target-get-monitor-def.c ├── target-monitor-defs.c ├── tpm.c ├── trace-control.c ├── uuid.c ├── vm-stop.c ├── vmgenid.c ├── vmstate.c ├── xen-common.c └── xen-hvm.c ├── target ├── alpha │ ├── Makefile.objs │ ├── STATUS │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int_helper.c │ ├── machine.c │ ├── mem_helper.c │ ├── sys_helper.c │ ├── translate.c │ └── vax_helper.c ├── arm │ ├── Makefile.objs │ ├── arch_dump.c │ ├── arm-powerctl.c │ ├── arm-powerctl.h │ ├── arm-semi.c │ ├── arm_ldst.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── cpu64.c │ ├── crypto_helper.c │ ├── gdbstub.c │ ├── gdbstub64.c │ ├── helper-a64.c │ ├── helper-a64.h │ ├── helper-sve.h │ ├── helper.c │ ├── helper.h │ ├── idau.h │ ├── internals.h │ ├── iwmmxt_helper.c │ ├── kvm-consts.h │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm32.c │ ├── kvm64.c │ ├── kvm_arm.h │ ├── machine.c │ ├── monitor.c │ ├── neon_helper.c │ ├── op_addsub.h │ ├── op_helper.c │ ├── pauth_helper.c │ ├── psci.c │ ├── sve.decode │ ├── sve_helper.c │ ├── trace-events │ ├── translate-a64.c │ ├── translate-a64.h │ ├── translate-sve.c │ ├── translate.c │ ├── translate.h │ └── vec_helper.c ├── cris │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── crisv10-decode.h │ ├── crisv32-decode.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ ├── opcode-cris.h │ ├── translate.c │ └── translate_v10.inc.c ├── hppa │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int_helper.c │ ├── machine.c │ ├── mem_helper.c │ ├── op_helper.c │ └── translate.c ├── i386 │ ├── Makefile.objs │ ├── TODO │ ├── arch_dump.c │ ├── arch_memory_mapping.c │ ├── bpt_helper.c │ ├── cc_helper.c │ ├── cc_helper_template.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── hax-all.c │ ├── hax-i386.h │ ├── hax-interface.h │ ├── hax-mem.c │ ├── hax-posix.c │ ├── hax-posix.h │ ├── hax-windows.c │ ├── hax-windows.h │ ├── helper.c │ ├── helper.h │ ├── hvf │ │ ├── Makefile.objs │ │ ├── README.md │ │ ├── hvf-i386.h │ │ ├── hvf.c │ │ ├── panic.h │ │ ├── vmcs.h │ │ ├── vmx.h │ │ ├── x86.c │ │ ├── x86.h │ │ ├── x86_cpuid.c │ │ ├── x86_decode.c │ │ ├── x86_decode.h │ │ ├── x86_descr.c │ │ ├── x86_descr.h │ │ ├── x86_emu.c │ │ ├── x86_emu.h │ │ ├── x86_flags.c │ │ ├── x86_flags.h │ │ ├── x86_mmu.c │ │ ├── x86_mmu.h │ │ ├── x86_task.c │ │ ├── x86_task.h │ │ ├── x86hvf.c │ │ └── x86hvf.h │ ├── hyperv-proto.h │ ├── hyperv-stub.c │ ├── hyperv.c │ ├── hyperv.h │ ├── int_helper.c │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_i386.h │ ├── machine.c │ ├── mem_helper.c │ ├── misc_helper.c │ ├── monitor.c │ ├── mpx_helper.c │ ├── ops_sse.h │ ├── ops_sse_header.h │ ├── seg_helper.c │ ├── sev-stub.c │ ├── sev.c │ ├── sev_i386.h │ ├── shift_helper_template.h │ ├── smm_helper.c │ ├── svm.h │ ├── svm_helper.c │ ├── trace-events │ ├── translate.c │ ├── whp-dispatch.h │ ├── whpx-all.c │ └── xsave_helper.c ├── lm32 │ ├── Makefile.objs │ ├── README │ ├── TODO │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── lm32-semi.c │ ├── machine.c │ ├── op_helper.c │ └── translate.c ├── m68k │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── m68k-semi.c │ ├── monitor.c │ ├── op_helper.c │ ├── qregs.def │ ├── softfloat.c │ ├── softfloat.h │ ├── softfloat_fpsp_tables.h │ └── translate.c ├── microblaze │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── microblaze-decode.h │ ├── mmu.c │ ├── mmu.h │ ├── op_helper.c │ └── translate.c ├── mips │ ├── Makefile.objs │ ├── TODO │ ├── cp0_timer.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── dsp_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── internal.h │ ├── kvm.c │ ├── kvm_mips.h │ ├── lmi_helper.c │ ├── machine.c │ ├── mips-defs.h │ ├── mips-semi.c │ ├── msa_helper.c │ ├── op_helper.c │ ├── trace-events │ ├── translate.c │ └── translate_init.inc.c ├── moxie │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── machine.c │ ├── machine.h │ ├── mmu.c │ ├── mmu.h │ └── translate.c ├── nios2 │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── mmu.c │ ├── mmu.h │ ├── monitor.c │ ├── op_helper.c │ └── translate.c ├── openrisc │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── disas.c │ ├── exception.c │ ├── exception.h │ ├── exception_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── insns.decode │ ├── interrupt.c │ ├── interrupt_helper.c │ ├── machine.c │ ├── mmu.c │ ├── sys_helper.c │ └── translate.c ├── ppc │ ├── Makefile.objs │ ├── arch_dump.c │ ├── compat.c │ ├── cpu-models.c │ ├── cpu-models.h │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── dfp_helper.c │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── helper_regs.h │ ├── int_helper.c │ ├── internal.h │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_ppc.h │ ├── machine.c │ ├── mem_helper.c │ ├── mfrom_table.inc.c │ ├── mfrom_table_gen.c │ ├── misc_helper.c │ ├── mmu-book3s-v3.c │ ├── mmu-book3s-v3.h │ ├── mmu-hash32.c │ ├── mmu-hash32.h │ ├── mmu-hash64.c │ ├── mmu-hash64.h │ ├── mmu-radix64.c │ ├── mmu-radix64.h │ ├── mmu_helper.c │ ├── monitor.c │ ├── timebase_helper.c │ ├── trace-events │ ├── translate.c │ ├── translate │ │ ├── dfp-impl.inc.c │ │ ├── dfp-ops.inc.c │ │ ├── fp-impl.inc.c │ │ ├── fp-ops.inc.c │ │ ├── spe-impl.inc.c │ │ ├── spe-ops.inc.c │ │ ├── vmx-impl.inc.c │ │ ├── vmx-ops.inc.c │ │ ├── vsx-impl.inc.c │ │ └── vsx-ops.inc.c │ ├── translate_init.inc.c │ └── user_only_helper.c ├── riscv │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── cpu_bits.h │ ├── cpu_helper.c │ ├── cpu_user.h │ ├── csr.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.h │ ├── instmap.h │ ├── op_helper.c │ ├── pmp.c │ ├── pmp.h │ └── translate.c ├── s390x │ ├── Makefile.objs │ ├── arch_dump.c │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── cpu_features.c │ ├── cpu_features.h │ ├── cpu_features_def.h │ ├── cpu_models.c │ ├── cpu_models.h │ ├── crypto_helper.c │ ├── diag.c │ ├── excp_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── gen-features.c │ ├── helper.c │ ├── helper.h │ ├── insn-data.def │ ├── insn-format.def │ ├── int_helper.c │ ├── internal.h │ ├── interrupt.c │ ├── ioinst.c │ ├── kvm-stub.c │ ├── kvm.c │ ├── kvm_s390x.h │ ├── machine.c │ ├── mem_helper.c │ ├── misc_helper.c │ ├── mmu_helper.c │ ├── sigp.c │ ├── tcg-stub.c │ ├── tcg_s390x.h │ ├── trace-events │ └── translate.c ├── sh4 │ ├── Makefile.objs │ ├── README.sh4 │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── monitor.c │ ├── op_helper.c │ └── translate.c ├── sparc │ ├── Makefile.objs │ ├── TODO │ ├── asi.h │ ├── cc_helper.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── fop_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── int32_helper.c │ ├── int64_helper.c │ ├── ldst_helper.c │ ├── machine.c │ ├── mmu_helper.c │ ├── monitor.c │ ├── trace-events │ ├── translate.c │ ├── vis_helper.c │ └── win_helper.c ├── tilegx │ ├── Makefile.objs │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── opcode_tilegx.h │ ├── simd_helper.c │ ├── spr_def_64.h │ └── translate.c ├── tricore │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── csfr.def │ ├── fpu_helper.c │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── translate.c │ ├── tricore-defs.h │ └── tricore-opcodes.h ├── unicore32 │ ├── Makefile.objs │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── helper.c │ ├── helper.h │ ├── op_helper.c │ ├── softmmu.c │ ├── translate.c │ └── ucf64_helper.c └── xtensa │ ├── Makefile.objs │ ├── core-dc232b.c │ ├── core-dc232b │ ├── core-isa.h │ ├── gdb-config.inc.c │ └── xtensa-modules.inc.c │ ├── core-dc233c.c │ ├── core-dc233c │ ├── core-isa.h │ ├── gdb-config.inc.c │ └── xtensa-modules.inc.c │ ├── core-de212.c │ ├── core-de212 │ ├── core-isa.h │ ├── gdb-config.inc.c │ └── xtensa-modules.inc.c │ ├── core-fsf.c │ ├── core-fsf │ ├── core-isa.h │ └── xtensa-modules.inc.c │ ├── core-sample_controller.c │ ├── core-sample_controller │ ├── core-isa.h │ ├── gdb-config.inc.c │ └── xtensa-modules.inc.c │ ├── core-test_kc705_be.c │ ├── core-test_kc705_be │ ├── core-isa.h │ ├── gdb-config.inc.c │ └── xtensa-modules.inc.c │ ├── core-test_mmuhifi_c3.c │ ├── core-test_mmuhifi_c3 │ ├── core-isa.h │ ├── gdb-config.inc.c │ └── xtensa-modules.inc.c │ ├── cpu-qom.h │ ├── cpu.c │ ├── cpu.h │ ├── dbg_helper.c │ ├── exc_helper.c │ ├── fpu_helper.c │ ├── gdbstub.c │ ├── helper.c │ ├── helper.h │ ├── import_core.sh │ ├── mmu_helper.c │ ├── monitor.c │ ├── op_helper.c │ ├── overlay_tool.h │ ├── translate.c │ ├── win_helper.c │ ├── xtensa-isa-internal.h │ ├── xtensa-isa.c │ ├── xtensa-isa.h │ └── xtensa-semi.c ├── tcg ├── LICENSE ├── README ├── TODO ├── aarch64 │ ├── tcg-target.h │ ├── tcg-target.inc.c │ └── tcg-target.opc.h ├── arm │ ├── tcg-target.h │ └── tcg-target.inc.c ├── i386 │ ├── tcg-target.h │ ├── tcg-target.inc.c │ └── tcg-target.opc.h ├── mips │ ├── tcg-target.h │ └── tcg-target.inc.c ├── optimize.c ├── ppc │ ├── tcg-target.h │ └── tcg-target.inc.c ├── riscv │ ├── tcg-target.h │ └── tcg-target.inc.c ├── s390 │ ├── tcg-target.h │ └── tcg-target.inc.c ├── sparc │ ├── tcg-target.h │ └── tcg-target.inc.c ├── tcg-common.c ├── tcg-gvec-desc.h ├── tcg-ldst.inc.c ├── tcg-mo.h ├── tcg-op-gvec.c ├── tcg-op-gvec.h ├── tcg-op-vec.c ├── tcg-op.c ├── tcg-op.h ├── tcg-opc.h ├── tcg-pool.inc.c ├── tcg.c ├── tcg.h ├── tci.c └── tci │ ├── README │ ├── tcg-target.h │ └── tcg-target.inc.c ├── tests ├── .gitignore ├── Makefile.include ├── ac97-test.c ├── acceptance │ ├── README.rst │ ├── avocado_qemu │ │ └── __init__.py │ ├── boot_linux_console.py │ ├── linux_initrd.py │ ├── version.py │ ├── virtio_version.py │ └── vnc.py ├── acpi-utils.c ├── acpi-utils.h ├── ahci-test.c ├── atomic64-bench.c ├── atomic_add-bench.c ├── benchmark-crypto-cipher.c ├── benchmark-crypto-hash.c ├── benchmark-crypto-hmac.c ├── bios-tables-test.c ├── boot-order-test.c ├── boot-sector.c ├── boot-sector.h ├── boot-serial-test.c ├── cdrom-test.c ├── check-block-qdict.c ├── check-block.sh ├── check-qdict.c ├── check-qjson.c ├── check-qlist.c ├── check-qlit.c ├── check-qnull.c ├── check-qnum.c ├── check-qobject.c ├── check-qom-interface.c ├── check-qom-proplist.c ├── check-qstring.c ├── cpu-plug-test.c ├── crypto-tls-psk-helpers.c ├── crypto-tls-psk-helpers.h ├── crypto-tls-x509-helpers.c ├── crypto-tls-x509-helpers.h ├── data │ ├── acpi │ │ ├── pc │ │ │ ├── APIC │ │ │ ├── APIC.cphp │ │ │ ├── APIC.dimmpxm │ │ │ ├── DSDT │ │ │ ├── DSDT.bridge │ │ │ ├── DSDT.cphp │ │ │ ├── DSDT.dimmpxm │ │ │ ├── DSDT.ipmikcs │ │ │ ├── DSDT.memhp │ │ │ ├── DSDT.numamem │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ ├── NFIT.dimmpxm │ │ │ ├── SLIT.cphp │ │ │ ├── SLIT.memhp │ │ │ ├── SRAT.cphp │ │ │ ├── SRAT.dimmpxm │ │ │ ├── SRAT.memhp │ │ │ ├── SRAT.numamem │ │ │ └── SSDT.dimmpxm │ │ ├── q35 │ │ │ ├── APIC │ │ │ ├── APIC.cphp │ │ │ ├── APIC.dimmpxm │ │ │ ├── DSDT │ │ │ ├── DSDT.bridge │ │ │ ├── DSDT.cphp │ │ │ ├── DSDT.dimmpxm │ │ │ ├── DSDT.ipmibt │ │ │ ├── DSDT.memhp │ │ │ ├── DSDT.mmio64 │ │ │ ├── DSDT.numamem │ │ │ ├── FACP │ │ │ ├── FACS │ │ │ ├── HPET │ │ │ ├── MCFG │ │ │ ├── NFIT.dimmpxm │ │ │ ├── SLIT.cphp │ │ │ ├── SLIT.memhp │ │ │ ├── SRAT.cphp │ │ │ ├── SRAT.dimmpxm │ │ │ ├── SRAT.memhp │ │ │ ├── SRAT.mmio64 │ │ │ ├── SRAT.numamem │ │ │ └── SSDT.dimmpxm │ │ └── rebuild-expected-aml.sh │ ├── hex-loader │ │ └── test.hex │ ├── test-qga-config │ └── test-qga-os-release ├── decode │ ├── check.sh │ ├── err_argset1.decode │ ├── err_argset2.decode │ ├── err_field1.decode │ ├── err_field2.decode │ ├── err_field3.decode │ ├── err_field4.decode │ ├── err_field5.decode │ ├── err_init1.decode │ ├── err_init2.decode │ ├── err_init3.decode │ ├── err_init4.decode │ ├── err_overlap1.decode │ ├── err_overlap2.decode │ ├── err_overlap3.decode │ ├── err_overlap4.decode │ ├── err_overlap5.decode │ ├── err_overlap6.decode │ ├── err_overlap7.decode │ ├── err_overlap8.decode │ └── err_overlap9.decode ├── device-introspect-test.c ├── display-vga-test.c ├── docker │ ├── Makefile.include │ ├── common.rc │ ├── docker.py │ ├── dockerfiles │ │ ├── centos7.docker │ │ ├── debian-alpha-cross.docker │ │ ├── debian-amd64.docker │ │ ├── debian-arm64-cross.docker │ │ ├── debian-armel-cross.docker │ │ ├── debian-armhf-cross.docker │ │ ├── debian-bootstrap.docker │ │ ├── debian-bootstrap.pre │ │ ├── debian-hppa-cross.docker │ │ ├── debian-m68k-cross.docker │ │ ├── debian-mips-cross.docker │ │ ├── debian-mips64-cross.docker │ │ ├── debian-mips64el-cross.docker │ │ ├── debian-mipsel-cross.docker │ │ ├── debian-ports.docker │ │ ├── debian-powerpc-cross.docker │ │ ├── debian-powerpc-user-cross.docker │ │ ├── debian-ppc64el-cross.docker │ │ ├── debian-riscv64-cross.docker │ │ ├── debian-s390x-cross.docker │ │ ├── debian-sh4-cross.docker │ │ ├── debian-sid.docker │ │ ├── debian-sparc64-cross.docker │ │ ├── debian-tricore-cross.docker │ │ ├── debian-win32-cross.docker │ │ ├── debian-win64-cross.docker │ │ ├── debian8-mxe.docker │ │ ├── debian8.docker │ │ ├── debian9.docker │ │ ├── fedora-i386-cross.docker │ │ ├── fedora.docker │ │ ├── travis.docker │ │ └── ubuntu.docker │ ├── run │ ├── test-block │ ├── test-build │ ├── test-clang │ ├── test-debug │ ├── test-full │ ├── test-mingw │ ├── test-quick │ ├── test-unit │ ├── travis │ └── travis.py ├── drive_del-test.c ├── ds1338-test.c ├── e1000-test.c ├── e1000e-test.c ├── eepro100-test.c ├── endianness-test.c ├── es1370-test.c ├── fdc-test.c ├── fp │ ├── .gitignore │ ├── Makefile │ ├── fp-bench.c │ ├── fp-test.c │ ├── platform.h │ └── wrap.inc.c ├── fw_cfg-test.c ├── guest-debug │ └── test-gdbstub.py ├── hd-geo-test.c ├── hexloader-test.c ├── i440fx-test.c ├── i82801b11-test.c ├── ide-test.c ├── image-fuzzer │ ├── qcow2 │ │ ├── __init__.py │ │ ├── fuzz.py │ │ └── layout.py │ └── runner.py ├── intel-hda-test.c ├── io-channel-helpers.c ├── io-channel-helpers.h ├── ioh3420-test.c ├── iothread.c ├── iothread.h ├── ipmi-bt-test.c ├── ipmi-kcs-test.c ├── ipoctal232-test.c ├── ivshmem-test.c ├── keys │ ├── README │ ├── id_rsa │ └── id_rsa.pub ├── libqos │ ├── ahci.c │ ├── ahci.h │ ├── fw_cfg.c │ ├── fw_cfg.h │ ├── i2c-imx.c │ ├── i2c-omap.c │ ├── i2c.c │ ├── i2c.h │ ├── libqos-pc.c │ ├── libqos-pc.h │ ├── libqos-spapr.c │ ├── libqos-spapr.h │ ├── libqos.c │ ├── libqos.h │ ├── malloc-generic.c │ ├── malloc-generic.h │ ├── malloc-pc.c │ ├── malloc-pc.h │ ├── malloc-spapr.c │ ├── malloc-spapr.h │ ├── malloc.c │ ├── malloc.h │ ├── pci-pc.c │ ├── pci-pc.h │ ├── pci-spapr.c │ ├── pci-spapr.h │ ├── pci.c │ ├── pci.h │ ├── rtas.c │ ├── rtas.h │ ├── usb.c │ ├── usb.h │ ├── virtio-mmio.c │ ├── virtio-mmio.h │ ├── virtio-pci.c │ ├── virtio-pci.h │ ├── virtio.c │ └── virtio.h ├── libqtest.c ├── libqtest.h ├── m25p80-test.c ├── m48t59-test.c ├── machine-none-test.c ├── megasas-test.c ├── microbit-test.c ├── migration-test.c ├── migration │ ├── .gitignore │ ├── Makefile │ ├── aarch64 │ │ ├── Makefile │ │ ├── a-b-kernel.S │ │ └── a-b-kernel.h │ ├── guestperf-batch.py │ ├── guestperf-plot.py │ ├── guestperf.py │ ├── guestperf │ │ ├── __init__.py │ │ ├── comparison.py │ │ ├── engine.py │ │ ├── hardware.py │ │ ├── plot.py │ │ ├── progress.py │ │ ├── report.py │ │ ├── scenario.py │ │ ├── shell.py │ │ └── timings.py │ ├── i386 │ │ ├── Makefile │ │ ├── a-b-bootblock.S │ │ └── a-b-bootblock.h │ ├── migration-test.h │ ├── s390x │ │ ├── Makefile │ │ ├── a-b-bios.c │ │ └── a-b-bios.h │ └── stress.c ├── multiboot │ ├── .gitignore │ ├── Makefile │ ├── aout_kludge.S │ ├── aout_kludge.out │ ├── libc.c │ ├── libc.h │ ├── link.ld │ ├── mmap.c │ ├── mmap.out │ ├── module.txt │ ├── modules.c │ ├── modules.out │ ├── multiboot.h │ ├── run_test.sh │ └── start.S ├── ne2000-test.c ├── numa-test.c ├── nvme-test.c ├── pca9552-test.c ├── pcnet-test.c ├── pkix_asn1_tab.c ├── pnv-xscom-test.c ├── prom-env-test.c ├── ptimer-test-stubs.c ├── ptimer-test.c ├── ptimer-test.h ├── pvpanic-test.c ├── pxe-test.c ├── q35-test.c ├── qapi-schema │ ├── allow-preconfig-test.err │ ├── allow-preconfig-test.exit │ ├── allow-preconfig-test.json │ ├── allow-preconfig-test.out │ ├── alternate-any.err │ ├── alternate-any.exit │ ├── alternate-any.json │ ├── alternate-any.out │ ├── alternate-array.err │ ├── alternate-array.exit │ ├── alternate-array.json │ ├── alternate-array.out │ ├── alternate-base.err │ ├── alternate-base.exit │ ├── alternate-base.json │ ├── alternate-base.out │ ├── alternate-clash.err │ ├── alternate-clash.exit │ ├── alternate-clash.json │ ├── alternate-clash.out │ ├── alternate-conflict-bool-string.err │ ├── alternate-conflict-bool-string.exit │ ├── alternate-conflict-bool-string.json │ ├── alternate-conflict-bool-string.out │ ├── alternate-conflict-dict.err │ ├── alternate-conflict-dict.exit │ ├── alternate-conflict-dict.json │ ├── alternate-conflict-dict.out │ ├── alternate-conflict-enum-bool.err │ ├── alternate-conflict-enum-bool.exit │ ├── alternate-conflict-enum-bool.json │ ├── alternate-conflict-enum-bool.out │ ├── alternate-conflict-enum-int.err │ ├── alternate-conflict-enum-int.exit │ ├── alternate-conflict-enum-int.json │ ├── alternate-conflict-enum-int.out │ ├── alternate-conflict-num-string.err │ ├── alternate-conflict-num-string.exit │ ├── alternate-conflict-num-string.json │ ├── alternate-conflict-num-string.out │ ├── alternate-conflict-string.err │ ├── alternate-conflict-string.exit │ ├── alternate-conflict-string.json │ ├── alternate-conflict-string.out │ ├── alternate-empty.err │ ├── alternate-empty.exit │ ├── alternate-empty.json │ ├── alternate-empty.out │ ├── alternate-invalid-dict.err │ ├── alternate-invalid-dict.exit │ ├── alternate-invalid-dict.json │ ├── alternate-invalid-dict.out │ ├── alternate-nested.err │ ├── alternate-nested.exit │ ├── alternate-nested.json │ ├── alternate-nested.out │ ├── alternate-unknown.err │ ├── alternate-unknown.exit │ ├── alternate-unknown.json │ ├── alternate-unknown.out │ ├── args-alternate.err │ ├── args-alternate.exit │ ├── args-alternate.json │ ├── args-alternate.out │ ├── args-any.err │ ├── args-any.exit │ ├── args-any.json │ ├── args-any.out │ ├── args-array-empty.err │ ├── args-array-empty.exit │ ├── args-array-empty.json │ ├── args-array-empty.out │ ├── args-array-unknown.err │ ├── args-array-unknown.exit │ ├── args-array-unknown.json │ ├── args-array-unknown.out │ ├── args-bad-boxed.err │ ├── args-bad-boxed.exit │ ├── args-bad-boxed.json │ ├── args-bad-boxed.out │ ├── args-boxed-anon.err │ ├── args-boxed-anon.exit │ ├── args-boxed-anon.json │ ├── args-boxed-anon.out │ ├── args-boxed-empty.err │ ├── args-boxed-empty.exit │ ├── args-boxed-empty.json │ ├── args-boxed-empty.out │ ├── args-boxed-string.err │ ├── args-boxed-string.exit │ ├── args-boxed-string.json │ ├── args-boxed-string.out │ ├── args-int.err │ ├── args-int.exit │ ├── args-int.json │ ├── args-int.out │ ├── args-invalid.err │ ├── args-invalid.exit │ ├── args-invalid.json │ ├── args-invalid.out │ ├── args-member-array-bad.err │ ├── args-member-array-bad.exit │ ├── args-member-array-bad.json │ ├── args-member-array-bad.out │ ├── args-member-case.err │ ├── args-member-case.exit │ ├── args-member-case.json │ ├── args-member-case.out │ ├── args-member-unknown.err │ ├── args-member-unknown.exit │ ├── args-member-unknown.json │ ├── args-member-unknown.out │ ├── args-name-clash.err │ ├── args-name-clash.exit │ ├── args-name-clash.json │ ├── args-name-clash.out │ ├── args-union.err │ ├── args-union.exit │ ├── args-union.json │ ├── args-union.out │ ├── args-unknown.err │ ├── args-unknown.exit │ ├── args-unknown.json │ ├── args-unknown.out │ ├── bad-base.err │ ├── bad-base.exit │ ├── bad-base.json │ ├── bad-base.out │ ├── bad-data.err │ ├── bad-data.exit │ ├── bad-data.json │ ├── bad-data.out │ ├── bad-ident.err │ ├── bad-ident.exit │ ├── bad-ident.json │ ├── bad-ident.out │ ├── bad-if-empty-list.err │ ├── bad-if-empty-list.exit │ ├── bad-if-empty-list.json │ ├── bad-if-empty-list.out │ ├── bad-if-empty.err │ ├── bad-if-empty.exit │ ├── bad-if-empty.json │ ├── bad-if-empty.out │ ├── bad-if-list.err │ ├── bad-if-list.exit │ ├── bad-if-list.json │ ├── bad-if-list.out │ ├── bad-if.err │ ├── bad-if.exit │ ├── bad-if.json │ ├── bad-if.out │ ├── bad-type-bool.err │ ├── bad-type-bool.exit │ ├── bad-type-bool.json │ ├── bad-type-bool.out │ ├── bad-type-dict.err │ ├── bad-type-dict.exit │ ├── bad-type-dict.json │ ├── bad-type-dict.out │ ├── bad-type-int.err │ ├── bad-type-int.exit │ ├── bad-type-int.json │ ├── bad-type-int.out │ ├── base-cycle-direct.err │ ├── base-cycle-direct.exit │ ├── base-cycle-direct.json │ ├── base-cycle-direct.out │ ├── base-cycle-indirect.err │ ├── base-cycle-indirect.exit │ ├── base-cycle-indirect.json │ ├── base-cycle-indirect.out │ ├── command-int.err │ ├── command-int.exit │ ├── command-int.json │ ├── command-int.out │ ├── comments.err │ ├── comments.exit │ ├── comments.json │ ├── comments.out │ ├── doc-bad-alternate-member.err │ ├── doc-bad-alternate-member.exit │ ├── doc-bad-alternate-member.json │ ├── doc-bad-alternate-member.out │ ├── doc-bad-command-arg.err │ ├── doc-bad-command-arg.exit │ ├── doc-bad-command-arg.json │ ├── doc-bad-command-arg.out │ ├── doc-bad-section.err │ ├── doc-bad-section.exit │ ├── doc-bad-section.json │ ├── doc-bad-section.out │ ├── doc-bad-symbol.err │ ├── doc-bad-symbol.exit │ ├── doc-bad-symbol.json │ ├── doc-bad-symbol.out │ ├── doc-bad-union-member.err │ ├── doc-bad-union-member.exit │ ├── doc-bad-union-member.json │ ├── doc-bad-union-member.out │ ├── doc-before-include.err │ ├── doc-before-include.exit │ ├── doc-before-include.json │ ├── doc-before-include.out │ ├── doc-before-pragma.err │ ├── doc-before-pragma.exit │ ├── doc-before-pragma.json │ ├── doc-before-pragma.out │ ├── doc-duplicated-arg.err │ ├── doc-duplicated-arg.exit │ ├── doc-duplicated-arg.json │ ├── doc-duplicated-arg.out │ ├── doc-duplicated-return.err │ ├── doc-duplicated-return.exit │ ├── doc-duplicated-return.json │ ├── doc-duplicated-return.out │ ├── doc-duplicated-since.err │ ├── doc-duplicated-since.exit │ ├── doc-duplicated-since.json │ ├── doc-duplicated-since.out │ ├── doc-empty-arg.err │ ├── doc-empty-arg.exit │ ├── doc-empty-arg.json │ ├── doc-empty-arg.out │ ├── doc-empty-section.err │ ├── doc-empty-section.exit │ ├── doc-empty-section.json │ ├── doc-empty-section.out │ ├── doc-empty-symbol.err │ ├── doc-empty-symbol.exit │ ├── doc-empty-symbol.json │ ├── doc-empty-symbol.out │ ├── doc-good.err │ ├── doc-good.exit │ ├── doc-good.json │ ├── doc-good.out │ ├── doc-good.texi │ ├── doc-interleaved-section.err │ ├── doc-interleaved-section.exit │ ├── doc-interleaved-section.json │ ├── doc-interleaved-section.out │ ├── doc-invalid-end.err │ ├── doc-invalid-end.exit │ ├── doc-invalid-end.json │ ├── doc-invalid-end.out │ ├── doc-invalid-end2.err │ ├── doc-invalid-end2.exit │ ├── doc-invalid-end2.json │ ├── doc-invalid-end2.out │ ├── doc-invalid-return.err │ ├── doc-invalid-return.exit │ ├── doc-invalid-return.json │ ├── doc-invalid-return.out │ ├── doc-invalid-section.err │ ├── doc-invalid-section.exit │ ├── doc-invalid-section.json │ ├── doc-invalid-section.out │ ├── doc-invalid-start.err │ ├── doc-invalid-start.exit │ ├── doc-invalid-start.json │ ├── doc-invalid-start.out │ ├── doc-missing-colon.err │ ├── doc-missing-colon.exit │ ├── doc-missing-colon.json │ ├── doc-missing-colon.out │ ├── doc-missing-expr.err │ ├── doc-missing-expr.exit │ ├── doc-missing-expr.json │ ├── doc-missing-expr.out │ ├── doc-missing-space.err │ ├── doc-missing-space.exit │ ├── doc-missing-space.json │ ├── doc-missing-space.out │ ├── doc-missing.err │ ├── doc-missing.exit │ ├── doc-missing.json │ ├── doc-missing.out │ ├── doc-no-symbol.err │ ├── doc-no-symbol.exit │ ├── doc-no-symbol.json │ ├── doc-no-symbol.out │ ├── double-data.err │ ├── double-data.exit │ ├── double-data.json │ ├── double-data.out │ ├── double-type.err │ ├── double-type.exit │ ├── double-type.json │ ├── double-type.out │ ├── duplicate-key.err │ ├── duplicate-key.exit │ ├── duplicate-key.json │ ├── duplicate-key.out │ ├── empty.err │ ├── empty.exit │ ├── empty.json │ ├── empty.out │ ├── enum-bad-member.err │ ├── enum-bad-member.exit │ ├── enum-bad-member.json │ ├── enum-bad-member.out │ ├── enum-bad-name.err │ ├── enum-bad-name.exit │ ├── enum-bad-name.json │ ├── enum-bad-name.out │ ├── enum-bad-prefix.err │ ├── enum-bad-prefix.exit │ ├── enum-bad-prefix.json │ ├── enum-bad-prefix.out │ ├── enum-clash-member.err │ ├── enum-clash-member.exit │ ├── enum-clash-member.json │ ├── enum-clash-member.out │ ├── enum-dict-member-unknown.err │ ├── enum-dict-member-unknown.exit │ ├── enum-dict-member-unknown.json │ ├── enum-dict-member-unknown.out │ ├── enum-if-invalid.err │ ├── enum-if-invalid.exit │ ├── enum-if-invalid.json │ ├── enum-if-invalid.out │ ├── enum-int-member.err │ ├── enum-int-member.exit │ ├── enum-int-member.json │ ├── enum-int-member.out │ ├── enum-member-case.err │ ├── enum-member-case.exit │ ├── enum-member-case.json │ ├── enum-member-case.out │ ├── enum-missing-data.err │ ├── enum-missing-data.exit │ ├── enum-missing-data.json │ ├── enum-missing-data.out │ ├── enum-wrong-data.err │ ├── enum-wrong-data.exit │ ├── enum-wrong-data.json │ ├── enum-wrong-data.out │ ├── escape-outside-string.err │ ├── escape-outside-string.exit │ ├── escape-outside-string.json │ ├── escape-outside-string.out │ ├── escape-too-big.err │ ├── escape-too-big.exit │ ├── escape-too-big.json │ ├── escape-too-big.out │ ├── escape-too-short.err │ ├── escape-too-short.exit │ ├── escape-too-short.json │ ├── escape-too-short.out │ ├── event-boxed-empty.err │ ├── event-boxed-empty.exit │ ├── event-boxed-empty.json │ ├── event-boxed-empty.out │ ├── event-case.err │ ├── event-case.exit │ ├── event-case.json │ ├── event-case.out │ ├── event-member-invalid-dict.err │ ├── event-member-invalid-dict.exit │ ├── event-member-invalid-dict.json │ ├── event-member-invalid-dict.out │ ├── event-nest-struct.err │ ├── event-nest-struct.exit │ ├── event-nest-struct.json │ ├── event-nest-struct.out │ ├── flat-union-array-branch.err │ ├── flat-union-array-branch.exit │ ├── flat-union-array-branch.json │ ├── flat-union-array-branch.out │ ├── flat-union-bad-base.err │ ├── flat-union-bad-base.exit │ ├── flat-union-bad-base.json │ ├── flat-union-bad-base.out │ ├── flat-union-bad-discriminator.err │ ├── flat-union-bad-discriminator.exit │ ├── flat-union-bad-discriminator.json │ ├── flat-union-bad-discriminator.out │ ├── flat-union-base-any.err │ ├── flat-union-base-any.exit │ ├── flat-union-base-any.json │ ├── flat-union-base-any.out │ ├── flat-union-base-union.err │ ├── flat-union-base-union.exit │ ├── flat-union-base-union.json │ ├── flat-union-base-union.out │ ├── flat-union-clash-member.err │ ├── flat-union-clash-member.exit │ ├── flat-union-clash-member.json │ ├── flat-union-clash-member.out │ ├── flat-union-empty.err │ ├── flat-union-empty.exit │ ├── flat-union-empty.json │ ├── flat-union-empty.out │ ├── flat-union-inline-invalid-dict.err │ ├── flat-union-inline-invalid-dict.exit │ ├── flat-union-inline-invalid-dict.json │ ├── flat-union-inline-invalid-dict.out │ ├── flat-union-inline.err │ ├── flat-union-inline.exit │ ├── flat-union-inline.json │ ├── flat-union-inline.out │ ├── flat-union-int-branch.err │ ├── flat-union-int-branch.exit │ ├── flat-union-int-branch.json │ ├── flat-union-int-branch.out │ ├── flat-union-invalid-branch-key.err │ ├── flat-union-invalid-branch-key.exit │ ├── flat-union-invalid-branch-key.json │ ├── flat-union-invalid-branch-key.out │ ├── flat-union-invalid-discriminator.err │ ├── flat-union-invalid-discriminator.exit │ ├── flat-union-invalid-discriminator.json │ ├── flat-union-invalid-discriminator.out │ ├── flat-union-invalid-if-discriminator.err │ ├── flat-union-invalid-if-discriminator.exit │ ├── flat-union-invalid-if-discriminator.json │ ├── flat-union-invalid-if-discriminator.out │ ├── flat-union-no-base.err │ ├── flat-union-no-base.exit │ ├── flat-union-no-base.json │ ├── flat-union-no-base.out │ ├── flat-union-optional-discriminator.err │ ├── flat-union-optional-discriminator.exit │ ├── flat-union-optional-discriminator.json │ ├── flat-union-optional-discriminator.out │ ├── flat-union-string-discriminator.err │ ├── flat-union-string-discriminator.exit │ ├── flat-union-string-discriminator.json │ ├── flat-union-string-discriminator.out │ ├── funny-char.err │ ├── funny-char.exit │ ├── funny-char.json │ ├── funny-char.out │ ├── ident-with-escape.err │ ├── ident-with-escape.exit │ ├── ident-with-escape.json │ ├── ident-with-escape.out │ ├── include-before-err.err │ ├── include-before-err.exit │ ├── include-before-err.json │ ├── include-before-err.out │ ├── include-cycle-b.json │ ├── include-cycle-c.json │ ├── include-cycle.err │ ├── include-cycle.exit │ ├── include-cycle.json │ ├── include-cycle.out │ ├── include-extra-junk.err │ ├── include-extra-junk.exit │ ├── include-extra-junk.json │ ├── include-extra-junk.out │ ├── include-format-err.err │ ├── include-format-err.exit │ ├── include-format-err.json │ ├── include-format-err.out │ ├── include-nested-err.err │ ├── include-nested-err.exit │ ├── include-nested-err.json │ ├── include-nested-err.out │ ├── include-no-file.err │ ├── include-no-file.exit │ ├── include-no-file.json │ ├── include-no-file.out │ ├── include-non-file.err │ ├── include-non-file.exit │ ├── include-non-file.json │ ├── include-non-file.out │ ├── include-relpath-sub.json │ ├── include-relpath.err │ ├── include-relpath.exit │ ├── include-relpath.json │ ├── include-relpath.out │ ├── include-repetition-sub.json │ ├── include-repetition.err │ ├── include-repetition.exit │ ├── include-repetition.json │ ├── include-repetition.out │ ├── include-self-cycle.err │ ├── include-self-cycle.exit │ ├── include-self-cycle.json │ ├── include-self-cycle.out │ ├── include-simple-sub.json │ ├── include-simple.err │ ├── include-simple.exit │ ├── include-simple.json │ ├── include-simple.out │ ├── include │ │ └── relpath.json │ ├── indented-expr.err │ ├── indented-expr.exit │ ├── indented-expr.json │ ├── indented-expr.out │ ├── leading-comma-list.err │ ├── leading-comma-list.exit │ ├── leading-comma-list.json │ ├── leading-comma-list.out │ ├── leading-comma-object.err │ ├── leading-comma-object.exit │ ├── leading-comma-object.json │ ├── leading-comma-object.out │ ├── missing-colon.err │ ├── missing-colon.exit │ ├── missing-colon.json │ ├── missing-colon.out │ ├── missing-comma-list.err │ ├── missing-comma-list.exit │ ├── missing-comma-list.json │ ├── missing-comma-list.out │ ├── missing-comma-object.err │ ├── missing-comma-object.exit │ ├── missing-comma-object.json │ ├── missing-comma-object.out │ ├── missing-type.err │ ├── missing-type.exit │ ├── missing-type.json │ ├── missing-type.out │ ├── nested-struct-data-invalid-dict.err │ ├── nested-struct-data-invalid-dict.exit │ ├── nested-struct-data-invalid-dict.json │ ├── nested-struct-data-invalid-dict.out │ ├── nested-struct-data.err │ ├── nested-struct-data.exit │ ├── nested-struct-data.json │ ├── nested-struct-data.out │ ├── non-objects.err │ ├── non-objects.exit │ ├── non-objects.json │ ├── non-objects.out │ ├── oob-test.err │ ├── oob-test.exit │ ├── oob-test.json │ ├── oob-test.out │ ├── pragma-doc-required-crap.err │ ├── pragma-doc-required-crap.exit │ ├── pragma-doc-required-crap.json │ ├── pragma-doc-required-crap.out │ ├── pragma-extra-junk.err │ ├── pragma-extra-junk.exit │ ├── pragma-extra-junk.json │ ├── pragma-extra-junk.out │ ├── pragma-name-case-whitelist-crap.err │ ├── pragma-name-case-whitelist-crap.exit │ ├── pragma-name-case-whitelist-crap.json │ ├── pragma-name-case-whitelist-crap.out │ ├── pragma-non-dict.err │ ├── pragma-non-dict.exit │ ├── pragma-non-dict.json │ ├── pragma-non-dict.out │ ├── pragma-returns-whitelist-crap.err │ ├── pragma-returns-whitelist-crap.exit │ ├── pragma-returns-whitelist-crap.json │ ├── pragma-returns-whitelist-crap.out │ ├── qapi-schema-test.err │ ├── qapi-schema-test.exit │ ├── qapi-schema-test.json │ ├── qapi-schema-test.out │ ├── quoted-structural-chars.err │ ├── quoted-structural-chars.exit │ ├── quoted-structural-chars.json │ ├── quoted-structural-chars.out │ ├── redefined-builtin.err │ ├── redefined-builtin.exit │ ├── redefined-builtin.json │ ├── redefined-builtin.out │ ├── redefined-command.err │ ├── redefined-command.exit │ ├── redefined-command.json │ ├── redefined-command.out │ ├── redefined-event.err │ ├── redefined-event.exit │ ├── redefined-event.json │ ├── redefined-event.out │ ├── redefined-type.err │ ├── redefined-type.exit │ ├── redefined-type.json │ ├── redefined-type.out │ ├── reserved-command-q.err │ ├── reserved-command-q.exit │ ├── reserved-command-q.json │ ├── reserved-command-q.out │ ├── reserved-enum-q.err │ ├── reserved-enum-q.exit │ ├── reserved-enum-q.json │ ├── reserved-enum-q.out │ ├── reserved-member-has.err │ ├── reserved-member-has.exit │ ├── reserved-member-has.json │ ├── reserved-member-has.out │ ├── reserved-member-q.err │ ├── reserved-member-q.exit │ ├── reserved-member-q.json │ ├── reserved-member-q.out │ ├── reserved-member-u.err │ ├── reserved-member-u.exit │ ├── reserved-member-u.json │ ├── reserved-member-u.out │ ├── reserved-member-underscore.err │ ├── reserved-member-underscore.exit │ ├── reserved-member-underscore.json │ ├── reserved-member-underscore.out │ ├── reserved-type-kind.err │ ├── reserved-type-kind.exit │ ├── reserved-type-kind.json │ ├── reserved-type-kind.out │ ├── reserved-type-list.err │ ├── reserved-type-list.exit │ ├── reserved-type-list.json │ ├── reserved-type-list.out │ ├── returns-alternate.err │ ├── returns-alternate.exit │ ├── returns-alternate.json │ ├── returns-alternate.out │ ├── returns-array-bad.err │ ├── returns-array-bad.exit │ ├── returns-array-bad.json │ ├── returns-array-bad.out │ ├── returns-dict.err │ ├── returns-dict.exit │ ├── returns-dict.json │ ├── returns-dict.out │ ├── returns-unknown.err │ ├── returns-unknown.exit │ ├── returns-unknown.json │ ├── returns-unknown.out │ ├── returns-whitelist.err │ ├── returns-whitelist.exit │ ├── returns-whitelist.json │ ├── returns-whitelist.out │ ├── struct-base-clash-deep.err │ ├── struct-base-clash-deep.exit │ ├── struct-base-clash-deep.json │ ├── struct-base-clash-deep.out │ ├── struct-base-clash.err │ ├── struct-base-clash.exit │ ├── struct-base-clash.json │ ├── struct-base-clash.out │ ├── struct-data-invalid.err │ ├── struct-data-invalid.exit │ ├── struct-data-invalid.json │ ├── struct-data-invalid.out │ ├── struct-member-invalid-dict.err │ ├── struct-member-invalid-dict.exit │ ├── struct-member-invalid-dict.json │ ├── struct-member-invalid-dict.out │ ├── struct-member-invalid.err │ ├── struct-member-invalid.exit │ ├── struct-member-invalid.json │ ├── struct-member-invalid.out │ ├── test-qapi.py │ ├── trailing-comma-list.err │ ├── trailing-comma-list.exit │ ├── trailing-comma-list.json │ ├── trailing-comma-list.out │ ├── trailing-comma-object.err │ ├── trailing-comma-object.exit │ ├── trailing-comma-object.json │ ├── trailing-comma-object.out │ ├── type-bypass-bad-gen.err │ ├── type-bypass-bad-gen.exit │ ├── type-bypass-bad-gen.json │ ├── type-bypass-bad-gen.out │ ├── unclosed-list.err │ ├── unclosed-list.exit │ ├── unclosed-list.json │ ├── unclosed-list.out │ ├── unclosed-object.err │ ├── unclosed-object.exit │ ├── unclosed-object.json │ ├── unclosed-object.out │ ├── unclosed-string.err │ ├── unclosed-string.exit │ ├── unclosed-string.json │ ├── unclosed-string.out │ ├── unicode-str.err │ ├── unicode-str.exit │ ├── unicode-str.json │ ├── unicode-str.out │ ├── union-base-empty.err │ ├── union-base-empty.exit │ ├── union-base-empty.json │ ├── union-base-empty.out │ ├── union-base-no-discriminator.err │ ├── union-base-no-discriminator.exit │ ├── union-base-no-discriminator.json │ ├── union-base-no-discriminator.out │ ├── union-branch-case.err │ ├── union-branch-case.exit │ ├── union-branch-case.json │ ├── union-branch-case.out │ ├── union-branch-invalid-dict.err │ ├── union-branch-invalid-dict.exit │ ├── union-branch-invalid-dict.json │ ├── union-branch-invalid-dict.out │ ├── union-clash-branches.err │ ├── union-clash-branches.exit │ ├── union-clash-branches.json │ ├── union-clash-branches.out │ ├── union-empty.err │ ├── union-empty.exit │ ├── union-empty.json │ ├── union-empty.out │ ├── union-invalid-base.err │ ├── union-invalid-base.exit │ ├── union-invalid-base.json │ ├── union-invalid-base.out │ ├── union-optional-branch.err │ ├── union-optional-branch.exit │ ├── union-optional-branch.json │ ├── union-optional-branch.out │ ├── union-unknown.err │ ├── union-unknown.exit │ ├── union-unknown.json │ ├── union-unknown.out │ ├── unknown-escape.err │ ├── unknown-escape.exit │ ├── unknown-escape.json │ ├── unknown-escape.out │ ├── unknown-expr-key.err │ ├── unknown-expr-key.exit │ ├── unknown-expr-key.json │ └── unknown-expr-key.out ├── qemu-iotests-quick.sh ├── qemu-iotests │ ├── 101 │ ├── 102 │ ├── 103 │ ├── 104 │ ├── 105 │ ├── 106 │ ├── 107 │ ├── 108 │ ├── 109 │ ├── 110 │ ├── 111 │ ├── 112 │ ├── 113 │ ├── 114 │ ├── 115 │ ├── 116 │ ├── 117 │ ├── 118 │ ├── 119 │ ├── 120 │ ├── 121 │ ├── 122 │ ├── 123 │ ├── 124 │ ├── 125 │ ├── 126 │ ├── 127 │ ├── 128 │ ├── 129 │ ├── 130 │ ├── 131 │ ├── 132 │ ├── 133 │ ├── 134 │ ├── 135 │ ├── 136 │ ├── 137 │ ├── 138 │ ├── 139 │ ├── 140 │ ├── 141 │ ├── 142 │ ├── 143 │ ├── 144 │ ├── 145 │ ├── 146 │ ├── 147 │ ├── 148 │ ├── 149 │ ├── 150 │ ├── 151 │ ├── 152 │ ├── 153 │ ├── 154 │ ├── 155 │ ├── 156 │ ├── 157 │ ├── 158 │ ├── 159 │ ├── 160 │ ├── 161 │ ├── 162 │ ├── 163 │ ├── 165 │ ├── 169 │ ├── 170 │ ├── 171 │ ├── 172 │ ├── 173 │ ├── 174 │ ├── 175 │ ├── 176 │ ├── 177 │ ├── 178 │ ├── 179 │ ├── 181 │ ├── 182 │ ├── 183 │ ├── 184 │ ├── 185 │ ├── 186 │ ├── 187 │ ├── 188 │ ├── 189 │ ├── 190 │ ├── 191 │ ├── 192 │ ├── 194 │ ├── 195 │ ├── 196 │ ├── 197 │ ├── 198 │ ├── 199 │ ├── 200 │ ├── 201 │ ├── 202 │ ├── 203 │ ├── 204 │ ├── 205 │ ├── 206 │ ├── 207 │ ├── 208 │ ├── 209 │ ├── 210 │ ├── 211 │ ├── 212 │ ├── 213 │ ├── 214 │ ├── 215 │ ├── 216 │ ├── 217 │ ├── 218 │ ├── 219 │ ├── 220 │ ├── 221 │ ├── 222 │ ├── 223 │ ├── 225 │ ├── 226 │ ├── 227 │ ├── 229 │ ├── 231 │ ├── 232 │ ├── 233 │ ├── 234 │ ├── 235 │ ├── 236 │ ├── 237 │ ├── 238 │ ├── 239 │ ├── 240 │ ├── .gitignore │ ├── 001 │ ├── 001.out │ ├── 002 │ ├── 002.out │ ├── 003 │ ├── 003.out │ ├── 004 │ ├── 004.out │ ├── 005 │ ├── 005.out │ ├── 007 │ ├── 007.out │ ├── 008 │ ├── 008.out │ ├── 009 │ ├── 009.out │ ├── 010 │ ├── 010.out │ ├── 011 │ ├── 011.out │ ├── 012 │ ├── 012.out │ ├── 013 │ ├── 013.out │ ├── 014 │ ├── 014.out │ ├── 015 │ ├── 015.out │ ├── 017 │ ├── 017.out │ ├── 018 │ ├── 018.out │ ├── 019 │ ├── 019.out │ ├── 020 │ ├── 020.out │ ├── 021 │ ├── 021.out │ ├── 022 │ ├── 022.out │ ├── 023 │ ├── 023.out │ ├── 024 │ ├── 024.out │ ├── 025 │ ├── 025.out │ ├── 026 │ ├── 026.out │ ├── 026.out.nocache │ ├── 027 │ ├── 027.out │ ├── 028 │ ├── 028.out │ ├── 029 │ ├── 029.out │ ├── 030 │ ├── 030.out │ ├── 031 │ ├── 031.out │ ├── 032 │ ├── 032.out │ ├── 033 │ ├── 033.out │ ├── 034 │ ├── 034.out │ ├── 035 │ ├── 035.out │ ├── 036 │ ├── 036.out │ ├── 037 │ ├── 037.out │ ├── 038 │ ├── 038.out │ ├── 039 │ ├── 039.out │ ├── 040 │ ├── 040.out │ ├── 041 │ ├── 041.out │ ├── 042 │ ├── 042.out │ ├── 043 │ ├── 043.out │ ├── 044 │ ├── 044.out │ ├── 045 │ ├── 045.out │ ├── 046 │ ├── 046.out │ ├── 047 │ ├── 047.out │ ├── 048 │ ├── 048.out │ ├── 049 │ ├── 049.out │ ├── 050 │ ├── 050.out │ ├── 051 │ ├── 051.out │ ├── 051.pc.out │ ├── 052 │ ├── 052.out │ ├── 053 │ ├── 053.out │ ├── 054 │ ├── 054.out │ ├── 055 │ ├── 055.out │ ├── 056 │ ├── 056.out │ ├── 057 │ ├── 057.out │ ├── 058 │ ├── 058.out │ ├── 059 │ ├── 059.out │ ├── 060 │ ├── 060.out │ ├── 061 │ ├── 061.out │ ├── 062 │ ├── 062.out │ ├── 063 │ ├── 063.out │ ├── 064 │ ├── 064.out │ ├── 065 │ ├── 065.out │ ├── 066 │ ├── 066.out │ ├── 067 │ ├── 067.out │ ├── 068 │ ├── 068.out │ ├── 069 │ ├── 069.out │ ├── 070 │ ├── 070.out │ ├── 071 │ ├── 071.out │ ├── 072 │ ├── 072.out │ ├── 073 │ ├── 073.out │ ├── 074 │ ├── 074.out │ ├── 075 │ ├── 075.out │ ├── 076 │ ├── 076.out │ ├── 077 │ ├── 077.out │ ├── 078 │ ├── 078.out │ ├── 079 │ ├── 079.out │ ├── 080 │ ├── 080.out │ ├── 081 │ ├── 081.out │ ├── 082 │ ├── 082.out │ ├── 083 │ ├── 083.out │ ├── 084 │ ├── 084.out │ ├── 085 │ ├── 085.out │ ├── 086 │ ├── 086.out │ ├── 087 │ ├── 087.out │ ├── 088 │ ├── 088.out │ ├── 089 │ ├── 089.out │ ├── 090 │ ├── 090.out │ ├── 091 │ ├── 091.out │ ├── 092 │ ├── 092.out │ ├── 093 │ ├── 093.out │ ├── 094 │ ├── 094.out │ ├── 095 │ ├── 095.out │ ├── 096 │ ├── 096.out │ ├── 097 │ ├── 097.out │ ├── 098 │ ├── 098.out │ ├── 099 │ ├── 099.out │ ├── 101.out │ ├── 102.out │ ├── 103.out │ ├── 104.out │ ├── 105.out │ ├── 106.out │ ├── 107.out │ ├── 108.out │ ├── 109.out │ ├── 110.out │ ├── 111.out │ ├── 112.out │ ├── 113.out │ ├── 114.out │ ├── 115.out │ ├── 116.out │ ├── 117.out │ ├── 118.out │ ├── 119.out │ ├── 120.out │ ├── 121.out │ ├── 122.out │ ├── 123.out │ ├── 124.out │ ├── 125.out │ ├── 126.out │ ├── 127.out │ ├── 128.out │ ├── 129.out │ ├── 130.out │ ├── 131.out │ ├── 132.out │ ├── 133.out │ ├── 134.out │ ├── 135.out │ ├── 136.out │ ├── 137.out │ ├── 138.out │ ├── 139.out │ ├── 140.out │ ├── 141.out │ ├── 142.out │ ├── 143.out │ ├── 144.out │ ├── 145.out │ ├── 146.out │ ├── 147.out │ ├── 148.out │ ├── 149.out │ ├── 150.out │ ├── 151.out │ ├── 152.out │ ├── 153.out │ ├── 154.out │ ├── 155.out │ ├── 156.out │ ├── 157.out │ ├── 158.out │ ├── 159.out │ ├── 160.out │ ├── 161.out │ ├── 162.out │ ├── 163.out │ ├── 165.out │ ├── 169.out │ ├── 170.out │ ├── 171.out │ ├── 172.out │ ├── 173.out │ ├── 174.out │ ├── 175.out │ ├── 176.out │ ├── 177.out │ ├── 178.out.qcow2 │ ├── 178.out.raw │ ├── 179.out │ ├── 181.out │ ├── 182.out │ ├── 183.out │ ├── 184.out │ ├── 185.out │ ├── 186.out │ ├── 187.out │ ├── 188.out │ ├── 189.out │ ├── 190.out │ ├── 191.out │ ├── 192.out │ ├── 194.out │ ├── 195.out │ ├── 196.out │ ├── 197.out │ ├── 198.out │ ├── 199.out │ ├── 200.out │ ├── 201.out │ ├── 202.out │ ├── 203.out │ ├── 204.out │ ├── 205.out │ ├── 206.out │ ├── 207.out │ ├── 208.out │ ├── 209.out │ ├── 210.out │ ├── 211.out │ ├── 212.out │ ├── 213.out │ ├── 214.out │ ├── 215.out │ ├── 216.out │ ├── 217.out │ ├── 218.out │ ├── 219.out │ ├── 220.out │ ├── 221.out │ ├── 222.out │ ├── 223.out │ ├── 225.out │ ├── 226.out │ ├── 227.out │ ├── 229.out │ ├── 231.out │ ├── 232.out │ ├── 233.out │ ├── 234.out │ ├── 235.out │ ├── 236.out │ ├── 237.out │ ├── 238.out │ ├── 239.out │ ├── 240.out │ ├── COPYING │ ├── Makefile │ ├── README │ ├── check │ ├── common.config │ ├── common.filter │ ├── common.nbd │ ├── common.pattern │ ├── common.qemu │ ├── common.rc │ ├── common.tls │ ├── group │ ├── iotests.py │ ├── nbd-fault-injector.py │ ├── qcow2.py │ ├── qed.py │ ├── sample_images │ │ ├── README │ │ ├── afl5.img.bz2 │ │ ├── afl9.vmdk.bz2 │ │ ├── d2v-zerofilled.vhd.bz2 │ │ ├── empty.bochs.bz2 │ │ ├── grub_mbr.raw.bz2 │ │ ├── hyperv2012r2-dynamic.vhd.bz2 │ │ ├── iotest-dirtylog-10G-4M.vhdx.bz2 │ │ ├── iotest-dynamic-1G.vhdx.bz2 │ │ ├── iotest-version3.vmdk.bz2 │ │ ├── parallels-v1.bz2 │ │ ├── parallels-v2.bz2 │ │ ├── simple-dmg.dmg.bz2 │ │ ├── simple-pattern.cloop.bz2 │ │ ├── test-disk2vhd.vhdx.bz2 │ │ └── virtualpc-dynamic.vhd.bz2 │ └── socket_scm_helper.c ├── qht-bench.c ├── qmp-cmd-test.c ├── qmp-test.c ├── qom-test.c ├── rcutorture.c ├── requirements.txt ├── rocker │ ├── README │ ├── all │ ├── bridge │ ├── bridge-stp │ ├── bridge-vlan │ ├── bridge-vlan-stp │ ├── port │ └── tut.dot ├── rtas-test.c ├── rtc-test.c ├── rtl8139-test.c ├── sdhci-test.c ├── socket-helpers.c ├── socket-helpers.h ├── spapr-phb-test.c ├── tcg │ ├── Makefile │ ├── Makefile.include │ ├── Makefile.probe │ ├── README │ ├── aarch64 │ │ ├── Makefile.include │ │ ├── Makefile.target │ │ ├── fcvt.ref │ │ └── pauth-1.c │ ├── alpha │ │ ├── Makefile.include │ │ ├── Makefile.target │ │ ├── hello-alpha.c │ │ ├── test-cond.c │ │ └── test-ovf.c │ ├── arm │ │ ├── Makefile.include │ │ ├── Makefile.target │ │ ├── README │ │ ├── fcvt.c │ │ ├── fcvt.ref │ │ ├── hello-arm.c │ │ └── test-arm-iwmmxt.S │ ├── cris │ │ ├── .gdbinit │ │ ├── Makefile │ │ ├── README │ │ ├── check_abs.c │ │ ├── check_addc.c │ │ ├── check_addcm.c │ │ ├── check_addcv17.s │ │ ├── check_addi.s │ │ ├── check_addiv32.s │ │ ├── check_addm.s │ │ ├── check_addo.c │ │ ├── check_addoq.c │ │ ├── check_addq.s │ │ ├── check_addr.s │ │ ├── check_addxc.s │ │ ├── check_addxm.s │ │ ├── check_addxr.s │ │ ├── check_andc.s │ │ ├── check_andm.s │ │ ├── check_andq.s │ │ ├── check_andr.s │ │ ├── check_asr.s │ │ ├── check_ba.s │ │ ├── check_bas.s │ │ ├── check_bcc.s │ │ ├── check_bound.c │ │ ├── check_boundc.s │ │ ├── check_boundr.s │ │ ├── check_btst.s │ │ ├── check_clearfv32.s │ │ ├── check_clrjmp1.s │ │ ├── check_cmp-2.s │ │ ├── check_cmpc.s │ │ ├── check_cmpm.s │ │ ├── check_cmpq.s │ │ ├── check_cmpr.s │ │ ├── check_cmpxc.s │ │ ├── check_cmpxm.s │ │ ├── check_dstep.s │ │ ├── check_ftag.c │ │ ├── check_gcctorture_pr28634-1.c │ │ ├── check_gcctorture_pr28634.c │ │ ├── check_glibc_kernelversion.c │ │ ├── check_hello.c │ │ ├── check_int64.c │ │ ├── check_jsr.s │ │ ├── check_lapc.s │ │ ├── check_lsl.s │ │ ├── check_lsr.s │ │ ├── check_lz.c │ │ ├── check_mapbrk.c │ │ ├── check_mcp.s │ │ ├── check_mmap1.c │ │ ├── check_mmap2.c │ │ ├── check_mmap3.c │ │ ├── check_movdelsr1.s │ │ ├── check_movecr.s │ │ ├── check_movei.s │ │ ├── check_movemr.s │ │ ├── check_movemrv32.s │ │ ├── check_moveq.c │ │ ├── check_mover.s │ │ ├── check_moverm.s │ │ ├── check_movmp.s │ │ ├── check_movpmv32.s │ │ ├── check_movpr.s │ │ ├── check_movprv32.s │ │ ├── check_movscr.s │ │ ├── check_movsm.s │ │ ├── check_movsr.s │ │ ├── check_movucr.s │ │ ├── check_movum.s │ │ ├── check_movur.s │ │ ├── check_mulv32.s │ │ ├── check_mulx.s │ │ ├── check_neg.s │ │ ├── check_not.s │ │ ├── check_openpf1.c │ │ ├── check_openpf2.c │ │ ├── check_openpf3.c │ │ ├── check_openpf5.c │ │ ├── check_orc.s │ │ ├── check_orm.s │ │ ├── check_orq.s │ │ ├── check_orr.s │ │ ├── check_ret.s │ │ ├── check_scc.s │ │ ├── check_settls1.c │ │ ├── check_sigalrm.c │ │ ├── check_stat1.c │ │ ├── check_stat2.c │ │ ├── check_stat3.c │ │ ├── check_stat4.c │ │ ├── check_subc.s │ │ ├── check_subm.s │ │ ├── check_subq.s │ │ ├── check_subr.s │ │ ├── check_swap.c │ │ ├── check_time2.c │ │ ├── check_xarith.s │ │ ├── crisutils.h │ │ ├── crt.s │ │ ├── sys.c │ │ ├── sys.h │ │ └── testutils.inc │ ├── hppa │ │ ├── Makefile.include │ │ └── Makefile.target │ ├── i386 │ │ ├── Makefile.include │ │ ├── Makefile.target │ │ ├── README │ │ ├── hello-i386.c │ │ ├── test-i386-code16.S │ │ ├── test-i386-fprem.c │ │ ├── test-i386-muldiv.h │ │ ├── test-i386-shift.h │ │ ├── test-i386-ssse3.c │ │ ├── test-i386-vm86.S │ │ ├── test-i386.c │ │ └── test-i386.h │ ├── lm32 │ │ ├── Makefile │ │ ├── crt.S │ │ ├── helper.S │ │ ├── linker.ld │ │ ├── macros.inc │ │ ├── test_add.S │ │ ├── test_addi.S │ │ ├── test_and.S │ │ ├── test_andhi.S │ │ ├── test_andi.S │ │ ├── test_b.S │ │ ├── test_be.S │ │ ├── test_bg.S │ │ ├── test_bge.S │ │ ├── test_bgeu.S │ │ ├── test_bgu.S │ │ ├── test_bi.S │ │ ├── test_bne.S │ │ ├── test_break.S │ │ ├── test_bret.S │ │ ├── test_call.S │ │ ├── test_calli.S │ │ ├── test_cmpe.S │ │ ├── test_cmpei.S │ │ ├── test_cmpg.S │ │ ├── test_cmpge.S │ │ ├── test_cmpgei.S │ │ ├── test_cmpgeu.S │ │ ├── test_cmpgeui.S │ │ ├── test_cmpgi.S │ │ ├── test_cmpgu.S │ │ ├── test_cmpgui.S │ │ ├── test_cmpne.S │ │ ├── test_cmpnei.S │ │ ├── test_divu.S │ │ ├── test_eret.S │ │ ├── test_lb.S │ │ ├── test_lbu.S │ │ ├── test_lh.S │ │ ├── test_lhu.S │ │ ├── test_lw.S │ │ ├── test_modu.S │ │ ├── test_mul.S │ │ ├── test_muli.S │ │ ├── test_nor.S │ │ ├── test_nori.S │ │ ├── test_or.S │ │ ├── test_orhi.S │ │ ├── test_ori.S │ │ ├── test_ret.S │ │ ├── test_sb.S │ │ ├── test_scall.S │ │ ├── test_sextb.S │ │ ├── test_sexth.S │ │ ├── test_sh.S │ │ ├── test_sl.S │ │ ├── test_sli.S │ │ ├── test_sr.S │ │ ├── test_sri.S │ │ ├── test_sru.S │ │ ├── test_srui.S │ │ ├── test_sub.S │ │ ├── test_sw.S │ │ ├── test_xnor.S │ │ ├── test_xnori.S │ │ ├── test_xor.S │ │ └── test_xori.S │ ├── m68k │ │ ├── Makefile.include │ │ └── Makefile.target │ ├── mips │ │ ├── Makefile.include │ │ ├── Makefile.target │ │ ├── README │ │ ├── hello-mips.c │ │ ├── mips64-dspr2 │ │ │ └── .directory │ │ └── user │ │ │ ├── ase │ │ │ └── dsp │ │ │ │ ├── Makefile │ │ │ │ ├── test_dsp_r1_absq_s_ph.c │ │ │ │ ├── test_dsp_r1_absq_s_w.c │ │ │ │ ├── test_dsp_r1_addq_ph.c │ │ │ │ ├── test_dsp_r1_addq_s_ph.c │ │ │ │ ├── test_dsp_r1_addq_s_w.c │ │ │ │ ├── test_dsp_r1_addsc.c │ │ │ │ ├── test_dsp_r1_addu_qb.c │ │ │ │ ├── test_dsp_r1_addu_s_qb.c │ │ │ │ ├── test_dsp_r1_addwc.c │ │ │ │ ├── test_dsp_r1_bitrev.c │ │ │ │ ├── test_dsp_r1_bposge32.c │ │ │ │ ├── test_dsp_r1_cmp_eq_ph.c │ │ │ │ ├── test_dsp_r1_cmp_le_ph.c │ │ │ │ ├── test_dsp_r1_cmp_lt_ph.c │ │ │ │ ├── test_dsp_r1_cmpgu_eq_qb.c │ │ │ │ ├── test_dsp_r1_cmpgu_le_qb.c │ │ │ │ ├── test_dsp_r1_cmpgu_lt_qb.c │ │ │ │ ├── test_dsp_r1_cmpu_eq_qb.c │ │ │ │ ├── test_dsp_r1_cmpu_le_qb.c │ │ │ │ ├── test_dsp_r1_cmpu_lt_qb.c │ │ │ │ ├── test_dsp_r1_dpaq_s_w_ph.c │ │ │ │ ├── test_dsp_r1_dpaq_sa_l_w.c │ │ │ │ ├── test_dsp_r1_dpau_h_qbl.c │ │ │ │ ├── test_dsp_r1_dpau_h_qbr.c │ │ │ │ ├── test_dsp_r1_dpsq_s_w_ph.c │ │ │ │ ├── test_dsp_r1_dpsq_sa_l_w.c │ │ │ │ ├── test_dsp_r1_dpsu_h_qbl.c │ │ │ │ ├── test_dsp_r1_dpsu_h_qbr.c │ │ │ │ ├── test_dsp_r1_extp.c │ │ │ │ ├── test_dsp_r1_extpdp.c │ │ │ │ ├── test_dsp_r1_extpdpv.c │ │ │ │ ├── test_dsp_r1_extpv.c │ │ │ │ ├── test_dsp_r1_extr_r_w.c │ │ │ │ ├── test_dsp_r1_extr_rs_w.c │ │ │ │ ├── test_dsp_r1_extr_s_h.c │ │ │ │ ├── test_dsp_r1_extr_w.c │ │ │ │ ├── test_dsp_r1_extrv_r_w.c │ │ │ │ ├── test_dsp_r1_extrv_rs_w.c │ │ │ │ ├── test_dsp_r1_extrv_s_h.c │ │ │ │ ├── test_dsp_r1_extrv_w.c │ │ │ │ ├── test_dsp_r1_insv.c │ │ │ │ ├── test_dsp_r1_lbux.c │ │ │ │ ├── test_dsp_r1_lhx.c │ │ │ │ ├── test_dsp_r1_lwx.c │ │ │ │ ├── test_dsp_r1_madd.c │ │ │ │ ├── test_dsp_r1_maddu.c │ │ │ │ ├── test_dsp_r1_main.c │ │ │ │ ├── test_dsp_r1_maq_s_w_phl.c │ │ │ │ ├── test_dsp_r1_maq_s_w_phr.c │ │ │ │ ├── test_dsp_r1_maq_sa_w_phl.c │ │ │ │ ├── test_dsp_r1_maq_sa_w_phr.c │ │ │ │ ├── test_dsp_r1_mfhi.c │ │ │ │ ├── test_dsp_r1_mflo.c │ │ │ │ ├── test_dsp_r1_modsub.c │ │ │ │ ├── test_dsp_r1_msub.c │ │ │ │ ├── test_dsp_r1_msubu.c │ │ │ │ ├── test_dsp_r1_mthi.c │ │ │ │ ├── test_dsp_r1_mthlip.c │ │ │ │ ├── test_dsp_r1_mtlo.c │ │ │ │ ├── test_dsp_r1_muleq_s_w_phl.c │ │ │ │ ├── test_dsp_r1_muleq_s_w_phr.c │ │ │ │ ├── test_dsp_r1_muleu_s_ph_qbl.c │ │ │ │ ├── test_dsp_r1_muleu_s_ph_qbr.c │ │ │ │ ├── test_dsp_r1_mulq_rs_ph.c │ │ │ │ ├── test_dsp_r1_mult.c │ │ │ │ ├── test_dsp_r1_multu.c │ │ │ │ ├── test_dsp_r1_packrl_ph.c │ │ │ │ ├── test_dsp_r1_pick_ph.c │ │ │ │ ├── test_dsp_r1_pick_qb.c │ │ │ │ ├── test_dsp_r1_preceq_w_phl.c │ │ │ │ ├── test_dsp_r1_preceq_w_phr.c │ │ │ │ ├── test_dsp_r1_precequ_ph_qbl.c │ │ │ │ ├── test_dsp_r1_precequ_ph_qbla.c │ │ │ │ ├── test_dsp_r1_precequ_ph_qbr.c │ │ │ │ ├── test_dsp_r1_precequ_ph_qbra.c │ │ │ │ ├── test_dsp_r1_preceu_ph_qbl.c │ │ │ │ ├── test_dsp_r1_preceu_ph_qbla.c │ │ │ │ ├── test_dsp_r1_preceu_ph_qbr.c │ │ │ │ ├── test_dsp_r1_preceu_ph_qbra.c │ │ │ │ ├── test_dsp_r1_precrq_ph_w.c │ │ │ │ ├── test_dsp_r1_precrq_qb_ph.c │ │ │ │ ├── test_dsp_r1_precrq_rs_ph_w.c │ │ │ │ ├── test_dsp_r1_precrqu_s_qb_ph.c │ │ │ │ ├── test_dsp_r1_raddu_w_qb.c │ │ │ │ ├── test_dsp_r1_rddsp.c │ │ │ │ ├── test_dsp_r1_repl_ph.c │ │ │ │ ├── test_dsp_r1_repl_qb.c │ │ │ │ ├── test_dsp_r1_replv_ph.c │ │ │ │ ├── test_dsp_r1_replv_qb.c │ │ │ │ ├── test_dsp_r1_shilo.c │ │ │ │ ├── test_dsp_r1_shilov.c │ │ │ │ ├── test_dsp_r1_shll_ph.c │ │ │ │ ├── test_dsp_r1_shll_qb.c │ │ │ │ ├── test_dsp_r1_shll_s_ph.c │ │ │ │ ├── test_dsp_r1_shll_s_w.c │ │ │ │ ├── test_dsp_r1_shllv_ph.c │ │ │ │ ├── test_dsp_r1_shllv_qb.c │ │ │ │ ├── test_dsp_r1_shllv_s_ph.c │ │ │ │ ├── test_dsp_r1_shllv_s_w.c │ │ │ │ ├── test_dsp_r1_shra_ph.c │ │ │ │ ├── test_dsp_r1_shra_r_ph.c │ │ │ │ ├── test_dsp_r1_shra_r_w.c │ │ │ │ ├── test_dsp_r1_shrav_ph.c │ │ │ │ ├── test_dsp_r1_shrav_r_ph.c │ │ │ │ ├── test_dsp_r1_shrav_r_w.c │ │ │ │ ├── test_dsp_r1_shrl_qb.c │ │ │ │ ├── test_dsp_r1_shrlv_qb.c │ │ │ │ ├── test_dsp_r1_subq_ph.c │ │ │ │ ├── test_dsp_r1_subq_s_ph.c │ │ │ │ ├── test_dsp_r1_subq_s_w.c │ │ │ │ ├── test_dsp_r1_subu_qb.c │ │ │ │ ├── test_dsp_r1_subu_s_qb.c │ │ │ │ ├── test_dsp_r1_wrdsp.c │ │ │ │ ├── test_dsp_r2_absq_s_qb.c │ │ │ │ ├── test_dsp_r2_addqh_ph.c │ │ │ │ ├── test_dsp_r2_addqh_r_ph.c │ │ │ │ ├── test_dsp_r2_addqh_r_w.c │ │ │ │ ├── test_dsp_r2_addqh_w.c │ │ │ │ ├── test_dsp_r2_addu_ph.c │ │ │ │ ├── test_dsp_r2_addu_s_ph.c │ │ │ │ ├── test_dsp_r2_adduh_qb.c │ │ │ │ ├── test_dsp_r2_adduh_r_qb.c │ │ │ │ ├── test_dsp_r2_append.c │ │ │ │ ├── test_dsp_r2_balign.c │ │ │ │ ├── test_dsp_r2_cmpgdu_eq_qb.c │ │ │ │ ├── test_dsp_r2_cmpgdu_le_qb.c │ │ │ │ ├── test_dsp_r2_cmpgdu_lt_qb.c │ │ │ │ ├── test_dsp_r2_dpa_w_ph.c │ │ │ │ ├── test_dsp_r2_dpaqx_s_w_ph.c │ │ │ │ ├── test_dsp_r2_dpaqx_sa_w_ph.c │ │ │ │ ├── test_dsp_r2_dpax_w_ph.c │ │ │ │ ├── test_dsp_r2_dps_w_ph.c │ │ │ │ ├── test_dsp_r2_dpsqx_s_w_ph.c │ │ │ │ ├── test_dsp_r2_dpsqx_sa_w_ph.c │ │ │ │ ├── test_dsp_r2_dpsx_w_ph.c │ │ │ │ ├── test_dsp_r2_mul_ph.c │ │ │ │ ├── test_dsp_r2_mul_s_ph.c │ │ │ │ ├── test_dsp_r2_mulq_rs_w.c │ │ │ │ ├── test_dsp_r2_mulq_s_ph.c │ │ │ │ ├── test_dsp_r2_mulq_s_w.c │ │ │ │ ├── test_dsp_r2_mulsa_w_ph.c │ │ │ │ ├── test_dsp_r2_mulsaq_s_w_ph.c │ │ │ │ ├── test_dsp_r2_precr_qb_ph.c │ │ │ │ ├── test_dsp_r2_precr_sra_ph_w.c │ │ │ │ ├── test_dsp_r2_precr_sra_r_ph_w.c │ │ │ │ ├── test_dsp_r2_prepend.c │ │ │ │ ├── test_dsp_r2_shra_qb.c │ │ │ │ ├── test_dsp_r2_shra_r_qb.c │ │ │ │ ├── test_dsp_r2_shrav_qb.c │ │ │ │ ├── test_dsp_r2_shrav_r_qb.c │ │ │ │ ├── test_dsp_r2_shrl_ph.c │ │ │ │ ├── test_dsp_r2_shrlv_ph.c │ │ │ │ ├── test_dsp_r2_subqh_ph.c │ │ │ │ ├── test_dsp_r2_subqh_r_ph.c │ │ │ │ ├── test_dsp_r2_subqh_r_w.c │ │ │ │ ├── test_dsp_r2_subqh_w.c │ │ │ │ ├── test_dsp_r2_subu_ph.c │ │ │ │ ├── test_dsp_r2_subu_s_ph.c │ │ │ │ ├── test_dsp_r2_subuh_qb.c │ │ │ │ └── test_dsp_r2_subuh_r_qb.c │ │ │ └── isa │ │ │ └── r5900 │ │ │ ├── Makefile │ │ │ ├── test_r5900_div1.c │ │ │ ├── test_r5900_divu1.c │ │ │ ├── test_r5900_madd.c │ │ │ ├── test_r5900_maddu.c │ │ │ ├── test_r5900_mflohi1.c │ │ │ ├── test_r5900_mtlohi1.c │ │ │ ├── test_r5900_mult.c │ │ │ └── test_r5900_multu.c │ ├── multiarch │ │ ├── Makefile.target │ │ ├── README │ │ ├── linux-test.c │ │ ├── sha1.c │ │ ├── test-mmap.c │ │ └── testthread.c │ ├── openrisc │ │ ├── Makefile │ │ ├── test_add.c │ │ ├── test_addc.c │ │ ├── test_addi.c │ │ ├── test_addic.c │ │ ├── test_and_or.c │ │ ├── test_bf.c │ │ ├── test_bnf.c │ │ ├── test_div.c │ │ ├── test_divu.c │ │ ├── test_extx.c │ │ ├── test_fx.c │ │ ├── test_j.c │ │ ├── test_jal.c │ │ ├── test_lf_add.c │ │ ├── test_lf_div.c │ │ ├── test_lf_eqs.c │ │ ├── test_lf_ges.c │ │ ├── test_lf_gts.c │ │ ├── test_lf_les.c │ │ ├── test_lf_lts.c │ │ ├── test_lf_mul.c │ │ ├── test_lf_nes.c │ │ ├── test_lf_rem.c │ │ ├── test_lf_sub.c │ │ ├── test_logic.c │ │ ├── test_lx.c │ │ ├── test_movhi.c │ │ ├── test_mul.c │ │ ├── test_muli.c │ │ ├── test_mulu.c │ │ ├── test_sfeq.c │ │ ├── test_sfeqi.c │ │ ├── test_sfges.c │ │ ├── test_sfgesi.c │ │ ├── test_sfgeu.c │ │ ├── test_sfgeui.c │ │ ├── test_sfgts.c │ │ ├── test_sfgtsi.c │ │ ├── test_sfgtu.c │ │ ├── test_sfgtui.c │ │ ├── test_sfles.c │ │ ├── test_sflesi.c │ │ ├── test_sfleu.c │ │ ├── test_sfleui.c │ │ ├── test_sflts.c │ │ ├── test_sfltsi.c │ │ ├── test_sfltu.c │ │ ├── test_sfltui.c │ │ ├── test_sfne.c │ │ ├── test_sfnei.c │ │ └── test_sub.c │ ├── ppc │ │ ├── Makefile.include │ │ └── Makefile.target │ ├── riscv │ │ └── Makefile.include │ ├── s390x │ │ ├── Makefile.include │ │ ├── Makefile.target │ │ ├── csst.c │ │ ├── exrl-trt.c │ │ ├── exrl-trtr.c │ │ ├── hello-s390x.c │ │ ├── ipm.c │ │ └── pack.c │ ├── sh4 │ │ ├── Makefile.include │ │ └── Makefile.target │ ├── sparc64 │ │ ├── Makefile.include │ │ └── Makefile.target │ ├── x86_64 │ │ └── Makefile.target │ └── xtensa │ │ ├── Makefile │ │ ├── crt.S │ │ ├── linker.ld.S │ │ ├── macros.inc │ │ ├── test_b.S │ │ ├── test_bi.S │ │ ├── test_boolean.S │ │ ├── test_break.S │ │ ├── test_bz.S │ │ ├── test_cache.S │ │ ├── test_clamps.S │ │ ├── test_extui.S │ │ ├── test_fail.S │ │ ├── test_interrupt.S │ │ ├── test_loop.S │ │ ├── test_mac16.S │ │ ├── test_max.S │ │ ├── test_min.S │ │ ├── test_mmu.S │ │ ├── test_mul16.S │ │ ├── test_mul32.S │ │ ├── test_nsa.S │ │ ├── test_phys_mem.S │ │ ├── test_pipeline.S │ │ ├── test_quo.S │ │ ├── test_rem.S │ │ ├── test_rst0.S │ │ ├── test_s32c1i.S │ │ ├── test_sar.S │ │ ├── test_sext.S │ │ ├── test_shift.S │ │ ├── test_sr.S │ │ ├── test_timer.S │ │ ├── test_windowed.S │ │ └── vectors.S ├── tco-test.c ├── test-aio-multithread.c ├── test-aio.c ├── test-arm-mptimer.c ├── test-base64.c ├── test-bdrv-drain.c ├── test-bitcnt.c ├── test-bitops.c ├── test-block-backend.c ├── test-block-iothread.c ├── test-blockjob-txn.c ├── test-blockjob.c ├── test-bufferiszero.c ├── test-char.c ├── test-clone-visitor.c ├── test-coroutine.c ├── test-crypto-afsplit.c ├── test-crypto-block.c ├── test-crypto-cipher.c ├── test-crypto-hash.c ├── test-crypto-hmac.c ├── test-crypto-ivgen.c ├── test-crypto-pbkdf.c ├── test-crypto-secret.c ├── test-crypto-tlscredsx509.c ├── test-crypto-tlssession.c ├── test-crypto-xts.c ├── test-cutils.c ├── test-filter-mirror.c ├── test-filter-redirector.c ├── test-hbitmap.c ├── test-hmp.c ├── test-image-locking.c ├── test-int128.c ├── test-io-channel-buffer.c ├── test-io-channel-command.c ├── test-io-channel-file.c ├── test-io-channel-socket.c ├── test-io-channel-tls.c ├── test-io-task.c ├── test-iov.c ├── test-keyval.c ├── test-logging.c ├── test-mul64.c ├── test-netfilter.c ├── test-opts-visitor.c ├── test-qapi-util.c ├── test-qdev-global-props.c ├── test-qdist.c ├── test-qemu-opts.c ├── test-qga.c ├── test-qht-par.c ├── test-qht.c ├── test-qmp-cmds.c ├── test-qmp-event.c ├── test-qobject-input-visitor.c ├── test-qobject-output-visitor.c ├── test-rcu-list.c ├── test-rcu-simpleq.c ├── test-rcu-tailq.c ├── test-replication.c ├── test-shift128.c ├── test-string-input-visitor.c ├── test-string-output-visitor.c ├── test-thread-pool.c ├── test-throttle.c ├── test-timed-average.c ├── test-util-sockets.c ├── test-uuid.c ├── test-visitor-serialization.c ├── test-vmstate.c ├── test-write-threshold.c ├── test-x86-cpuid-compat.c ├── test-x86-cpuid.c ├── test-xbzrle.c ├── tmp105-test.c ├── tpci200-test.c ├── tpm-crb-swtpm-test.c ├── tpm-crb-test.c ├── tpm-emu.c ├── tpm-emu.h ├── tpm-tests.c ├── tpm-tests.h ├── tpm-tis-swtpm-test.c ├── tpm-tis-test.c ├── tpm-util.c ├── tpm-util.h ├── usb-hcd-ehci-test.c ├── usb-hcd-ohci-test.c ├── usb-hcd-uhci-test.c ├── usb-hcd-xhci-test.c ├── vhost-user-bridge.c ├── vhost-user-test.c ├── virtio-9p-test.c ├── virtio-balloon-test.c ├── virtio-blk-test.c ├── virtio-ccw-test.c ├── virtio-console-test.c ├── virtio-net-test.c ├── virtio-rng-test.c ├── virtio-scsi-test.c ├── virtio-serial-test.c ├── vm │ ├── Makefile.include │ ├── README │ ├── basevm.py │ ├── centos │ ├── freebsd │ ├── netbsd │ ├── openbsd │ └── ubuntu.i386 ├── vmgenid-test.c ├── vmstate-static-checker-data │ ├── dump1.json │ └── dump2.json ├── vmxnet3-test.c └── wdt_ib700-test.c ├── thunk.c ├── tpm.c ├── trace-events ├── trace ├── Makefile.objs ├── control-internal.h ├── control-target.c ├── control.c ├── control.h ├── event-internal.h ├── ftrace.c ├── ftrace.h ├── mem-internal.h ├── mem.h ├── qmp.c ├── simple.c └── simple.h ├── ui ├── Makefile.objs ├── cocoa.m ├── console-gl.c ├── console.c ├── curses.c ├── curses_keys.h ├── cursor.c ├── cursor_hidden.xpm ├── cursor_left_ptr.xpm ├── egl-context.c ├── egl-headless.c ├── egl-helpers.c ├── gtk-egl.c ├── gtk-gl-area.c ├── gtk.c ├── icons │ ├── Makefile │ ├── qemu.svg │ ├── qemu_128x128.png │ ├── qemu_16x16.png │ ├── qemu_24x24.png │ ├── qemu_256x256.png │ ├── qemu_32x32.bmp │ ├── qemu_32x32.png │ ├── qemu_48x48.png │ ├── qemu_512x512.png │ └── qemu_64x64.png ├── input-keymap.c ├── input-legacy.c ├── input-linux.c ├── input.c ├── kbd-state.c ├── keymaps.c ├── keymaps.h ├── qemu-pixman.c ├── qemu-x509.h ├── qemu.desktop ├── sdl2-2d.c ├── sdl2-gl.c ├── sdl2-input.c ├── sdl2.c ├── shader.c ├── shader │ ├── texture-blit-flip.vert │ ├── texture-blit.frag │ └── texture-blit.vert ├── spice-core.c ├── spice-display.c ├── spice-input.c ├── trace-events ├── vgafont.h ├── vnc-auth-sasl.c ├── vnc-auth-sasl.h ├── vnc-auth-vencrypt.c ├── vnc-auth-vencrypt.h ├── vnc-enc-hextile-template.h ├── vnc-enc-hextile.c ├── vnc-enc-tight.c ├── vnc-enc-tight.h ├── vnc-enc-zlib.c ├── vnc-enc-zrle.c ├── vnc-enc-zrle.h ├── vnc-enc-zrle.inc.c ├── vnc-enc-zywrle-template.c ├── vnc-enc-zywrle.h ├── vnc-jobs.c ├── vnc-jobs.h ├── vnc-palette.c ├── vnc-palette.h ├── vnc-stubs.c ├── vnc-ws.c ├── vnc-ws.h ├── vnc.c ├── vnc.h ├── vnc_keysym.h ├── x_keymap.c └── x_keymap.h ├── util ├── Makefile.objs ├── acl.c ├── aio-posix.c ├── aio-wait.c ├── aio-win32.c ├── aiocb.c ├── async.c ├── atomic64.c ├── base64.c ├── bitmap.c ├── bitops.c ├── buffer.c ├── bufferiszero.c ├── cacheinfo.c ├── compatfd.c ├── coroutine-sigaltstack.c ├── coroutine-ucontext.c ├── coroutine-win32.c ├── crc32c.c ├── cutils.c ├── drm.c ├── envlist.c ├── error.c ├── event_notifier-posix.c ├── event_notifier-win32.c ├── fifo8.c ├── getauxval.c ├── hbitmap.c ├── hexdump.c ├── host-utils.c ├── id.c ├── iohandler.c ├── iov.c ├── iova-tree.c ├── keyval.c ├── lockcnt.c ├── log.c ├── main-loop.c ├── memfd.c ├── mmap-alloc.c ├── module.c ├── notify.c ├── osdep.c ├── oslib-posix.c ├── oslib-win32.c ├── pagesize.c ├── path.c ├── qdist.c ├── qemu-config.c ├── qemu-coroutine-io.c ├── qemu-coroutine-lock.c ├── qemu-coroutine-sleep.c ├── qemu-coroutine.c ├── qemu-error.c ├── qemu-openpty.c ├── qemu-option.c ├── qemu-progress.c ├── qemu-sockets.c ├── qemu-thread-common.h ├── qemu-thread-posix.c ├── qemu-thread-win32.c ├── qemu-timer-common.c ├── qemu-timer.c ├── qht.c ├── qsp.c ├── range.c ├── rcu.c ├── readline.c ├── stats64.c ├── sys_membarrier.c ├── systemd.c ├── thread-pool.c ├── throttle.c ├── timed-average.c ├── trace-events ├── unicode.c ├── uri.c ├── uuid.c └── vfio-helpers.c ├── version.rc ├── vl.c ├── win_dump.c └── win_dump.h /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.editorconfig -------------------------------------------------------------------------------- /.exrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.exrc -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.gdbinit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpublish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.gitpublish -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.mailmap -------------------------------------------------------------------------------- /.shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.shippable.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/CODING_STYLE -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/Changelog -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/Makefile.objs -------------------------------------------------------------------------------- /Makefile.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/Makefile.target -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/README.md -------------------------------------------------------------------------------- /README.upstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/README.upstream -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.1.50 2 | -------------------------------------------------------------------------------- /accel/accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/accel/accel.c -------------------------------------------------------------------------------- /arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/arch_init.c -------------------------------------------------------------------------------- /audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/audio.c -------------------------------------------------------------------------------- /audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/audio.h -------------------------------------------------------------------------------- /audio/mixeng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/mixeng.c -------------------------------------------------------------------------------- /audio/mixeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/mixeng.h -------------------------------------------------------------------------------- /audio/noaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/noaudio.c -------------------------------------------------------------------------------- /audio/ossaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/ossaudio.c -------------------------------------------------------------------------------- /audio/paaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/paaudio.c -------------------------------------------------------------------------------- /audio/sdlaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/sdlaudio.c -------------------------------------------------------------------------------- /audio/wavaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/audio/wavaudio.c -------------------------------------------------------------------------------- /backends/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/backends/rng.c -------------------------------------------------------------------------------- /backends/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/backends/tpm.c -------------------------------------------------------------------------------- /balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/balloon.c -------------------------------------------------------------------------------- /block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block.c -------------------------------------------------------------------------------- /block/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/backup.c -------------------------------------------------------------------------------- /block/blkdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/blkdebug.c -------------------------------------------------------------------------------- /block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/bochs.c -------------------------------------------------------------------------------- /block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/cloop.c -------------------------------------------------------------------------------- /block/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/commit.c -------------------------------------------------------------------------------- /block/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/create.c -------------------------------------------------------------------------------- /block/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/crypto.c -------------------------------------------------------------------------------- /block/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/crypto.h -------------------------------------------------------------------------------- /block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/curl.c -------------------------------------------------------------------------------- /block/dmg-bz2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/dmg-bz2.c -------------------------------------------------------------------------------- /block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/dmg.c -------------------------------------------------------------------------------- /block/dmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/dmg.h -------------------------------------------------------------------------------- /block/gluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/gluster.c -------------------------------------------------------------------------------- /block/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/io.c -------------------------------------------------------------------------------- /block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/iscsi.c -------------------------------------------------------------------------------- /block/mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/mirror.c -------------------------------------------------------------------------------- /block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/nbd.c -------------------------------------------------------------------------------- /block/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/nfs.c -------------------------------------------------------------------------------- /block/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/null.c -------------------------------------------------------------------------------- /block/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/nvme.c -------------------------------------------------------------------------------- /block/ocssd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/ocssd.c -------------------------------------------------------------------------------- /block/qapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/qapi.c -------------------------------------------------------------------------------- /block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/qcow.c -------------------------------------------------------------------------------- /block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/qcow2.c -------------------------------------------------------------------------------- /block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/qcow2.h -------------------------------------------------------------------------------- /block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/qed.c -------------------------------------------------------------------------------- /block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/qed.h -------------------------------------------------------------------------------- /block/quorum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/quorum.c -------------------------------------------------------------------------------- /block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/rbd.c -------------------------------------------------------------------------------- /block/sheepdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/sheepdog.c -------------------------------------------------------------------------------- /block/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/snapshot.c -------------------------------------------------------------------------------- /block/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/ssh.c -------------------------------------------------------------------------------- /block/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/stream.c -------------------------------------------------------------------------------- /block/throttle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/throttle.c -------------------------------------------------------------------------------- /block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/vdi.c -------------------------------------------------------------------------------- /block/vhdx-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/vhdx-log.c -------------------------------------------------------------------------------- /block/vhdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/vhdx.c -------------------------------------------------------------------------------- /block/vhdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/vhdx.h -------------------------------------------------------------------------------- /block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/vmdk.c -------------------------------------------------------------------------------- /block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/vpc.c -------------------------------------------------------------------------------- /block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/vvfat.c -------------------------------------------------------------------------------- /block/vxhs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/block/vxhs.c -------------------------------------------------------------------------------- /blockdev-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/blockdev-nbd.c -------------------------------------------------------------------------------- /blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/blockdev.c -------------------------------------------------------------------------------- /blockjob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/blockjob.c -------------------------------------------------------------------------------- /bootdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/bootdevice.c -------------------------------------------------------------------------------- /bsd-user/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/bsd-user/main.c -------------------------------------------------------------------------------- /bsd-user/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/bsd-user/mmap.c -------------------------------------------------------------------------------- /bsd-user/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/bsd-user/qemu.h -------------------------------------------------------------------------------- /bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/bt-host.c -------------------------------------------------------------------------------- /bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/bt-vhci.c -------------------------------------------------------------------------------- /chardev/baum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/chardev/baum.c -------------------------------------------------------------------------------- /chardev/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/chardev/char.c -------------------------------------------------------------------------------- /chardev/spice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/chardev/spice.c -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/configure -------------------------------------------------------------------------------- /contrib/gitdm/group-map-cadence: -------------------------------------------------------------------------------- 1 | # Cadence Design Systems 2 | 3 | jcmvbkbc@gmail.com 4 | -------------------------------------------------------------------------------- /contrib/gitdm/group-map-codeweavers: -------------------------------------------------------------------------------- 1 | sergio.g.delreal@gmail.com 2 | -------------------------------------------------------------------------------- /cpus-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/cpus-common.c -------------------------------------------------------------------------------- /cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/cpus.c -------------------------------------------------------------------------------- /crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/aes.c -------------------------------------------------------------------------------- /crypto/afalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/afalg.c -------------------------------------------------------------------------------- /crypto/afsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/afsplit.c -------------------------------------------------------------------------------- /crypto/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/block.c -------------------------------------------------------------------------------- /crypto/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/cipher.c -------------------------------------------------------------------------------- /crypto/desrfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/desrfb.c -------------------------------------------------------------------------------- /crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/hash.c -------------------------------------------------------------------------------- /crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/hmac.c -------------------------------------------------------------------------------- /crypto/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/init.c -------------------------------------------------------------------------------- /crypto/ivgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/ivgen.c -------------------------------------------------------------------------------- /crypto/pbkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/pbkdf.c -------------------------------------------------------------------------------- /crypto/secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/secret.c -------------------------------------------------------------------------------- /crypto/xts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/crypto/xts.c -------------------------------------------------------------------------------- /default-configs/aarch64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for aarch64-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/alpha-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for alpha-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/arm-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for arm-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/armeb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for armeb-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/cris-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for cris-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/hppa-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for hppa-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/i386-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/i386-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/m68k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for m68k-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mips-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mips64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mips64el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips64el-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mipsel-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsel-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mipsn32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/mipsn32el-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mipsn32el-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/nios2-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for nios2-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/or1k-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for or1k-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/ppc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/ppc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc64-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/ppc64le-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for ppc64le-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/riscv32-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for riscv-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/riscv64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for riscv-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/s390x-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for s390x-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sh4-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sh4eb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4eb-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/sparc64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/tilegx-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for tilegx-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/tricore-softmmu.mak: -------------------------------------------------------------------------------- 1 | CONFIG_TRICORE=y 2 | -------------------------------------------------------------------------------- /default-configs/x86_64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-bsd-user 2 | -------------------------------------------------------------------------------- /default-configs/x86_64-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/xtensa-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for xtensa-linux-user 2 | -------------------------------------------------------------------------------- /default-configs/xtensaeb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for xtensa-linux-user 2 | -------------------------------------------------------------------------------- /device-hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/device-hotplug.c -------------------------------------------------------------------------------- /device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/device_tree.c -------------------------------------------------------------------------------- /disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas.c -------------------------------------------------------------------------------- /disas/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/alpha.c -------------------------------------------------------------------------------- /disas/arm-a64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/arm-a64.cc -------------------------------------------------------------------------------- /disas/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/arm.c -------------------------------------------------------------------------------- /disas/cris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/cris.c -------------------------------------------------------------------------------- /disas/hppa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/hppa.c -------------------------------------------------------------------------------- /disas/i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/i386.c -------------------------------------------------------------------------------- /disas/lm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/lm32.c -------------------------------------------------------------------------------- /disas/m68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/m68k.c -------------------------------------------------------------------------------- /disas/mips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/mips.c -------------------------------------------------------------------------------- /disas/moxie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/moxie.c -------------------------------------------------------------------------------- /disas/nanomips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/nanomips.h -------------------------------------------------------------------------------- /disas/nios2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/nios2.c -------------------------------------------------------------------------------- /disas/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/ppc.c -------------------------------------------------------------------------------- /disas/riscv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/riscv.c -------------------------------------------------------------------------------- /disas/s390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/s390.c -------------------------------------------------------------------------------- /disas/sh4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/sh4.c -------------------------------------------------------------------------------- /disas/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/sparc.c -------------------------------------------------------------------------------- /disas/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/tci.c -------------------------------------------------------------------------------- /disas/xtensa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/disas/xtensa.c -------------------------------------------------------------------------------- /dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/dma-helpers.c -------------------------------------------------------------------------------- /docs/COLO-FT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/COLO-FT.txt -------------------------------------------------------------------------------- /docs/can.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/can.txt -------------------------------------------------------------------------------- /docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/ccid.txt -------------------------------------------------------------------------------- /docs/nvdimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/nvdimm.txt -------------------------------------------------------------------------------- /docs/pcie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/pcie.txt -------------------------------------------------------------------------------- /docs/pvrdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/pvrdma.txt -------------------------------------------------------------------------------- /docs/rdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/rdma.txt -------------------------------------------------------------------------------- /docs/replay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/replay.txt -------------------------------------------------------------------------------- /docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/usb2.txt -------------------------------------------------------------------------------- /docs/vfio-ap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/vfio-ap.txt -------------------------------------------------------------------------------- /docs/xbzrle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/docs/xbzrle.txt -------------------------------------------------------------------------------- /dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/dump.c -------------------------------------------------------------------------------- /exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/exec.c -------------------------------------------------------------------------------- /fpu/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/fpu/softfloat.c -------------------------------------------------------------------------------- /gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/gdbstub.c -------------------------------------------------------------------------------- /gitdm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/gitdm.config -------------------------------------------------------------------------------- /hmp-commands.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hmp-commands.hx -------------------------------------------------------------------------------- /hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hmp.c -------------------------------------------------------------------------------- /hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hmp.h -------------------------------------------------------------------------------- /hw/9pfs/9p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/9pfs/9p.c -------------------------------------------------------------------------------- /hw/9pfs/9p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/9pfs/9p.h -------------------------------------------------------------------------------- /hw/9pfs/codir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/9pfs/codir.c -------------------------------------------------------------------------------- /hw/9pfs/cofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/9pfs/cofile.c -------------------------------------------------------------------------------- /hw/9pfs/cofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/9pfs/cofs.c -------------------------------------------------------------------------------- /hw/9pfs/coth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/9pfs/coth.c -------------------------------------------------------------------------------- /hw/9pfs/coth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/9pfs/coth.h -------------------------------------------------------------------------------- /hw/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/Makefile.objs -------------------------------------------------------------------------------- /hw/acpi/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/core.c -------------------------------------------------------------------------------- /hw/acpi/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/cpu.c -------------------------------------------------------------------------------- /hw/acpi/ich9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/ich9.c -------------------------------------------------------------------------------- /hw/acpi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/ipmi.c -------------------------------------------------------------------------------- /hw/acpi/nvdimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/nvdimm.c -------------------------------------------------------------------------------- /hw/acpi/pcihp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/pcihp.c -------------------------------------------------------------------------------- /hw/acpi/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/piix4.c -------------------------------------------------------------------------------- /hw/acpi/tco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/tco.c -------------------------------------------------------------------------------- /hw/acpi/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/acpi/tpm.c -------------------------------------------------------------------------------- /hw/adc/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_STM32F2XX_ADC) += stm32f2xx_adc.o 2 | -------------------------------------------------------------------------------- /hw/alpha/dp264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/alpha/dp264.c -------------------------------------------------------------------------------- /hw/alpha/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/alpha/pci.c -------------------------------------------------------------------------------- /hw/arm/armsse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/armsse.c -------------------------------------------------------------------------------- /hw/arm/armv7m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/armv7m.c -------------------------------------------------------------------------------- /hw/arm/aspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/aspeed.c -------------------------------------------------------------------------------- /hw/arm/bcm2836.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/bcm2836.c -------------------------------------------------------------------------------- /hw/arm/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/boot.c -------------------------------------------------------------------------------- /hw/arm/collie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/collie.c -------------------------------------------------------------------------------- /hw/arm/digic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/digic.c -------------------------------------------------------------------------------- /hw/arm/gumstix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/gumstix.c -------------------------------------------------------------------------------- /hw/arm/kzm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/kzm.c -------------------------------------------------------------------------------- /hw/arm/mps2-tz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/mps2-tz.c -------------------------------------------------------------------------------- /hw/arm/mps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/mps2.c -------------------------------------------------------------------------------- /hw/arm/nseries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/nseries.c -------------------------------------------------------------------------------- /hw/arm/omap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/omap1.c -------------------------------------------------------------------------------- /hw/arm/omap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/omap2.c -------------------------------------------------------------------------------- /hw/arm/palm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/palm.c -------------------------------------------------------------------------------- /hw/arm/pxa2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/pxa2xx.c -------------------------------------------------------------------------------- /hw/arm/raspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/raspi.c -------------------------------------------------------------------------------- /hw/arm/smmuv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/smmuv3.c -------------------------------------------------------------------------------- /hw/arm/spitz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/spitz.c -------------------------------------------------------------------------------- /hw/arm/tosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/tosa.c -------------------------------------------------------------------------------- /hw/arm/virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/virt.c -------------------------------------------------------------------------------- /hw/arm/z2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/arm/z2.c -------------------------------------------------------------------------------- /hw/audio/ac97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/ac97.c -------------------------------------------------------------------------------- /hw/audio/adlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/adlib.c -------------------------------------------------------------------------------- /hw/audio/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/fmopl.c -------------------------------------------------------------------------------- /hw/audio/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/fmopl.h -------------------------------------------------------------------------------- /hw/audio/gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/gus.c -------------------------------------------------------------------------------- /hw/audio/pcspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/pcspk.c -------------------------------------------------------------------------------- /hw/audio/pl041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/pl041.c -------------------------------------------------------------------------------- /hw/audio/pl041.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/pl041.h -------------------------------------------------------------------------------- /hw/audio/sb16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/audio/sb16.c -------------------------------------------------------------------------------- /hw/block/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/block/block.c -------------------------------------------------------------------------------- /hw/block/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/block/cdrom.c -------------------------------------------------------------------------------- /hw/block/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/block/ecc.c -------------------------------------------------------------------------------- /hw/block/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/block/fdc.c -------------------------------------------------------------------------------- /hw/block/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/block/nand.c -------------------------------------------------------------------------------- /hw/bt/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/bt/core.c -------------------------------------------------------------------------------- /hw/bt/hci-csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/bt/hci-csr.c -------------------------------------------------------------------------------- /hw/bt/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/bt/hci.c -------------------------------------------------------------------------------- /hw/bt/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/bt/hid.c -------------------------------------------------------------------------------- /hw/bt/l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/bt/l2cap.c -------------------------------------------------------------------------------- /hw/bt/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/bt/sdp.c -------------------------------------------------------------------------------- /hw/char/escc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/char/escc.c -------------------------------------------------------------------------------- /hw/char/pl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/char/pl011.c -------------------------------------------------------------------------------- /hw/char/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/char/serial.c -------------------------------------------------------------------------------- /hw/core/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/bus.c -------------------------------------------------------------------------------- /hw/core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/irq.c -------------------------------------------------------------------------------- /hw/core/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/loader.c -------------------------------------------------------------------------------- /hw/core/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/nmi.c -------------------------------------------------------------------------------- /hw/core/or-irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/or-irq.c -------------------------------------------------------------------------------- /hw/core/ptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/ptimer.c -------------------------------------------------------------------------------- /hw/core/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/qdev.c -------------------------------------------------------------------------------- /hw/core/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/reset.c -------------------------------------------------------------------------------- /hw/core/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/stream.c -------------------------------------------------------------------------------- /hw/core/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/core/sysbus.c -------------------------------------------------------------------------------- /hw/cpu/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/cpu/cluster.c -------------------------------------------------------------------------------- /hw/cpu/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/cpu/core.c -------------------------------------------------------------------------------- /hw/cris/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/cris/boot.c -------------------------------------------------------------------------------- /hw/cris/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/cris/boot.h -------------------------------------------------------------------------------- /hw/display/cg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/display/cg3.c -------------------------------------------------------------------------------- /hw/display/qxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/display/qxl.c -------------------------------------------------------------------------------- /hw/display/qxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/display/qxl.h -------------------------------------------------------------------------------- /hw/display/tcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/display/tcx.c -------------------------------------------------------------------------------- /hw/display/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/display/vga.c -------------------------------------------------------------------------------- /hw/dma/i82374.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/dma/i82374.c -------------------------------------------------------------------------------- /hw/dma/i8257.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/dma/i8257.c -------------------------------------------------------------------------------- /hw/dma/pl080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/dma/pl080.c -------------------------------------------------------------------------------- /hw/dma/pl330.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/dma/pl330.c -------------------------------------------------------------------------------- /hw/dma/rc4030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/dma/rc4030.c -------------------------------------------------------------------------------- /hw/dma/soc_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/dma/soc_dma.c -------------------------------------------------------------------------------- /hw/gpio/pl061.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/gpio/pl061.c -------------------------------------------------------------------------------- /hw/gpio/zaurus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/gpio/zaurus.c -------------------------------------------------------------------------------- /hw/hppa/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_DINO) += pci.o machine.o dino.o 2 | -------------------------------------------------------------------------------- /hw/hppa/dino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/hppa/dino.c -------------------------------------------------------------------------------- /hw/hppa/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/hppa/pci.c -------------------------------------------------------------------------------- /hw/i2c/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/i2c/core.c -------------------------------------------------------------------------------- /hw/i2c/i2c-ddc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/i2c/i2c-ddc.c -------------------------------------------------------------------------------- /hw/i2c/imx_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/i2c/imx_i2c.c -------------------------------------------------------------------------------- /hw/i2c/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/i2c/smbus.c -------------------------------------------------------------------------------- /hw/i386/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/i386/pc.c -------------------------------------------------------------------------------- /hw/i386/pc_q35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/i386/pc_q35.c -------------------------------------------------------------------------------- /hw/i386/vmport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/i386/vmport.c -------------------------------------------------------------------------------- /hw/ide/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/ahci.c -------------------------------------------------------------------------------- /hw/ide/atapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/atapi.c -------------------------------------------------------------------------------- /hw/ide/cmd646.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/cmd646.c -------------------------------------------------------------------------------- /hw/ide/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/core.c -------------------------------------------------------------------------------- /hw/ide/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/ich.c -------------------------------------------------------------------------------- /hw/ide/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/ioport.c -------------------------------------------------------------------------------- /hw/ide/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/isa.c -------------------------------------------------------------------------------- /hw/ide/macio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/macio.c -------------------------------------------------------------------------------- /hw/ide/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/mmio.c -------------------------------------------------------------------------------- /hw/ide/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/pci.c -------------------------------------------------------------------------------- /hw/ide/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/piix.c -------------------------------------------------------------------------------- /hw/ide/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/qdev.c -------------------------------------------------------------------------------- /hw/ide/sii3112.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/sii3112.c -------------------------------------------------------------------------------- /hw/ide/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ide/via.c -------------------------------------------------------------------------------- /hw/input/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/input/adb.c -------------------------------------------------------------------------------- /hw/input/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/input/hid.c -------------------------------------------------------------------------------- /hw/input/pckbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/input/pckbd.c -------------------------------------------------------------------------------- /hw/input/pl050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/input/pl050.c -------------------------------------------------------------------------------- /hw/input/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/input/ps2.c -------------------------------------------------------------------------------- /hw/intc/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/intc/apic.c -------------------------------------------------------------------------------- /hw/intc/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/intc/i8259.c -------------------------------------------------------------------------------- /hw/intc/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/intc/intc.c -------------------------------------------------------------------------------- /hw/intc/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/intc/ioapic.c -------------------------------------------------------------------------------- /hw/intc/ompic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/intc/ompic.c -------------------------------------------------------------------------------- /hw/intc/pl190.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/intc/pl190.c -------------------------------------------------------------------------------- /hw/intc/xics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/intc/xics.c -------------------------------------------------------------------------------- /hw/intc/xive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/intc/xive.c -------------------------------------------------------------------------------- /hw/ipack/ipack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ipack/ipack.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ipmi/ipmi.c -------------------------------------------------------------------------------- /hw/isa/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/isa/apm.c -------------------------------------------------------------------------------- /hw/isa/i82378.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/isa/i82378.c -------------------------------------------------------------------------------- /hw/isa/isa-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/isa/isa-bus.c -------------------------------------------------------------------------------- /hw/isa/pc87312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/isa/pc87312.c -------------------------------------------------------------------------------- /hw/isa/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/isa/piix4.c -------------------------------------------------------------------------------- /hw/lm32/lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/lm32/lm32.h -------------------------------------------------------------------------------- /hw/m68k/an5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/m68k/an5206.c -------------------------------------------------------------------------------- /hw/mem/nvdimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/mem/nvdimm.c -------------------------------------------------------------------------------- /hw/mem/pc-dimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/mem/pc-dimm.c -------------------------------------------------------------------------------- /hw/mips/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/mips/addr.c -------------------------------------------------------------------------------- /hw/mips/boston.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/mips/boston.c -------------------------------------------------------------------------------- /hw/mips/cps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/mips/cps.c -------------------------------------------------------------------------------- /hw/misc/a9scu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/a9scu.c -------------------------------------------------------------------------------- /hw/misc/auxbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/auxbus.c -------------------------------------------------------------------------------- /hw/misc/cbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/cbus.c -------------------------------------------------------------------------------- /hw/misc/edu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/edu.c -------------------------------------------------------------------------------- /hw/misc/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/sga.c -------------------------------------------------------------------------------- /hw/misc/tmp105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/tmp105.c -------------------------------------------------------------------------------- /hw/misc/tmp105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/tmp105.h -------------------------------------------------------------------------------- /hw/misc/tmp421.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/tmp421.c -------------------------------------------------------------------------------- /hw/misc/tz-mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/tz-mpc.c -------------------------------------------------------------------------------- /hw/misc/tz-msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/tz-msc.c -------------------------------------------------------------------------------- /hw/misc/tz-ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/tz-ppc.c -------------------------------------------------------------------------------- /hw/misc/unimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/misc/unimp.c -------------------------------------------------------------------------------- /hw/net/dp8393x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/dp8393x.c -------------------------------------------------------------------------------- /hw/net/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/e1000.c -------------------------------------------------------------------------------- /hw/net/e1000e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/e1000e.c -------------------------------------------------------------------------------- /hw/net/imx_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/imx_fec.c -------------------------------------------------------------------------------- /hw/net/lan9118.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/lan9118.c -------------------------------------------------------------------------------- /hw/net/lance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/lance.c -------------------------------------------------------------------------------- /hw/net/mcf_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/mcf_fec.c -------------------------------------------------------------------------------- /hw/net/mipsnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/mipsnet.c -------------------------------------------------------------------------------- /hw/net/ne2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/ne2000.c -------------------------------------------------------------------------------- /hw/net/ne2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/ne2000.h -------------------------------------------------------------------------------- /hw/net/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/pcnet.c -------------------------------------------------------------------------------- /hw/net/pcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/pcnet.h -------------------------------------------------------------------------------- /hw/net/rtl8139.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/rtl8139.c -------------------------------------------------------------------------------- /hw/net/sungem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/sungem.c -------------------------------------------------------------------------------- /hw/net/sunhme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/sunhme.c -------------------------------------------------------------------------------- /hw/net/vmxnet3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/vmxnet3.c -------------------------------------------------------------------------------- /hw/net/vmxnet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/vmxnet3.h -------------------------------------------------------------------------------- /hw/net/xen_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/xen_nic.c -------------------------------------------------------------------------------- /hw/net/xgmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/net/xgmac.c -------------------------------------------------------------------------------- /hw/nios2/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/nios2/boot.c -------------------------------------------------------------------------------- /hw/pci/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/pci/msi.c -------------------------------------------------------------------------------- /hw/pci/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/pci/msix.c -------------------------------------------------------------------------------- /hw/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/pci/pci.c -------------------------------------------------------------------------------- /hw/pci/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/pci/pcie.c -------------------------------------------------------------------------------- /hw/pci/shpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/pci/shpc.c -------------------------------------------------------------------------------- /hw/ppc/e500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ppc/e500.c -------------------------------------------------------------------------------- /hw/ppc/e500.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ppc/e500.h -------------------------------------------------------------------------------- /hw/ppc/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ppc/fdt.c -------------------------------------------------------------------------------- /hw/ppc/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ppc/mac.h -------------------------------------------------------------------------------- /hw/ppc/pnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ppc/pnv.c -------------------------------------------------------------------------------- /hw/ppc/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ppc/ppc.c -------------------------------------------------------------------------------- /hw/ppc/prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ppc/prep.c -------------------------------------------------------------------------------- /hw/ppc/spapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ppc/spapr.c -------------------------------------------------------------------------------- /hw/s390x/css.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/s390x/css.c -------------------------------------------------------------------------------- /hw/s390x/ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/s390x/ipl.c -------------------------------------------------------------------------------- /hw/s390x/ipl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/s390x/ipl.h -------------------------------------------------------------------------------- /hw/s390x/tod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/s390x/tod.c -------------------------------------------------------------------------------- /hw/scsi/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/scsi/esp.c -------------------------------------------------------------------------------- /hw/scsi/mfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/scsi/mfi.h -------------------------------------------------------------------------------- /hw/scsi/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/scsi/mpi.h -------------------------------------------------------------------------------- /hw/scsi/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/scsi/srp.h -------------------------------------------------------------------------------- /hw/sd/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/sd/core.c -------------------------------------------------------------------------------- /hw/sd/pl181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/sd/pl181.c -------------------------------------------------------------------------------- /hw/sd/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/sd/sd.c -------------------------------------------------------------------------------- /hw/sd/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/sd/sdhci.c -------------------------------------------------------------------------------- /hw/sd/ssi-sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/sd/ssi-sd.c -------------------------------------------------------------------------------- /hw/sh4/r2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/sh4/r2d.c -------------------------------------------------------------------------------- /hw/sh4/shix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/sh4/shix.c -------------------------------------------------------------------------------- /hw/ssi/pl022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ssi/pl022.c -------------------------------------------------------------------------------- /hw/ssi/ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/ssi/ssi.c -------------------------------------------------------------------------------- /hw/tricore/Makefile.objs: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_TRICORE) += tricore_testboard.o 2 | -------------------------------------------------------------------------------- /hw/usb/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/usb/bus.c -------------------------------------------------------------------------------- /hw/usb/ccid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/usb/ccid.h -------------------------------------------------------------------------------- /hw/usb/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/usb/core.c -------------------------------------------------------------------------------- /hw/usb/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/usb/desc.c -------------------------------------------------------------------------------- /hw/usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/usb/desc.h -------------------------------------------------------------------------------- /hw/usb/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/usb/host.h -------------------------------------------------------------------------------- /hw/usb/libhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/usb/libhw.c -------------------------------------------------------------------------------- /hw/vfio/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/vfio/ap.c -------------------------------------------------------------------------------- /hw/vfio/ccw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/vfio/ccw.c -------------------------------------------------------------------------------- /hw/vfio/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/vfio/pci.c -------------------------------------------------------------------------------- /hw/vfio/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/hw/vfio/pci.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/standard-headers/linux/if_ether.h: -------------------------------------------------------------------------------- 1 | #define ETH_ALEN 6 2 | -------------------------------------------------------------------------------- /io/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/io/channel.c -------------------------------------------------------------------------------- /io/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/io/task.c -------------------------------------------------------------------------------- /ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ioport.c -------------------------------------------------------------------------------- /iothread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/iothread.c -------------------------------------------------------------------------------- /job-qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/job-qmp.c -------------------------------------------------------------------------------- /job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/job.c -------------------------------------------------------------------------------- /kernel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/kernel.config -------------------------------------------------------------------------------- /linux-headers/asm-arm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /linux-headers/linux/vhost_types.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/vhost_types.h" 2 | -------------------------------------------------------------------------------- /linux-headers/linux/virtio_ring.h: -------------------------------------------------------------------------------- 1 | #include "standard-headers/linux/virtio_ring.h" 2 | -------------------------------------------------------------------------------- /linux-user/aarch64/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/arm/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/cris/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/i386/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/m68k/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/microblaze/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/mips64/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../mips/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/mips64/target_fcntl.h: -------------------------------------------------------------------------------- 1 | #include "../mips/target_fcntl.h" 2 | -------------------------------------------------------------------------------- /linux-user/mips64/target_structs.h: -------------------------------------------------------------------------------- 1 | #include "../mips/target_structs.h" 2 | 3 | -------------------------------------------------------------------------------- /linux-user/mips64/termbits.h: -------------------------------------------------------------------------------- 1 | #include "../mips/termbits.h" 2 | 3 | -------------------------------------------------------------------------------- /linux-user/nios2/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/openrisc/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/riscv/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/s390x/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/sh4/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/sparc64/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/sparc64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_cpu.h" 2 | -------------------------------------------------------------------------------- /linux-user/sparc64/target_fcntl.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_fcntl.h" 2 | -------------------------------------------------------------------------------- /linux-user/sparc64/target_signal.h: -------------------------------------------------------------------------------- 1 | #include "../sparc/target_signal.h" 2 | -------------------------------------------------------------------------------- /linux-user/tilegx/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/x86_64/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /linux-user/x86_64/target_cpu.h: -------------------------------------------------------------------------------- 1 | #include "../i386/target_cpu.h" 2 | -------------------------------------------------------------------------------- /linux-user/xtensa/sockbits.h: -------------------------------------------------------------------------------- 1 | #include "../generic/sockbits.h" 2 | -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/memory.c -------------------------------------------------------------------------------- /migration/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/migration/fd.c -------------------------------------------------------------------------------- /migration/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/migration/fd.h -------------------------------------------------------------------------------- /monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/monitor.c -------------------------------------------------------------------------------- /nbd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/nbd/client.c -------------------------------------------------------------------------------- /nbd/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/nbd/common.c -------------------------------------------------------------------------------- /nbd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/nbd/server.c -------------------------------------------------------------------------------- /net/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/checksum.c -------------------------------------------------------------------------------- /net/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/clients.h -------------------------------------------------------------------------------- /net/colo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/colo.c -------------------------------------------------------------------------------- /net/colo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/colo.h -------------------------------------------------------------------------------- /net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/dump.c -------------------------------------------------------------------------------- /net/eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/eth.c -------------------------------------------------------------------------------- /net/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/filter.c -------------------------------------------------------------------------------- /net/hub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/hub.c -------------------------------------------------------------------------------- /net/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/hub.h -------------------------------------------------------------------------------- /net/l2tpv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/l2tpv3.c -------------------------------------------------------------------------------- /net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/net.c -------------------------------------------------------------------------------- /net/netmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/netmap.c -------------------------------------------------------------------------------- /net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/queue.c -------------------------------------------------------------------------------- /net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/slirp.c -------------------------------------------------------------------------------- /net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/socket.c -------------------------------------------------------------------------------- /net/tap-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/tap-bsd.c -------------------------------------------------------------------------------- /net/tap-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/tap-stub.c -------------------------------------------------------------------------------- /net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/tap.c -------------------------------------------------------------------------------- /net/tap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/tap_int.h -------------------------------------------------------------------------------- /net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/util.c -------------------------------------------------------------------------------- /net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/util.h -------------------------------------------------------------------------------- /net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/net/vde.c -------------------------------------------------------------------------------- /numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/numa.c -------------------------------------------------------------------------------- /os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/os-posix.c -------------------------------------------------------------------------------- /os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/os-win32.c -------------------------------------------------------------------------------- /pc-bios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/pc-bios/README -------------------------------------------------------------------------------- /pc-bios/optionrom/code16gcc.h: -------------------------------------------------------------------------------- 1 | asm( 2 | ".code16gcc\n" 3 | ); 4 | -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/Makefile -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/it.po -------------------------------------------------------------------------------- /po/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/messages.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /qapi/char.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qapi/char.json -------------------------------------------------------------------------------- /qapi/job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qapi/job.json -------------------------------------------------------------------------------- /qapi/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qapi/misc.json -------------------------------------------------------------------------------- /qapi/net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qapi/net.json -------------------------------------------------------------------------------- /qapi/rdma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qapi/rdma.json -------------------------------------------------------------------------------- /qapi/tpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qapi/tpm.json -------------------------------------------------------------------------------- /qapi/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qapi/ui.json -------------------------------------------------------------------------------- /qdev-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qdev-monitor.c -------------------------------------------------------------------------------- /qemu-doc.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-doc.texi -------------------------------------------------------------------------------- /qemu-edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-edid.c -------------------------------------------------------------------------------- /qemu-ga.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-ga.texi -------------------------------------------------------------------------------- /qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-img.c -------------------------------------------------------------------------------- /qemu-img.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-img.texi -------------------------------------------------------------------------------- /qemu-io-cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-io-cmds.c -------------------------------------------------------------------------------- /qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-io.c -------------------------------------------------------------------------------- /qemu-keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-keymap.c -------------------------------------------------------------------------------- /qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-nbd.c -------------------------------------------------------------------------------- /qemu-nbd.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-nbd.texi -------------------------------------------------------------------------------- /qemu-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-options.h -------------------------------------------------------------------------------- /qemu-seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-seccomp.c -------------------------------------------------------------------------------- /qemu-tech.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu-tech.texi -------------------------------------------------------------------------------- /qemu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu.nsi -------------------------------------------------------------------------------- /qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qemu.sasl -------------------------------------------------------------------------------- /qga/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qga/channel.h -------------------------------------------------------------------------------- /qga/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qga/commands.c -------------------------------------------------------------------------------- /qga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qga/main.c -------------------------------------------------------------------------------- /qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qmp.c -------------------------------------------------------------------------------- /qobject/qlit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qobject/qlit.c -------------------------------------------------------------------------------- /qobject/qnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qobject/qnum.c -------------------------------------------------------------------------------- /qom/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qom/cpu.c -------------------------------------------------------------------------------- /qom/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qom/object.c -------------------------------------------------------------------------------- /qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/qtest.c -------------------------------------------------------------------------------- /replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/replication.c -------------------------------------------------------------------------------- /replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/replication.h -------------------------------------------------------------------------------- /roms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/roms/Makefile -------------------------------------------------------------------------------- /rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/rules.mak -------------------------------------------------------------------------------- /scripts/hxtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/scripts/hxtool -------------------------------------------------------------------------------- /scripts/qapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/qmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scsi/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/scsi/utils.c -------------------------------------------------------------------------------- /slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/bootp.c -------------------------------------------------------------------------------- /slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/bootp.h -------------------------------------------------------------------------------- /slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/cksum.c -------------------------------------------------------------------------------- /slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/debug.h -------------------------------------------------------------------------------- /slirp/dhcpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/dhcpv6.c -------------------------------------------------------------------------------- /slirp/dhcpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/dhcpv6.h -------------------------------------------------------------------------------- /slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/if.c -------------------------------------------------------------------------------- /slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/if.h -------------------------------------------------------------------------------- /slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/ip.h -------------------------------------------------------------------------------- /slirp/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/ip6.h -------------------------------------------------------------------------------- /slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/main.h -------------------------------------------------------------------------------- /slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/mbuf.c -------------------------------------------------------------------------------- /slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/mbuf.h -------------------------------------------------------------------------------- /slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/misc.c -------------------------------------------------------------------------------- /slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/misc.h -------------------------------------------------------------------------------- /slirp/ncsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/ncsi.c -------------------------------------------------------------------------------- /slirp/qtailq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/qtailq.h -------------------------------------------------------------------------------- /slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/sbuf.c -------------------------------------------------------------------------------- /slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/sbuf.h -------------------------------------------------------------------------------- /slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/slirp.c -------------------------------------------------------------------------------- /slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/slirp.h -------------------------------------------------------------------------------- /slirp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/socket.c -------------------------------------------------------------------------------- /slirp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/socket.h -------------------------------------------------------------------------------- /slirp/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/state.c -------------------------------------------------------------------------------- /slirp/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/state.h -------------------------------------------------------------------------------- /slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/tcp.h -------------------------------------------------------------------------------- /slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/tcpip.h -------------------------------------------------------------------------------- /slirp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/tftp.c -------------------------------------------------------------------------------- /slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/tftp.h -------------------------------------------------------------------------------- /slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/udp.c -------------------------------------------------------------------------------- /slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/udp.h -------------------------------------------------------------------------------- /slirp/udp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/udp6.c -------------------------------------------------------------------------------- /slirp/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/util.c -------------------------------------------------------------------------------- /slirp/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/slirp/util.h -------------------------------------------------------------------------------- /stubs/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/stubs/dump.c -------------------------------------------------------------------------------- /stubs/fdset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/stubs/fdset.c -------------------------------------------------------------------------------- /stubs/qtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/stubs/qtest.c -------------------------------------------------------------------------------- /stubs/ramfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/stubs/ramfb.c -------------------------------------------------------------------------------- /stubs/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/stubs/replay.c -------------------------------------------------------------------------------- /stubs/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/stubs/sysbus.c -------------------------------------------------------------------------------- /stubs/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/stubs/tpm.c -------------------------------------------------------------------------------- /stubs/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/stubs/uuid.c -------------------------------------------------------------------------------- /target/lm32/TODO: -------------------------------------------------------------------------------- 1 | * linux-user emulation 2 | -------------------------------------------------------------------------------- /target/moxie/machine.h: -------------------------------------------------------------------------------- 1 | extern const VMStateDescription vmstate_moxie_cpu; 2 | -------------------------------------------------------------------------------- /tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/LICENSE -------------------------------------------------------------------------------- /tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/README -------------------------------------------------------------------------------- /tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/TODO -------------------------------------------------------------------------------- /tcg/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/optimize.c -------------------------------------------------------------------------------- /tcg/tcg-mo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/tcg-mo.h -------------------------------------------------------------------------------- /tcg/tcg-op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/tcg-op.c -------------------------------------------------------------------------------- /tcg/tcg-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/tcg-op.h -------------------------------------------------------------------------------- /tcg/tcg-opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/tcg-opc.h -------------------------------------------------------------------------------- /tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/tcg.c -------------------------------------------------------------------------------- /tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/tcg.h -------------------------------------------------------------------------------- /tcg/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/tci.c -------------------------------------------------------------------------------- /tcg/tci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tcg/tci/README -------------------------------------------------------------------------------- /tests/data/acpi/pc/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /tests/data/acpi/q35/FACS: -------------------------------------------------------------------------------- 1 | sstv`  -------------------------------------------------------------------------------- /tests/fp/.gitignore: -------------------------------------------------------------------------------- 1 | fp-test 2 | fp-bench 3 | -------------------------------------------------------------------------------- /tests/migration/guestperf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/multiboot/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.elf 3 | test.out 4 | -------------------------------------------------------------------------------- /tests/qapi-schema/allow-preconfig-test.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/allow-preconfig-test.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-array.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-array.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-bool-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-bool-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-enum-bool.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-enum-bool.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-enum-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-enum-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-num-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-num-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-conflict-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-invalid-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-invalid-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-nested.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-nested.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/alternate-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-array-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-bad-boxed.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-bad-boxed.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-anon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-anon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-boxed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-invalid.json: -------------------------------------------------------------------------------- 1 | { 'command': 'foo', 2 | 'data': false } 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-member-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-name-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-name-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/args-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-ident.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-ident.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-if-empty-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-if-empty-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-if-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-if-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-if-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-if-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-if.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-if.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-bool.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-bool.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/bad-type-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-direct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-direct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-indirect.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/base-cycle-indirect.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/command-int.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/command-int.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/comments.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/comments.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-alternate-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-alternate-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-command-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-command-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-section.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-section.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-union-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-bad-union-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-before-include.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-before-include.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-before-pragma.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-before-pragma.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-return.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-return.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-since.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-duplicated-since.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-arg.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-arg.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-empty-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-good.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-good.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-interleaved-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-interleaved-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-end.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-end.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-end2.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-end2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-return.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-return.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-section.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-section.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-start.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-invalid-start.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-expr.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-expr.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-space.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing-space.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-missing.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-no-symbol.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/doc-no-symbol.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/double-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/duplicate-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/duplicate-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-name.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-name.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-prefix.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-bad-prefix.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-dict-member-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-dict-member-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-if-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-if-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-int-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-int-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-member-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-member-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-missing-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-missing-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-wrong-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/enum-wrong-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-outside-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-outside-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-big.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-big.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-short.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/escape-too-short.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-boxed-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-boxed-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-case.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-case.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-member-invalid-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-member-invalid-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-nest-struct.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/event-nest-struct.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-array-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-array-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-bad-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-any.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-any.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-union.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-base-union.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-clash-member.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-clash-member.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-inline-invalid-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-inline-invalid-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-inline.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-inline.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-int-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-int-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-branch-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-branch-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-if-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-invalid-if-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-no-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-no-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-optional-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-optional-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-string-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/flat-union-string-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.err: -------------------------------------------------------------------------------- 1 | tests/qapi-schema/funny-char.json:2:36: Stray ";" 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/funny-char.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/ident-with-escape.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/ident-with-escape.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-before-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-before-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-extra-junk.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-extra-junk.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-format-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-format-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-nested-err.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-nested-err.json: -------------------------------------------------------------------------------- 1 | { 'include': 'missing-colon.json' } 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-nested-err.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-no-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-no-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.json: -------------------------------------------------------------------------------- 1 | { 'include': {} } 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-non-file.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-relpath.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-relpath.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-repetition.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-repetition.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-self-cycle.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-self-cycle.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-simple.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/include-simple.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/indented-expr.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/indented-expr.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/leading-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-colon.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-colon.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/missing-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/nested-struct-data-invalid-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/nested-struct-data-invalid-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/nested-struct-data.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/nested-struct-data.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.json: -------------------------------------------------------------------------------- 1 | 'string' 2 | [ ] 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/non-objects.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/oob-test.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/oob-test.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-doc-required-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-doc-required-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-extra-junk.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-extra-junk.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-name-case-whitelist-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-name-case-whitelist-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-non-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-non-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-returns-whitelist-crap.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/pragma-returns-whitelist-crap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/qapi-schema-test.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/qapi-schema-test.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/quoted-structural-chars.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/quoted-structural-chars.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-builtin.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-builtin.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-command.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-command.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-event.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-event.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-type.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/redefined-type.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-command-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-command-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-enum-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-enum-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-has.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-has.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-q.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-q.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-u.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-u.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-underscore.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-member-underscore.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-kind.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-kind.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/reserved-type-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-alternate.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-alternate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-array-bad.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-array-bad.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-whitelist.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/returns-whitelist.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash-deep.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash-deep.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-base-clash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-data-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-data-invalid.json: -------------------------------------------------------------------------------- 1 | { 'struct': 'foo', 2 | 'data': false } 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-data-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-member-invalid-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-member-invalid-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-member-invalid.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/struct-member-invalid.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/trailing-comma-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/type-bypass-bad-gen.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/type-bypass-bad-gen.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' } 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-list.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.json: -------------------------------------------------------------------------------- 1 | { 'key': [ 'value' ] 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-object.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.json: -------------------------------------------------------------------------------- 1 | { 'text': 'lorem ips 2 | } 3 | -------------------------------------------------------------------------------- /tests/qapi-schema/unclosed-string.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unicode-str.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unicode-str.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-no-discriminator.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-base-no-discriminator.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-branch-case.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-branch-case.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-branch-invalid-dict.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-branch-invalid-dict.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-clash-branches.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-clash-branches.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-empty.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-empty.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-invalid-base.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-invalid-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-optional-branch.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-optional-branch.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-unknown.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/union-unknown.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-escape.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-escape.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-expr-key.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/qapi-schema/unknown-expr-key.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tcg/mips/mips64-dspr2/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,8,3,16,41,52 3 | -------------------------------------------------------------------------------- /tests/tcg/multiarch/README: -------------------------------------------------------------------------------- 1 | Multi-architecture linux-user tests 2 | -------------------------------------------------------------------------------- /tests/test-rcu-simpleq.c: -------------------------------------------------------------------------------- 1 | #define TEST_LIST_TYPE 2 2 | #include "test-rcu-list.c" 3 | -------------------------------------------------------------------------------- /tests/test-rcu-tailq.c: -------------------------------------------------------------------------------- 1 | #define TEST_LIST_TYPE 3 2 | #include "test-rcu-list.c" 3 | -------------------------------------------------------------------------------- /tests/vm/README: -------------------------------------------------------------------------------- 1 | See docs/devel/testing.rst for help. 2 | -------------------------------------------------------------------------------- /thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/thunk.c -------------------------------------------------------------------------------- /tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/tpm.c -------------------------------------------------------------------------------- /trace-events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/trace-events -------------------------------------------------------------------------------- /trace/ftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/trace/ftrace.c -------------------------------------------------------------------------------- /trace/ftrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/trace/ftrace.h -------------------------------------------------------------------------------- /trace/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/trace/mem.h -------------------------------------------------------------------------------- /trace/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/trace/qmp.c -------------------------------------------------------------------------------- /trace/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/trace/simple.c -------------------------------------------------------------------------------- /trace/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/trace/simple.h -------------------------------------------------------------------------------- /ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/cocoa.m -------------------------------------------------------------------------------- /ui/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/console.c -------------------------------------------------------------------------------- /ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/curses.c -------------------------------------------------------------------------------- /ui/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/cursor.c -------------------------------------------------------------------------------- /ui/gtk-egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/gtk-egl.c -------------------------------------------------------------------------------- /ui/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/gtk.c -------------------------------------------------------------------------------- /ui/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/input.c -------------------------------------------------------------------------------- /ui/kbd-state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/kbd-state.c -------------------------------------------------------------------------------- /ui/keymaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/keymaps.c -------------------------------------------------------------------------------- /ui/keymaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/keymaps.h -------------------------------------------------------------------------------- /ui/qemu-x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/qemu-x509.h -------------------------------------------------------------------------------- /ui/sdl2-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/sdl2-2d.c -------------------------------------------------------------------------------- /ui/sdl2-gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/sdl2-gl.c -------------------------------------------------------------------------------- /ui/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/sdl2.c -------------------------------------------------------------------------------- /ui/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/shader.c -------------------------------------------------------------------------------- /ui/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/vgafont.h -------------------------------------------------------------------------------- /ui/vnc-jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/vnc-jobs.c -------------------------------------------------------------------------------- /ui/vnc-jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/vnc-jobs.h -------------------------------------------------------------------------------- /ui/vnc-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/vnc-stubs.c -------------------------------------------------------------------------------- /ui/vnc-ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/vnc-ws.c -------------------------------------------------------------------------------- /ui/vnc-ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/vnc-ws.h -------------------------------------------------------------------------------- /ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/vnc.c -------------------------------------------------------------------------------- /ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/vnc.h -------------------------------------------------------------------------------- /ui/x_keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/x_keymap.c -------------------------------------------------------------------------------- /ui/x_keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/ui/x_keymap.h -------------------------------------------------------------------------------- /util/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/acl.c -------------------------------------------------------------------------------- /util/aiocb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/aiocb.c -------------------------------------------------------------------------------- /util/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/async.c -------------------------------------------------------------------------------- /util/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/base64.c -------------------------------------------------------------------------------- /util/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/bitmap.c -------------------------------------------------------------------------------- /util/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/bitops.c -------------------------------------------------------------------------------- /util/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/buffer.c -------------------------------------------------------------------------------- /util/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/crc32c.c -------------------------------------------------------------------------------- /util/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/cutils.c -------------------------------------------------------------------------------- /util/drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/drm.c -------------------------------------------------------------------------------- /util/envlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/envlist.c -------------------------------------------------------------------------------- /util/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/error.c -------------------------------------------------------------------------------- /util/fifo8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/fifo8.c -------------------------------------------------------------------------------- /util/hbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/hbitmap.c -------------------------------------------------------------------------------- /util/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/hexdump.c -------------------------------------------------------------------------------- /util/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/id.c -------------------------------------------------------------------------------- /util/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/iov.c -------------------------------------------------------------------------------- /util/keyval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/keyval.c -------------------------------------------------------------------------------- /util/lockcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/lockcnt.c -------------------------------------------------------------------------------- /util/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/log.c -------------------------------------------------------------------------------- /util/memfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/memfd.c -------------------------------------------------------------------------------- /util/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/module.c -------------------------------------------------------------------------------- /util/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/notify.c -------------------------------------------------------------------------------- /util/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/osdep.c -------------------------------------------------------------------------------- /util/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/path.c -------------------------------------------------------------------------------- /util/qdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/qdist.c -------------------------------------------------------------------------------- /util/qht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/qht.c -------------------------------------------------------------------------------- /util/qsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/qsp.c -------------------------------------------------------------------------------- /util/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/range.c -------------------------------------------------------------------------------- /util/rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/rcu.c -------------------------------------------------------------------------------- /util/stats64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/stats64.c -------------------------------------------------------------------------------- /util/systemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/systemd.c -------------------------------------------------------------------------------- /util/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/unicode.c -------------------------------------------------------------------------------- /util/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/uri.c -------------------------------------------------------------------------------- /util/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/util/uuid.c -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/version.rc -------------------------------------------------------------------------------- /vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/vl.c -------------------------------------------------------------------------------- /win_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/win_dump.c -------------------------------------------------------------------------------- /win_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenChannelSSD/qemu-nvme/HEAD/win_dump.h --------------------------------------------------------------------------------