diff options
author | Philippe Mathieu-Daudé | 2020-10-23 17:19:22 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-12-10 18:15:02 +0100 |
commit | c27f498237bdbdf956e815de77bf63b003355f7e (patch) | |
tree | 4021faa1e4eb7472bfd95ceb5289adf3ca7237c5 /include/hw/pci | |
parent | pci: Let pci_dma_rw() propagate MemTxResult (diff) | |
download | qemu-c27f498237bdbdf956e815de77bf63b003355f7e.tar.gz qemu-c27f498237bdbdf956e815de77bf63b003355f7e.tar.xz qemu-c27f498237bdbdf956e815de77bf63b003355f7e.zip |
pci: Let pci_dma_read() propagate MemTxResult
pci_dma_rw() returns a MemTxResult type.
Do not discard it, return it to the caller.
Reviewed-by: Li Qiang <liq3ea@gmail.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20201023151923.3243652-10-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/pci')
-rw-r--r-- | include/hw/pci/pci.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h index 37ffd73708..a2de236eeb 100644 --- a/include/hw/pci/pci.h +++ b/include/hw/pci/pci.h @@ -801,8 +801,20 @@ static inline MemTxResult pci_dma_rw(PCIDevice *dev, dma_addr_t addr, return dma_memory_rw(pci_get_address_space(dev), addr, buf, len, dir); } -static inline int pci_dma_read(PCIDevice *dev, dma_addr_t addr, - void *buf, dma_addr_t len) +/** + * pci_dma_read: Read from an address space from PCI device. + * + * Return a MemTxResult indicating whether the operation succeeded + * or failed (eg unassigned memory, device rejected the transaction, + * IOMMU fault). Called within RCU critical section. + * + * @dev: #PCIDevice doing the memory access + * @addr: address within the #PCIDevice address space + * @buf: buffer with the data transferred + * @len: length of the data transferred + */ +static inline MemTxResult pci_dma_read(PCIDevice *dev, dma_addr_t addr, + void *buf, dma_addr_t len) { return pci_dma_rw(dev, addr, buf, len, DMA_DIRECTION_TO_DEVICE); } |