qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

virtio: define virtio_pci_cfg_cap in header.

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 <mst@redhat.com>

+6
+6
include/standard-headers/linux/virtio_pci.h
··· 157 157 uint32_t queue_used_hi; /* read-write */ 158 158 }; 159 159 160 + /* Fields in VIRTIO_PCI_CAP_PCI_CFG: */ 161 + struct virtio_pci_cfg_cap { 162 + struct virtio_pci_cap cap; 163 + uint8_t pci_cfg_data[4]; /* Data for BAR access. */ 164 + }; 165 + 160 166 /* Macro versions of offsets for the Old Timers! */ 161 167 #define VIRTIO_PCI_CAP_VNDR 0 162 168 #define VIRTIO_PCI_CAP_NEXT 1