mirror of
https://github.com/qemu/qemu.git
synced 2025-08-07 23:16:19 +00:00
dma: Let dma_memory_write() propagate MemTxResult
dma_memory_rw_relaxed() returns a MemTxResult type. Do not discard it, return it to the caller. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Li Qiang <liq3ea@gmail.com> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20201023151923.3243652-8-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
b1f51303af
commit
77c71d1d74
@ -96,8 +96,10 @@ static inline MemTxResult dma_memory_read_relaxed(AddressSpace *as,
|
|||||||
return dma_memory_rw_relaxed(as, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
|
return dma_memory_rw_relaxed(as, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int dma_memory_write_relaxed(AddressSpace *as, dma_addr_t addr,
|
static inline MemTxResult dma_memory_write_relaxed(AddressSpace *as,
|
||||||
const void *buf, dma_addr_t len)
|
dma_addr_t addr,
|
||||||
|
const void *buf,
|
||||||
|
dma_addr_t len)
|
||||||
{
|
{
|
||||||
return dma_memory_rw_relaxed(as, addr, (void *)buf, len,
|
return dma_memory_rw_relaxed(as, addr, (void *)buf, len,
|
||||||
DMA_DIRECTION_FROM_DEVICE);
|
DMA_DIRECTION_FROM_DEVICE);
|
||||||
@ -143,7 +145,19 @@ static inline MemTxResult dma_memory_read(AddressSpace *as, dma_addr_t addr,
|
|||||||
return dma_memory_rw(as, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
|
return dma_memory_rw(as, addr, buf, len, DMA_DIRECTION_TO_DEVICE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int dma_memory_write(AddressSpace *as, dma_addr_t addr,
|
/**
|
||||||
|
* address_space_write: Write to address space from DMA controller.
|
||||||
|
*
|
||||||
|
* Return a MemTxResult indicating whether the operation succeeded
|
||||||
|
* or failed (eg unassigned memory, device rejected the transaction,
|
||||||
|
* IOMMU fault).
|
||||||
|
*
|
||||||
|
* @as: #AddressSpace to be accessed
|
||||||
|
* @addr: address within that address space
|
||||||
|
* @buf: buffer with the data transferred
|
||||||
|
* @len: the number of bytes to write
|
||||||
|
*/
|
||||||
|
static inline MemTxResult dma_memory_write(AddressSpace *as, dma_addr_t addr,
|
||||||
const void *buf, dma_addr_t len)
|
const void *buf, dma_addr_t len)
|
||||||
{
|
{
|
||||||
return dma_memory_rw(as, addr, (void *)buf, len,
|
return dma_memory_rw(as, addr, (void *)buf, len,
|
||||||
|
Loading…
Reference in New Issue
Block a user