diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2015-04-26 16:49:24 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2015-04-26 16:49:24 +0100 |
| commit | 5c9eb0286c819c1836220a32f2e1a7b5004ac79a (patch) | |
| tree | 2edd15dfc1b1a4c6b6b954559f273d4212e1ca26 /kvm-all.c | |
| parent | f25a49e0057bbfcc2b1111f60785d919b6ddaeea (diff) | |
| download | focaccia-qemu-5c9eb0286c819c1836220a32f2e1a7b5004ac79a.tar.gz focaccia-qemu-5c9eb0286c819c1836220a32f2e1a7b5004ac79a.zip | |
exec.c: Make address_space_rw take transaction attributes
Make address_space_rw take transaction attributes, rather than always using the 'unspecified' attributes. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'kvm-all.c')
| -rw-r--r-- | kvm-all.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kvm-all.c b/kvm-all.c index dd44f8c753..4ec153df93 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -1667,7 +1667,8 @@ static void kvm_handle_io(uint16_t port, void *data, int direction, int size, uint8_t *ptr = data; for (i = 0; i < count; i++) { - address_space_rw(&address_space_io, port, ptr, size, + address_space_rw(&address_space_io, port, MEMTXATTRS_UNSPECIFIED, + ptr, size, direction == KVM_EXIT_IO_OUT); ptr += size; } |