diff options
author | Fam Zheng <famz@redhat.com> | 2015-03-16 17:03:33 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-04-27 18:24:17 +0200 |
commit | c2cba0ffe495b60c4cc58080281e99c7a6580d4b (patch) | |
tree | 37d92a455884260149a2b832892de849a7037aa2 /exec.c | |
parent | e3a0abfda71db1fa83be894dcff7c4871b36cc8d (diff) | |
download | qemu-c2cba0ffe495b60c4cc58080281e99c7a6580d4b.tar.gz qemu-c2cba0ffe495b60c4cc58080281e99c7a6580d4b.tar.bz2 qemu-c2cba0ffe495b60c4cc58080281e99c7a6580d4b.zip |
exec: Atomic access to bounce buffer
There could be a race condition when two processes call
address_space_map concurrently and both want to use the bounce buffer.
Add an in_use flag in BounceBuffer to sync it.
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-Id: <1426496617-10702-2-git-send-email-famz@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2482,6 +2482,7 @@ typedef struct { void *buffer; hwaddr addr; hwaddr len; + bool in_use; } BounceBuffer; static BounceBuffer bounce; @@ -2570,7 +2571,7 @@ void *address_space_map(AddressSpace *as, l = len; mr = address_space_translate(as, addr, &xlat, &l, is_write); if (!memory_access_is_direct(mr, is_write)) { - if (bounce.buffer) { + if (atomic_xchg(&bounce.in_use, true)) { return NULL; } /* Avoid unbounded allocations */ @@ -2640,6 +2641,7 @@ void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len, qemu_vfree(bounce.buffer); bounce.buffer = NULL; memory_region_unref(bounce.mr); + atomic_mb_set(&bounce.in_use, false); cpu_notify_map_clients(); } |