From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: thuth@redhat.com, lviver@redhat.com
Subject: [Qemu-devel] [PULL 00/57] qgraph merge
Date: Thu, 7 Mar 2019 18:29:07 +0100 [thread overview]
Message-ID: <1551979804-6060-1-git-send-email-pbonzini@redhat.com> (raw)
The following changes since commit 3a75ef6a0fe397b0d36930415be6b123750a6afe:
Merge remote-tracking branch 'remotes/kraxel/tags/usb-20190307-pull-request' into staging (2019-03-07 14:06:42 +0000)
are available in the git repository at:
git://github.com/bonzini/qemu.git tags/for-upstream-qgraph
for you to fetch changes up to 15bd8b2cdabbf8f3371f2e30b1ef04cf9fe9ec87:
qos-test: megasas test node (2019-03-07 17:25:09 +0100)
----------------------------------------------------------------
qgraph project from GSoC 2018
----------------------------------------------------------------
Emanuele Giuseppe Esposito (45):
tests/libqos: introduce virtio_start_device
tests/libqos: rename qpci_init_pc and qpci_init_spapr functions
tests: qgraph API for the qtest driver framework
tests/libqos: pci-pc driver and interface nodes
tests/libqos: x86_64/pc machine node
tests/libqos: sdhci driver and interface nodes
tests/libqos: arm/raspi2 machine node
tests/libqos: arm/smdkc210 machine node
tests/libqos: arm/sabrelite machine node
tests/libqos: arm/xilinx-zynq-a9 machine node
tests/libqos: aarch64/xlnx-zcu102 machine node
qos-test: sdhci test node
tests/libqos: pci-spapr driver and interface nodes
tests/qgraph: ppc64/pseries machine node
tests/libqos: has_buggy_msi flag
tests/libqos: e1000e driver and interface nodes
qos-test: e1000e test node
tests/libqos: virtio-pci driver and interface nodes
tests/libqos: virtio-mmio driver and interface nodes
tests/libqos: arm/virt machine node
tests/libqos: virtio-serial driver and interface nodes
qos-test: virtio-console and virtio-serial test node
tests/libqos: virtio-9p driver and interface nodes
qos-test: virtio-9p test node
tests/libqos: virtio-balloon driver and interface nodes
tests/qgraph: remove virtio-balloon-test
tests/libqos: virtio-rng driver and interface nodes
qos-test: virtio-rng test node
tests/libqos: virtio-blk driver and interface nodes
tests/libqos: virtio-net driver and interface nodes
qos-test: virtio-net test node
tests/libqos: virtio-scsi driver and interface nodes
qos-test: virtio-scsi test node
qos-test: ac97 test node
qos-test: tpci200 test node
qos-test: ipoctal232 test node
qos-test: ne2k_pci test node
qos-test: nvme test node
qos-test: pcnet test node
qos-test: spapr-phb test node
qos-test: usb-hcd-ohci test node
qos-test: vmxnet3 test node
qos-test: es1370 test node
qos-test: eepro100 test node
qos-test: e1000 test node
Paolo Bonzini (12):
chardev-socket: do not blindly reset handlers when switching GMainContext
tests/libqos: embed allocators instead of malloc-ing them separately
tests/qgraph: add generic PCI testcases
tests/libqos: remove global_qtest from virtio endianness checks
tests/qgraph: add generic virtio testcases
qos-test: virtio-blk test node
tests/libqos: support multiqueue for virtio-net
vhost-user-test: always use 256 MiB of guest memory
qos-test: vhost-user test node
tests/libqos: remove pre-qgraph QVirtioPCIDevice API
tests: move virtio entirely to qos-test
qos-test: megasas test node
chardev/char-socket.c | 2 +-
configure | 2 +-
include/qemu/module.h | 2 +
tests/Makefile.include | 129 +++--
tests/ac97-test.c | 47 +-
tests/ahci-test.c | 6 +-
tests/drive_del-test.c | 25 +-
tests/e1000-test.c | 64 ++-
tests/e1000e-test.c | 358 +++-----------
tests/eepro100-test.c | 65 ++-
tests/es1370-test.c | 46 +-
tests/i440fx-test.c | 2 +-
tests/ide-test.c | 19 +-
tests/ipoctal232-test.c | 35 +-
tests/libqos/aarch64-xlnx-zcu102-machine.c | 94 ++++
tests/libqos/ahci.c | 2 +-
tests/libqos/arm-raspi2-machine.c | 91 ++++
tests/libqos/arm-sabrelite-machine.c | 91 ++++
tests/libqos/arm-smdkc210-machine.c | 91 ++++
tests/libqos/arm-virt-machine.c | 90 ++++
tests/libqos/arm-xilinx-zynq-a9-machine.c | 94 ++++
tests/libqos/e1000e.c | 260 ++++++++++
tests/libqos/e1000e.h | 53 ++
tests/libqos/libqos-pc.c | 5 +-
tests/libqos/libqos-spapr.c | 5 +-
tests/libqos/libqos.c | 13 +-
tests/libqos/libqos.h | 13 +-
tests/libqos/malloc-generic.c | 39 --
tests/libqos/malloc-generic.h | 21 -
tests/libqos/malloc-pc.c | 18 +-
tests/libqos/malloc-pc.h | 4 +-
tests/libqos/malloc-spapr.c | 19 +-
tests/libqos/malloc-spapr.h | 4 +-
tests/libqos/malloc.c | 42 +-
tests/libqos/malloc.h | 21 +-
tests/libqos/pci-pc.c | 86 ++--
tests/libqos/pci-pc.h | 29 +-
tests/libqos/pci-spapr.c | 119 +++--
tests/libqos/pci-spapr.h | 26 +-
tests/libqos/pci.c | 46 +-
tests/libqos/pci.h | 16 +
tests/libqos/ppc64_pseries-machine.c | 111 +++++
tests/libqos/qgraph.c | 753 +++++++++++++++++++++++++++++
tests/libqos/qgraph.h | 575 ++++++++++++++++++++++
tests/libqos/qgraph_internal.h | 257 ++++++++++
tests/libqos/sdhci.c | 163 +++++++
tests/libqos/sdhci.h | 70 +++
tests/libqos/tpci200.c | 65 +++
tests/libqos/virtio-9p.c | 173 +++++++
tests/libqos/virtio-9p.h | 42 ++
tests/libqos/virtio-balloon.c | 113 +++++
tests/libqos/virtio-balloon.h | 39 ++
tests/libqos/virtio-blk.c | 124 +++++
tests/libqos/virtio-blk.h | 40 ++
tests/libqos/virtio-mmio.c | 116 +++--
tests/libqos/virtio-mmio.h | 6 +-
tests/libqos/virtio-net.c | 195 ++++++++
tests/libqos/virtio-net.h | 41 ++
tests/libqos/virtio-pci.c | 187 ++++---
tests/libqos/virtio-pci.h | 18 +-
tests/libqos/virtio-rng.c | 110 +++++
tests/libqos/virtio-rng.h | 39 ++
tests/libqos/virtio-scsi.c | 117 +++++
tests/libqos/virtio-scsi.h | 39 ++
tests/libqos/virtio-serial.c | 110 +++++
tests/libqos/virtio-serial.h | 39 ++
tests/libqos/virtio.c | 24 +-
tests/libqos/virtio.h | 11 +-
tests/libqos/x86_64_pc-machine.c | 114 +++++
tests/libqtest.h | 6 +
tests/megasas-test.c | 80 +--
tests/ne2000-test.c | 46 +-
tests/nvme-test.c | 78 +--
tests/pci-test.c | 25 +
tests/pcnet-test.c | 46 +-
tests/q35-test.c | 4 +-
tests/qos-test.c | 445 +++++++++++++++++
tests/rtas-test.c | 2 +-
tests/rtl8139-test.c | 2 +-
tests/sdhci-test.c | 185 +------
tests/spapr-phb-test.c | 32 +-
tests/tco-test.c | 2 +-
tests/test-char.c | 102 +++-
tests/test-qgraph.c | 434 +++++++++++++++++
tests/tpci200-test.c | 31 --
tests/usb-hcd-ehci-test.c | 2 +-
tests/usb-hcd-ohci-test.c | 54 ++-
tests/vhost-user-test.c | 385 ++++++---------
tests/virtio-9p-test.c | 220 +++------
tests/virtio-balloon-test.c | 33 --
tests/virtio-blk-test.c | 471 +++++++-----------
tests/virtio-console-test.c | 38 --
tests/virtio-net-test.c | 226 +++------
tests/virtio-rng-test.c | 27 +-
tests/virtio-scsi-test.c | 145 +++---
tests/virtio-serial-test.c | 27 +-
tests/virtio-test.c | 25 +
tests/vmxnet3-test.c | 46 +-
98 files changed, 6885 insertions(+), 2219 deletions(-)
create mode 100644 tests/libqos/aarch64-xlnx-zcu102-machine.c
create mode 100644 tests/libqos/arm-raspi2-machine.c
create mode 100644 tests/libqos/arm-sabrelite-machine.c
create mode 100644 tests/libqos/arm-smdkc210-machine.c
create mode 100644 tests/libqos/arm-virt-machine.c
create mode 100644 tests/libqos/arm-xilinx-zynq-a9-machine.c
create mode 100644 tests/libqos/e1000e.c
create mode 100644 tests/libqos/e1000e.h
delete mode 100644 tests/libqos/malloc-generic.c
delete mode 100644 tests/libqos/malloc-generic.h
create mode 100644 tests/libqos/ppc64_pseries-machine.c
create mode 100644 tests/libqos/qgraph.c
create mode 100644 tests/libqos/qgraph.h
create mode 100644 tests/libqos/qgraph_internal.h
create mode 100644 tests/libqos/sdhci.c
create mode 100644 tests/libqos/sdhci.h
create mode 100644 tests/libqos/tpci200.c
create mode 100644 tests/libqos/virtio-9p.c
create mode 100644 tests/libqos/virtio-9p.h
create mode 100644 tests/libqos/virtio-balloon.c
create mode 100644 tests/libqos/virtio-balloon.h
create mode 100644 tests/libqos/virtio-blk.c
create mode 100644 tests/libqos/virtio-blk.h
create mode 100644 tests/libqos/virtio-net.c
create mode 100644 tests/libqos/virtio-net.h
create mode 100644 tests/libqos/virtio-rng.c
create mode 100644 tests/libqos/virtio-rng.h
create mode 100644 tests/libqos/virtio-scsi.c
create mode 100644 tests/libqos/virtio-scsi.h
create mode 100644 tests/libqos/virtio-serial.c
create mode 100644 tests/libqos/virtio-serial.h
create mode 100644 tests/libqos/x86_64_pc-machine.c
create mode 100644 tests/pci-test.c
create mode 100644 tests/qos-test.c
create mode 100644 tests/test-qgraph.c
delete mode 100644 tests/tpci200-test.c
delete mode 100644 tests/virtio-balloon-test.c
delete mode 100644 tests/virtio-console-test.c
create mode 100644 tests/virtio-test.c
--
1.8.3.1
next reply other threads:[~2019-03-07 17:30 UTC|newest]
Thread overview: 59+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-07 17:29 Paolo Bonzini [this message]
2019-03-07 17:29 ` [Qemu-devel] [PULL 01/57] chardev-socket: do not blindly reset handlers when switching GMainContext Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 02/57] tests/libqos: introduce virtio_start_device Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 03/57] tests/libqos: rename qpci_init_pc and qpci_init_spapr functions Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 04/57] tests/libqos: embed allocators instead of malloc-ing them separately Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 05/57] tests: qgraph API for the qtest driver framework Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 06/57] tests/libqos: pci-pc driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 07/57] tests/libqos: x86_64/pc machine node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 08/57] tests/libqos: sdhci driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 09/57] tests/libqos: arm/raspi2 machine node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 10/57] tests/libqos: arm/smdkc210 " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 11/57] tests/libqos: arm/sabrelite " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 12/57] tests/libqos: arm/xilinx-zynq-a9 " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 13/57] tests/libqos: aarch64/xlnx-zcu102 " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 14/57] qos-test: sdhci test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 15/57] tests/qgraph: add generic PCI testcases Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 16/57] tests/libqos: pci-spapr driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 17/57] tests/qgraph: ppc64/pseries machine node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 18/57] tests/libqos: has_buggy_msi flag Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 19/57] tests/libqos: e1000e driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 20/57] qos-test: e1000e test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 21/57] tests/libqos: virtio-pci driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 22/57] tests/libqos: remove global_qtest from virtio endianness checks Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 23/57] tests/libqos: virtio-mmio driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 24/57] tests/libqos: arm/virt machine node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 25/57] tests/qgraph: add generic virtio testcases Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 26/57] tests/libqos: virtio-serial driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 27/57] qos-test: virtio-console and virtio-serial test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 28/57] tests/libqos: virtio-9p driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 29/57] qos-test: virtio-9p test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 30/57] tests/libqos: virtio-balloon driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 31/57] tests/qgraph: remove virtio-balloon-test Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 32/57] tests/libqos: virtio-rng driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 33/57] qos-test: virtio-rng test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 34/57] tests/libqos: virtio-blk driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 35/57] qos-test: virtio-blk test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 36/57] tests/libqos: virtio-net driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 37/57] qos-test: virtio-net test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 38/57] tests/libqos: support multiqueue for virtio-net Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 39/57] vhost-user-test: always use 256 MiB of guest memory Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 40/57] qos-test: vhost-user test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 41/57] tests/libqos: virtio-scsi driver and interface nodes Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 42/57] qos-test: virtio-scsi test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 43/57] tests/libqos: remove pre-qgraph QVirtioPCIDevice API Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 44/57] tests: move virtio entirely to qos-test Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 45/57] qos-test: ac97 test node Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 46/57] qos-test: tpci200 " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 47/57] qos-test: ipoctal232 " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 48/57] qos-test: ne2k_pci " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 49/57] qos-test: nvme " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 50/57] qos-test: pcnet " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 51/57] qos-test: spapr-phb " Paolo Bonzini
2019-03-07 17:29 ` [Qemu-devel] [PULL 52/57] qos-test: usb-hcd-ohci " Paolo Bonzini
2019-03-07 17:30 ` [Qemu-devel] [PULL 53/57] qos-test: vmxnet3 " Paolo Bonzini
2019-03-07 17:30 ` [Qemu-devel] [PULL 54/57] qos-test: es1370 " Paolo Bonzini
2019-03-07 17:30 ` [Qemu-devel] [PULL 55/57] qos-test: eepro100 " Paolo Bonzini
2019-03-07 17:30 ` [Qemu-devel] [PULL 56/57] qos-test: e1000 " Paolo Bonzini
2019-03-07 17:30 ` [Qemu-devel] [PULL 57/57] qos-test: megasas " Paolo Bonzini
2019-03-08 15:16 ` [Qemu-devel] [PULL 00/57] qgraph merge Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1551979804-6060-1-git-send-email-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=lviver@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).