projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a8a98a
)
postcopy-ram: do not use qatomic_mb_read
author
Paolo Bonzini
<pbonzini@redhat.com>
Fri, 3 Mar 2023 10:15:28 +0000
(11:15 +0100)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Thu, 20 Apr 2023 09:17:35 +0000
(11:17 +0200)
It does not even pair with a qatomic_mb_set(), so it is clearer to use
load-acquire in this case; they are synonyms.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
migration/postcopy-ram.c
patch
|
blob
|
history
diff --git
a/migration/postcopy-ram.c
b/migration/postcopy-ram.c
index 93f39f8e06b87161b9963e4bdebc1db22246e325..7d24dac39728c617509befc03ec3bd3f116296ed 100644
(file)
--- a/
migration/postcopy-ram.c
+++ b/
migration/postcopy-ram.c
@@
-1500,7
+1500,7
@@
static PostcopyState incoming_postcopy_state;
PostcopyState postcopy_state_get(void)
{
- return qatomic_
mb_read
(&incoming_postcopy_state);
+ return qatomic_
load_acquire
(&incoming_postcopy_state);
}
/* Set the state and return the old state */