Re: [Qemu-devel] [PATCH 10/13] pci: export pci_user functions for use by other drivers

2012-05-14 Thread Bjorn Helgaas
> diff --git a/include/linux/pci.h b/include/linux/pci.h > index dc25da3..b437225 100644 > --- a/include/linux/pci.h > +++ b/include/linux/pci.h > @@ -770,6 +770,14 @@ static inline int pci_write_config_dword(const struct > pci_dev *dev, int where, >        return pci_bus_write_config_dword(dev->b

[Qemu-devel] [PATCH 10/13] pci: export pci_user functions for use by other drivers

2012-05-11 Thread Alex Williamson
VFIO PCI support will make use of these for user initiated PCI config accesses. Signed-off-by: Alex Williamson --- drivers/pci/access.c |6 -- drivers/pci/pci.h|7 --- include/linux/pci.h |8 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/drive