56 lines
2.0 KiB
Diff
56 lines
2.0 KiB
Diff
|
From 0dd4be411e35f00d006d89a15d9161f5d8783c1d Mon Sep 17 00:00:00 2001
|
||
|
From: Emanuele Giuseppe Esposito <eesposit@redhat.com>
|
||
|
Date: Thu, 9 Mar 2023 08:24:36 -0500
|
||
|
Subject: [PATCH 10/12] physmem: add missing memory barrier
|
||
|
|
||
|
RH-Author: Emanuele Giuseppe Esposito <eesposit@redhat.com>
|
||
|
RH-MergeRequest: 158: qatomic: add smp_mb__before/after_rmw()
|
||
|
RH-Bugzilla: 2175660
|
||
|
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
||
|
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
||
|
RH-Acked-by: David Hildenbrand <david@redhat.com>
|
||
|
RH-Acked-by: Eric Auger <eric.auger@redhat.com>
|
||
|
RH-Commit: [7/9] ee4875cb8c564f0510e48b00a5d95c0e6ea6301b (eesposit/qemu-kvm)
|
||
|
|
||
|
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2175660
|
||
|
|
||
|
commit 33828ca11da08436e1b32f3e79dabce3061a0427
|
||
|
Author: Paolo Bonzini <pbonzini@redhat.com>
|
||
|
Date: Fri Mar 3 14:36:32 2023 +0100
|
||
|
|
||
|
physmem: add missing memory barrier
|
||
|
|
||
|
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
|
||
|
Reviewed-by: David Hildenbrand <david@redhat.com>
|
||
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
||
|
|
||
|
Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
|
||
|
---
|
||
|
softmmu/physmem.c | 3 +++
|
||
|
1 file changed, 3 insertions(+)
|
||
|
|
||
|
diff --git a/softmmu/physmem.c b/softmmu/physmem.c
|
||
|
index 1b606a3002..772c9896cd 100644
|
||
|
--- a/softmmu/physmem.c
|
||
|
+++ b/softmmu/physmem.c
|
||
|
@@ -3117,6 +3117,8 @@ void cpu_register_map_client(QEMUBH *bh)
|
||
|
qemu_mutex_lock(&map_client_list_lock);
|
||
|
client->bh = bh;
|
||
|
QLIST_INSERT_HEAD(&map_client_list, client, link);
|
||
|
+ /* Write map_client_list before reading in_use. */
|
||
|
+ smp_mb();
|
||
|
if (!qatomic_read(&bounce.in_use)) {
|
||
|
cpu_notify_map_clients_locked();
|
||
|
}
|
||
|
@@ -3309,6 +3311,7 @@ void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len,
|
||
|
qemu_vfree(bounce.buffer);
|
||
|
bounce.buffer = NULL;
|
||
|
memory_region_unref(bounce.mr);
|
||
|
+ /* Clear in_use before reading map_client_list. */
|
||
|
qatomic_mb_set(&bounce.in_use, false);
|
||
|
cpu_notify_map_clients();
|
||
|
}
|
||
|
--
|
||
|
2.39.1
|
||
|
|