mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
block: introduce BDRV_REQ_NO_WAIT flag
Add flag to make serialising request no wait: if there are conflicting requests, just return error immediately. It's will be used in upcoming preallocate filter. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Message-Id: <20201021145859.11201-7-vsementsov@virtuozzo.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
parent
8ac5aab255
commit
d1a764d126
2 changed files with 18 additions and 2 deletions
11
block/io.c
11
block/io.c
|
@ -1858,9 +1858,18 @@ bdrv_co_write_req_prepare(BdrvChild *child, int64_t offset, uint64_t bytes,
|
|||
assert(!(bs->open_flags & BDRV_O_INACTIVE));
|
||||
assert((bs->open_flags & BDRV_O_NO_IO) == 0);
|
||||
assert(!(flags & ~BDRV_REQ_MASK));
|
||||
assert(!((flags & BDRV_REQ_NO_WAIT) && !(flags & BDRV_REQ_SERIALISING)));
|
||||
|
||||
if (flags & BDRV_REQ_SERIALISING) {
|
||||
bdrv_make_request_serialising(req, bdrv_get_cluster_size(bs));
|
||||
QEMU_LOCK_GUARD(&bs->reqs_lock);
|
||||
|
||||
tracked_request_set_serialising(req, bdrv_get_cluster_size(bs));
|
||||
|
||||
if ((flags & BDRV_REQ_NO_WAIT) && bdrv_find_conflicting_request(req)) {
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
bdrv_wait_serialising_requests_locked(req);
|
||||
} else {
|
||||
bdrv_wait_serialising_requests(req);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue