mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-29 02:30:29 -07:00
softmmu/physmem.c: Keep transaction attribute in address_space_map()
The follow-up transactions may use the data in the attribution, so keep the value of attribution from the function parameter just as flatview_translate() above. Signed-off-by: Fea.Wang <fea.wang@sifive.com> Cc: qemu-stable@nongnu.org Fixes:f26404fbee("Make address_space_map() take a MemTxAttrs argument") Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Link: https://lore.kernel.org/r/20240912070404.2993976-2-fea.wang@sifive.com Signed-off-by: Peter Xu <peterx@redhat.com> (cherry picked from commitd8d5ca4004) Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
659eeb16b3
commit
97fa3d7fcc
1 changed files with 1 additions and 1 deletions
|
|
@ -3274,7 +3274,7 @@ void *address_space_map(AddressSpace *as,
|
|||
bounce->len = l;
|
||||
|
||||
if (!is_write) {
|
||||
flatview_read(fv, addr, MEMTXATTRS_UNSPECIFIED,
|
||||
flatview_read(fv, addr, attrs,
|
||||
bounce->buffer, l);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue