diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2018-05-31 14:50:53 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2018-05-31 16:32:35 +0100 |
| commit | 7446eb07c1da660c38bf075555f2d69b84caf481 (patch) | |
| tree | 02c0f2f75159cf85f6914d2b1b6cc2ea36762c6c /exec.c | |
| parent | efa99a2ff8edf39f48777326c2debdb196f07c41 (diff) | |
| download | focaccia-qemu-7446eb07c1da660c38bf075555f2d69b84caf481.tar.gz focaccia-qemu-7446eb07c1da660c38bf075555f2d69b84caf481.zip | |
Make address_space_get_iotlb_entry() take a MemTxAttrs argument
As part of plumbing MemTxAttrs down to the IOMMU translate method, add MemTxAttrs as an argument to address_space_get_iotlb_entry(). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20180521140402.23318-12-peter.maydell@linaro.org
Diffstat (limited to 'exec.c')
| -rw-r--r-- | exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.c b/exec.c index d54a56fefa..57c64c6c13 100644 --- a/exec.c +++ b/exec.c @@ -582,7 +582,7 @@ static MemoryRegionSection flatview_do_translate(FlatView *fv, /* Called from RCU critical section */ IOMMUTLBEntry address_space_get_iotlb_entry(AddressSpace *as, hwaddr addr, - bool is_write) + bool is_write, MemTxAttrs attrs) { MemoryRegionSection section; hwaddr xlat, page_mask; |