From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35507) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y5zey-0003k0-Kz for qemu-devel@nongnu.org; Tue, 30 Dec 2014 11:28:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y5zeu-0002Y4-7z for qemu-devel@nongnu.org; Tue, 30 Dec 2014 11:28:40 -0500 Received: from mx1.redhat.com ([209.132.183.28]:41803) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y5zeu-0002Xp-1O for qemu-devel@nongnu.org; Tue, 30 Dec 2014 11:28:36 -0500 Date: Tue, 30 Dec 2014 18:28:29 +0200 From: "Michael S. Tsirkin" Message-ID: <1419956898-25297-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH RFC 0/3] virtio-pci: towards virtio 1.0 host support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: cornelia.huck@de.ibm.com, Rusty Russell Partial implementation for virtio 1.0. Some bits are still missing, but this is already somewhat useful for driver development. Michael S. Tsirkin (3): linux-headers: add virtio_pci virtio: misc fixes, include linux header virtio-pci: initial virtio 1.0 support hw/virtio/virtio-pci.h | 16 ++ linux-headers/linux/virtio_pci.h | 194 ++++++++++++++++++++ hw/net/virtio-net.c | 2 +- hw/virtio/virtio-pci.c | 378 +++++++++++++++++++++++++++++++++++++++ hw/virtio/virtio.c | 13 +- 5 files changed, 598 insertions(+), 5 deletions(-) create mode 100644 linux-headers/linux/virtio_pci.h -- MST