From: "Michael S. Tsirkin" <mst@redhat.com>
To: Juan Quintela <quintela@redhat.com>
Cc: qemu-devel@nongnu.org, lvivier@redhat.com, dgilbert@redhat.com,
peterx@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2 00/16] Virtio devices split from virtio-pci
Date: Wed, 28 Nov 2018 10:16:44 -0500 [thread overview]
Message-ID: <20181128101603-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <874lc13arc.fsf@trasno.org>
On Wed, Nov 28, 2018 at 08:46:15AM +0100, Juan Quintela wrote:
> "Michael S. Tsirkin" <mst@redhat.com> wrote:
> > On Mon, Nov 26, 2018 at 08:59:53PM +0100, Juan Quintela wrote:
> >> Hi
> >>
> >> V2:
> >>
> >> - Rebase on top of master
> >>
> >> Please review.
> >>
> >> Later, Juan.
> >
> > And just making sure the point is so that one
> > can disable virtio-pci and still build virtio?
> >
> > And the point of that is mostly as a cleanup on
> > generic principles, right? Or is there a project that
> > actually wants to do it?
>
> This allows "make check" to work with them disabled. Without this
> changes, introspection fails, because we have the "name" (kind of)
> "virtio-pci-blk", but not the real virtio device, so it tries to use it
> while it is not there. See the equivalent change for virtio-ccw-*.
>
> Thanks, Juan.
>
> PD. Without this change, you can build a qemu with virtio devices
> disabled (i.e. not compiled in), but it fails "make check". With
> the changes, it also works for "make check".
And just to complete the picture the point of that is I guess enabling
testing of random configs?
>
> >
> >>
> >> [v1]
> >> >From previous verision (in the middle of make check tests):
> >> - split also the bits of virtio-pci.h (mst suggestion)
> >> - add gpu, crypt and gpg bits
> >> - more cleanups
> >> - fix all the copyrights (the ones not changed have been there
> >> foverever)
> >> - be consistent with naming, vhost-* or virtio-*
> >>
> >> Please review, Juan.
> >>
> >> Juan Quintela (16):
> >> virtio: split vhost vsock bits from virtio-pci
> >> virtio: split virtio input host bits from virtio-pci
> >> virtio: split virtio input bits from virtio-pci
> >> virtio: split virtio rng bits from virtio-pci
> >> virtio: split virtio balloon bits from virtio-pci
> >> virtio: split virtio 9p bits from virtio-pci
> >> virtio: split vhost user blk bits from virtio-pci
> >> virtio: split vhost user scsi bits from virtio-pci
> >> virtio: split vhost scsi bits from virtio-pci
> >> virtio: split virtio scsi bits from virtio-pci
> >> virtio: split virtio blk bits rom virtio-pci
> >> virtio: split virtio net bits rom virtio-pci
> >> virtio: split virtio serial bits rom virtio-pci
> >> virtio: split virtio gpu bits rom virtio-pci.h
> >> virtio: split virtio crypto bits rom virtio-pci.h
> >> virtio: virtio 9p really requires CONFIG_VIRTFS to work
> >>
> >> default-configs/virtio.mak | 3 +-
> >> hw/display/virtio-gpu-pci.c | 14 +
> >> hw/display/virtio-vga.c | 1 +
> >> hw/virtio/Makefile.objs | 14 +-
> >> hw/virtio/vhost-scsi-pci.c | 95 ++++
> >> hw/virtio/vhost-user-blk-pci.c | 101 ++++
> >> hw/virtio/vhost-user-scsi-pci.c | 101 ++++
> >> hw/virtio/vhost-vsock-pci.c | 82 ++++
> >> hw/virtio/virtio-9p-pci.c | 86 ++++
> >> hw/virtio/virtio-balloon-pci.c | 94 ++++
> >> hw/virtio/virtio-blk-pci.c | 97 ++++
> >> hw/virtio/virtio-crypto-pci.c | 14 +
> >> hw/virtio/virtio-input-host-pci.c | 45 ++
> >> hw/virtio/virtio-input-pci.c | 154 ++++++
> >> hw/virtio/virtio-net-pci.c | 96 ++++
> >> hw/virtio/virtio-pci.c | 783 ------------------------------
> >> hw/virtio/virtio-pci.h | 234 ---------
> >> hw/virtio/virtio-rng-pci.c | 86 ++++
> >> hw/virtio/virtio-scsi-pci.c | 106 ++++
> >> hw/virtio/virtio-serial-pci.c | 112 +++++
> >> tests/Makefile.include | 18 +-
> >> 21 files changed, 1308 insertions(+), 1028 deletions(-)
> >> create mode 100644 hw/virtio/vhost-scsi-pci.c
> >> create mode 100644 hw/virtio/vhost-user-blk-pci.c
> >> create mode 100644 hw/virtio/vhost-user-scsi-pci.c
> >> create mode 100644 hw/virtio/vhost-vsock-pci.c
> >> create mode 100644 hw/virtio/virtio-9p-pci.c
> >> create mode 100644 hw/virtio/virtio-balloon-pci.c
> >> create mode 100644 hw/virtio/virtio-blk-pci.c
> >> create mode 100644 hw/virtio/virtio-input-host-pci.c
> >> create mode 100644 hw/virtio/virtio-input-pci.c
> >> create mode 100644 hw/virtio/virtio-net-pci.c
> >> create mode 100644 hw/virtio/virtio-rng-pci.c
> >> create mode 100644 hw/virtio/virtio-scsi-pci.c
> >> create mode 100644 hw/virtio/virtio-serial-pci.c
> >>
> >> --
> >> 2.19.1
> >>
next prev parent reply other threads:[~2018-11-28 15:16 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-26 19:59 [Qemu-devel] [PATCH v2 00/16] Virtio devices split from virtio-pci Juan Quintela
2018-11-26 19:59 ` [Qemu-devel] [PATCH v2 01/16] virtio: split vhost vsock bits " Juan Quintela
2018-11-28 17:33 ` Laurent Vivier
2018-11-29 6:30 ` Thomas Huth
2018-11-29 6:32 ` Thomas Huth
2018-11-30 8:56 ` Juan Quintela
2018-11-26 19:59 ` [Qemu-devel] [PATCH v2 02/16] virtio: split virtio input host " Juan Quintela
2018-11-28 18:00 ` Laurent Vivier
2018-12-12 17:43 ` Juan Quintela
2018-11-28 18:21 ` Laurent Vivier
2018-11-26 19:59 ` [Qemu-devel] [PATCH v2 03/16] virtio: split virtio input " Juan Quintela
2018-11-28 18:20 ` Laurent Vivier
2018-11-26 19:59 ` [Qemu-devel] [PATCH v2 04/16] virtio: split virtio rng " Juan Quintela
2018-11-28 20:06 ` Laurent Vivier
2018-12-12 17:43 ` Juan Quintela
2018-11-26 19:59 ` [Qemu-devel] [PATCH v2 05/16] virtio: split virtio balloon " Juan Quintela
2018-11-28 20:09 ` Laurent Vivier
2018-11-26 19:59 ` [Qemu-devel] [PATCH v2 06/16] virtio: split virtio 9p " Juan Quintela
2018-11-28 20:15 ` Laurent Vivier
2018-12-12 17:44 ` Juan Quintela
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 07/16] virtio: split vhost user blk " Juan Quintela
2018-11-28 20:21 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 08/16] virtio: split vhost user scsi " Juan Quintela
2018-11-28 20:23 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 09/16] virtio: split vhost " Juan Quintela
2018-11-28 20:25 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 10/16] virtio: split virtio " Juan Quintela
2018-11-28 20:28 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 11/16] virtio: split virtio blk bits rom virtio-pci Juan Quintela
2018-11-28 20:31 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 12/16] virtio: split virtio net " Juan Quintela
2018-11-28 20:33 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 13/16] virtio: split virtio serial " Juan Quintela
2018-11-28 20:36 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 14/16] virtio: split virtio gpu bits rom virtio-pci.h Juan Quintela
2018-11-28 20:39 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 15/16] virtio: split virtio crypto " Juan Quintela
2018-11-28 20:41 ` Laurent Vivier
2018-11-26 20:00 ` [Qemu-devel] [PATCH v2 16/16] virtio: virtio 9p really requires CONFIG_VIRTFS to work Juan Quintela
2018-11-28 20:48 ` Laurent Vivier
2018-12-13 11:44 ` Juan Quintela
2018-11-27 11:38 ` [Qemu-devel] [PATCH v2 00/16] Virtio devices split from virtio-pci Dr. David Alan Gilbert
2018-11-28 3:13 ` Michael S. Tsirkin
2018-11-28 7:46 ` Juan Quintela
2018-11-28 15:16 ` Michael S. Tsirkin [this message]
2018-11-29 13:46 ` Juan Quintela
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=20181128101603-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=dgilbert@redhat.com \
--cc=lvivier@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@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).