diff options
Diffstat (limited to 'block/blkreplay.c')
-rw-r--r-- | block/blkreplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blkreplay.c b/block/blkreplay.c index ce13fa5..c18d3a7 100644 --- a/block/blkreplay.c +++ b/block/blkreplay.c @@ -102,8 +102,8 @@ static int coroutine_fn blkreplay_co_pwrite_zeroes(BlockDriverState *bs, return ret; } -static int coroutine_fn blkreplay_co_pdiscard(BlockDriverState *bs, - int64_t offset, int64_t bytes) +static int coroutine_fn GRAPH_RDLOCK +blkreplay_co_pdiscard(BlockDriverState *bs, int64_t offset, int64_t bytes) { uint64_t reqid = blkreplay_next_id(); int ret = bdrv_co_pdiscard(bs->file, offset, bytes); |