[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 6/6] block/io: auto-no-fallback for write-zeroes
From: |
Vladimir Sementsov-Ogievskiy |
Subject: |
[PATCH v2 6/6] block/io: auto-no-fallback for write-zeroes |
Date: |
Wed, 1 Apr 2020 18:01:12 +0300 |
When BDRV_REQ_NO_FALLBACK is supported, the NBD driver supports a
larger request size. Add code to try large zero requests with a
NO_FALLBACK request prior to having to split a request into chunks
according to max_pwrite_zeroes.
Signed-off-by: Vladimir Sementsov-Ogievskiy <address@hidden>
---
block/io.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/block/io.c b/block/io.c
index f8335e7212..425314a221 100644
--- a/block/io.c
+++ b/block/io.c
@@ -1755,6 +1755,7 @@ static int coroutine_fn
bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
int alignment = MAX(bs->bl.pwrite_zeroes_alignment,
bs->bl.request_alignment);
int max_transfer = MIN_NON_ZERO(bs->bl.max_transfer, MAX_BOUNCE_BUFFER);
+ bool auto_no_fallback;
assert(alignment % bs->bl.request_alignment == 0);
@@ -1762,6 +1763,16 @@ static int coroutine_fn
bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
return -ENOMEDIUM;
}
+ if (!(flags & BDRV_REQ_NO_FALLBACK) &&
+ (bs->supported_zero_flags & BDRV_REQ_NO_FALLBACK) &&
+ bs->bl.max_pwrite_zeroes && bs->bl.max_pwrite_zeroes < bytes &&
+ bs->bl.max_pwrite_zeroes < bs->bl.max_pwrite_zeroes_fast)
+ {
+ assert(drv->bdrv_co_pwrite_zeroes);
+ flags |= BDRV_REQ_NO_FALLBACK;
+ auto_no_fallback = true;
+ }
+
if ((flags & ~bs->supported_zero_flags) & BDRV_REQ_NO_FALLBACK) {
return -ENOTSUP;
}
@@ -1806,6 +1817,13 @@ static int coroutine_fn
bdrv_co_do_pwrite_zeroes(BlockDriverState *bs,
if (drv->bdrv_co_pwrite_zeroes) {
ret = drv->bdrv_co_pwrite_zeroes(bs, offset, num,
flags & bs->supported_zero_flags);
+ if (ret == -ENOTSUP && auto_no_fallback) {
+ flags &= ~BDRV_REQ_NO_FALLBACK;
+ max_write_zeroes =
+ QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_pwrite_zeroes,
+ INT_MAX), alignment);
+ continue;
+ }
if (ret != -ENOTSUP && (flags & BDRV_REQ_FUA) &&
!(bs->supported_zero_flags & BDRV_REQ_FUA)) {
need_flush = true;
--
2.21.0
- [PATCH v2 0/6] nbd: reduce max_block restrictions, Vladimir Sementsov-Ogievskiy, 2020/04/01
- [PATCH v2 1/6] block/nbd-client: drop max_block restriction from block_status, Vladimir Sementsov-Ogievskiy, 2020/04/01
- [PATCH v2 2/6] block/nbd-client: drop max_block restriction from discard, Vladimir Sementsov-Ogievskiy, 2020/04/01
- [PATCH v2 4/6] block/nbd: define new max_write_zero_fast limit, Vladimir Sementsov-Ogievskiy, 2020/04/01
- [PATCH v2 5/6] block/io: refactor bdrv_co_do_pwrite_zeroes head calculation, Vladimir Sementsov-Ogievskiy, 2020/04/01
- [PATCH v2 6/6] block/io: auto-no-fallback for write-zeroes,
Vladimir Sementsov-Ogievskiy <=
- [PATCH v2 3/6] block: add max_pwrite_zeroes_fast to BlockLimits, Vladimir Sementsov-Ogievskiy, 2020/04/01
- Re: [PATCH v2 0/6] nbd: reduce max_block restrictions, no-reply, 2020/04/01