block: access io_plugged with atomic ops
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20170605123908.18777-7-pbonzini@redhat.com> Signed-off-by: Fam Zheng <famz@redhat.com>
This commit is contained in:
parent
e2a6ae7fe5
commit
850d54a2a9
@ -2645,7 +2645,7 @@ void bdrv_io_plug(BlockDriverState *bs)
|
|||||||
bdrv_io_plug(child->bs);
|
bdrv_io_plug(child->bs);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bs->io_plugged++ == 0) {
|
if (atomic_fetch_inc(&bs->io_plugged) == 0) {
|
||||||
BlockDriver *drv = bs->drv;
|
BlockDriver *drv = bs->drv;
|
||||||
if (drv && drv->bdrv_io_plug) {
|
if (drv && drv->bdrv_io_plug) {
|
||||||
drv->bdrv_io_plug(bs);
|
drv->bdrv_io_plug(bs);
|
||||||
@ -2658,7 +2658,7 @@ void bdrv_io_unplug(BlockDriverState *bs)
|
|||||||
BdrvChild *child;
|
BdrvChild *child;
|
||||||
|
|
||||||
assert(bs->io_plugged);
|
assert(bs->io_plugged);
|
||||||
if (--bs->io_plugged == 0) {
|
if (atomic_fetch_dec(&bs->io_plugged) == 1) {
|
||||||
BlockDriver *drv = bs->drv;
|
BlockDriver *drv = bs->drv;
|
||||||
if (drv && drv->bdrv_io_unplug) {
|
if (drv && drv->bdrv_io_unplug) {
|
||||||
drv->bdrv_io_unplug(bs);
|
drv->bdrv_io_unplug(bs);
|
||||||
|
@ -611,9 +611,6 @@ struct BlockDriverState {
|
|||||||
uint64_t write_threshold_offset;
|
uint64_t write_threshold_offset;
|
||||||
NotifierWithReturn write_threshold_notifier;
|
NotifierWithReturn write_threshold_notifier;
|
||||||
|
|
||||||
/* counter for nested bdrv_io_plug */
|
|
||||||
unsigned io_plugged;
|
|
||||||
|
|
||||||
QLIST_HEAD(, BdrvTrackedRequest) tracked_requests;
|
QLIST_HEAD(, BdrvTrackedRequest) tracked_requests;
|
||||||
CoQueue flush_queue; /* Serializing flush queue */
|
CoQueue flush_queue; /* Serializing flush queue */
|
||||||
bool active_flush_req; /* Flush request in flight? */
|
bool active_flush_req; /* Flush request in flight? */
|
||||||
@ -639,6 +636,11 @@ struct BlockDriverState {
|
|||||||
*/
|
*/
|
||||||
bool wakeup;
|
bool wakeup;
|
||||||
|
|
||||||
|
/* counter for nested bdrv_io_plug.
|
||||||
|
* Accessed with atomic ops.
|
||||||
|
*/
|
||||||
|
unsigned io_plugged;
|
||||||
|
|
||||||
/* do we need to tell the quest if we have a volatile write cache? */
|
/* do we need to tell the quest if we have a volatile write cache? */
|
||||||
int enable_write_cache;
|
int enable_write_cache;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user