From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753267AbbAUPAR (ORCPT ); Wed, 21 Jan 2015 10:00:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53169 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751777AbbAUPAM (ORCPT ); Wed, 21 Jan 2015 10:00:12 -0500 Date: Wed, 21 Jan 2015 17:00:03 +0200 From: "Michael S. Tsirkin" To: linux-kernel@vger.kernel.org Cc: Rusty Russell , virtualization@lists.linux-foundation.org, Gerd Hoffmann Subject: [PATCH pre-squash 00/14] virtio 1.0: virtio-pci fixup Message-ID: <1421852375-22604-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Mutt-Fcc: =sent Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This is just the full patchset reposted with fixups in correct order, before squashing them. I also tweaked commit log for patch "virtio_pci: modern driver" I also included Gerd's tag: Tested-by: Gerd Hoffmann You can find it all before the rebase -i --autosquash in my tree: git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git virtio-next or same thing after rebase -i --autosquash: git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git vhost-next Hope it helps! Michael S. Tsirkin (12): virtio_pci: move probe/remove code to common fixup! virtio-pci: define layout for virtio 1.0 virtio_pci: modern driver fixup! virtio_pci: modern driver fixup! virtio_pci: modern driver fixup! virtio_pci: macros for PCI layout offsets virtio_pci_modern: reduce number of mappings virtio_pci_modern: support devices with no config virtio_pci: add an option to disable legacy driver virtio_pci: add module param to force legacy mode fixup! virtio_pci: add module param to force legacy mode virtio_pci_modern: drop an unused function Rusty Russell (2): virtio-pci: define layout for virtio 1.0 virtio_pci: macros for PCI layout offsets drivers/virtio/virtio_pci_common.h | 43 ++- include/uapi/linux/virtio_pci.h | 89 +++++ drivers/virtio/virtio_pci_common.c | 94 ++++- drivers/virtio/virtio_pci_legacy.c | 75 +--- drivers/virtio/virtio_pci_modern.c | 695 +++++++++++++++++++++++++++++++++++++ drivers/virtio/Kconfig | 19 + drivers/virtio/Makefile | 3 +- 7 files changed, 942 insertions(+), 76 deletions(-) create mode 100644 drivers/virtio/virtio_pci_modern.c -- MST