diff options
| author | Vladimir Sementsov-Ogievskiy | 2021-09-03 12:28:07 +0200 |
|---|---|---|
| committer | Eric Blake | 2021-09-29 20:46:32 +0200 |
| commit | 6a8f3dbb1912141c9806c22db394a9ac8fe8366c (patch) | |
| tree | 09cfa5bd69d2779921f706856c31e1688992be28 /block | |
| parent | block: use int64_t instead of int in driver discard handlers (diff) | |
| download | qemu-6a8f3dbb1912141c9806c22db394a9ac8fe8366c.tar.gz qemu-6a8f3dbb1912141c9806c22db394a9ac8fe8366c.tar.xz qemu-6a8f3dbb1912141c9806c22db394a9ac8fe8366c.zip | |
block/io: allow 64bit discard requests
Now that all drivers are updated by the previous commit, we can drop
the last limiter on pdiscard path: INT_MAX in bdrv_co_pdiscard().
Now everything is prepared for implementing incredibly cool and fast
big-discard requests in NBD and qcow2. And any other driver which wants
it of course.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20210903102807.27127-12-vsementsov@virtuozzo.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'block')
| -rw-r--r-- | block/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/io.c b/block/io.c index 3846e2ed96..18d345a87a 100644 --- a/block/io.c +++ b/block/io.c @@ -3104,7 +3104,7 @@ int coroutine_fn bdrv_co_pdiscard(BdrvChild *child, int64_t offset, goto out; } - max_pdiscard = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_pdiscard, INT_MAX), + max_pdiscard = QEMU_ALIGN_DOWN(MIN_NON_ZERO(bs->bl.max_pdiscard, INT64_MAX), align); assert(max_pdiscard >= bs->bl.request_alignment); |
