From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39360) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCSB9-0005zi-A9 for qemu-devel@nongnu.org; Tue, 07 Jul 2015 08:40:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZCSB7-0004Gr-Dq for qemu-devel@nongnu.org; Tue, 07 Jul 2015 08:40:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36541) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCSB6-0004F3-Lq for qemu-devel@nongnu.org; Tue, 07 Jul 2015 08:40:49 -0400 Date: Tue, 7 Jul 2015 15:40:46 +0300 From: "Michael S. Tsirkin" Message-ID: <1436272760-29611-14-git-send-email-mst@redhat.com> References: <1436272760-29611-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1436272760-29611-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 13/13] virtio: define virtio_pci_cfg_cap in header. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell Update virtio pci header from linux-next virtio maintainer tree. We already have VIRTIO_PCI_CAP_PCI_CFG, let's define the structure that goes with it. Signed-off-by: Michael S. Tsirkin --- include/standard-headers/linux/virtio_pci.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/standard-headers/linux/virtio_pci.h b/include/standard-headers/linux/virtio_pci.h index ecdc133..9262acd 100644 --- a/include/standard-headers/linux/virtio_pci.h +++ b/include/standard-headers/linux/virtio_pci.h @@ -157,6 +157,12 @@ struct virtio_pci_common_cfg { uint32_t queue_used_hi; /* read-write */ }; +/* Fields in VIRTIO_PCI_CAP_PCI_CFG: */ +struct virtio_pci_cfg_cap { + struct virtio_pci_cap cap; + uint8_t pci_cfg_data[4]; /* Data for BAR access. */ +}; + /* Macro versions of offsets for the Old Timers! */ #define VIRTIO_PCI_CAP_VNDR 0 #define VIRTIO_PCI_CAP_NEXT 1 -- MST