From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
To: qemu-block@nongnu.org
Cc: qemu-devel@nongnu.org, integration@gluster.org,
kraxel@redhat.com, idryomov@gmail.com, berto@igalia.com,
philmd@redhat.com, eblake@redhat.com, pl@kamp.de,
ronniesahlberg@gmail.com, fam@euphon.net, sw@weilnetz.de,
vsementsov@virtuozzo.com, jsnow@redhat.com, stefanha@redhat.com,
pbonzini@redhat.com, pavel.dovgaluk@ispras.ru, ari@tuxera.com,
hreitz@redhat.com, kwolf@redhat.com
Subject: [PATCH v6 00/11] 64bit block-layer: part II
Date: Fri, 3 Sep 2021 13:27:56 +0300 [thread overview]
Message-ID: <20210903102807.27127-1-vsementsov@virtuozzo.com> (raw)
Hi all!
Sorry for a long delay :( Finally, here is v6.
v6: rebase on new rbd handlers and backup-top renamed to copy-before-write. Also:
01: add Eric's r-b
tweak commit msg to not mention sheepdog
02: add Eric's r-b
03: tweak commit msg
drop extra type conversion in raw_co_pwrite_zeroes
04: vvfat: no write_target_commit() anymore
nvme: fix over-80 line
type conversion in raw_co_pwrite_zeroes() now dropped in 03
05: tweak commit msg
add Eric's r-b
06: update comment
07: tweak commit msg, grammar and typos in comments
don't add extra empty line
handle also qemu_rbd_co_pwrite_zeroes
08: tweak commit msg, add Eric's r-b
09: tweak commit msg, add Eric's r-b
10: add rbd, drop sheepdog
add assertion to iscsi_co_pdiscard()
11: tweak commit msg, add Eric's r-b
Vladimir Sementsov-Ogievskiy (11):
block/io: bring request check to bdrv_co_(read,write)v_vmstate
qcow2: check request on vmstate save/load path
block: use int64_t instead of uint64_t in driver read handlers
block: use int64_t instead of uint64_t in driver write handlers
block: use int64_t instead of uint64_t in copy_range driver handlers
block: make BlockLimits::max_pwrite_zeroes 64bit
block: use int64_t instead of int in driver write_zeroes handlers
block/io: allow 64bit write-zeroes requests
block: make BlockLimits::max_pdiscard 64bit
block: use int64_t instead of int in driver discard handlers
block/io: allow 64bit discard requests
include/block/block_int.h | 66 ++++++++++++++++--------------
block/blkdebug.c | 12 +++---
block/blklogwrites.c | 16 ++++----
block/blkreplay.c | 8 ++--
block/blkverify.c | 8 ++--
block/bochs.c | 4 +-
block/cloop.c | 4 +-
block/commit.c | 2 +-
block/copy-before-write.c | 15 +++----
block/copy-on-read.c | 19 +++++----
block/crypto.c | 8 ++--
block/curl.c | 3 +-
block/dmg.c | 4 +-
block/file-posix.c | 35 ++++++++--------
block/file-win32.c | 8 ++--
block/filter-compress.c | 15 +++----
block/gluster.c | 13 +++---
block/io.c | 44 +++++++++++++++-----
block/iscsi.c | 58 ++++++++++++++++----------
block/mirror.c | 8 ++--
block/nbd.c | 22 ++++++----
block/nfs.c | 12 +++---
block/null.c | 18 ++++----
block/nvme.c | 48 ++++++++++++++++++----
block/preallocate.c | 14 +++----
block/qcow.c | 16 ++++----
block/qcow2-cluster.c | 14 ++++++-
block/qcow2.c | 70 +++++++++++++++++++++++---------
block/qed.c | 9 +++-
block/quorum.c | 11 ++---
block/raw-format.c | 36 ++++++++--------
block/rbd.c | 20 ++++-----
block/throttle.c | 18 ++++----
block/vdi.c | 8 ++--
block/vmdk.c | 14 +++----
block/vpc.c | 8 ++--
block/vvfat.c | 8 ++--
tests/unit/test-bdrv-drain.c | 16 ++++----
tests/unit/test-block-iothread.c | 21 +++++++---
block/trace-events | 10 ++---
slirp | 2 +-
ui/keycodemapdb | 2 +-
42 files changed, 452 insertions(+), 295 deletions(-)
--
2.29.2
next reply other threads:[~2021-09-03 10:31 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-03 10:27 Vladimir Sementsov-Ogievskiy [this message]
2021-09-03 10:27 ` [PATCH v6 01/11] block/io: bring request check to bdrv_co_(read, write)v_vmstate Vladimir Sementsov-Ogievskiy via
2021-09-03 10:27 ` [PATCH v6 02/11] qcow2: check request on vmstate save/load path Vladimir Sementsov-Ogievskiy
2021-09-03 10:27 ` [PATCH v6 03/11] block: use int64_t instead of uint64_t in driver read handlers Vladimir Sementsov-Ogievskiy
2021-09-03 21:30 ` Eric Blake
2021-09-03 10:28 ` [PATCH v6 04/11] block: use int64_t instead of uint64_t in driver write handlers Vladimir Sementsov-Ogievskiy
2021-09-03 21:34 ` Eric Blake
2021-09-03 10:28 ` [PATCH v6 05/11] block: use int64_t instead of uint64_t in copy_range driver handlers Vladimir Sementsov-Ogievskiy
2021-09-03 10:28 ` [PATCH v6 06/11] block: make BlockLimits::max_pwrite_zeroes 64bit Vladimir Sementsov-Ogievskiy
2021-09-23 19:58 ` Eric Blake
2021-09-03 10:28 ` [PATCH v6 07/11] block: use int64_t instead of int in driver write_zeroes handlers Vladimir Sementsov-Ogievskiy
2021-09-23 20:33 ` Eric Blake
2021-09-23 20:53 ` Eric Blake
2021-09-23 21:50 ` Vladimir Sementsov-Ogievskiy
2021-09-03 10:28 ` [PATCH v6 08/11] block/io: allow 64bit write-zeroes requests Vladimir Sementsov-Ogievskiy
2021-09-03 10:28 ` [PATCH v6 09/11] block: make BlockLimits::max_pdiscard 64bit Vladimir Sementsov-Ogievskiy
2021-09-03 10:28 ` [PATCH v6 10/11] block: use int64_t instead of int in driver discard handlers Vladimir Sementsov-Ogievskiy
2021-09-23 20:58 ` Eric Blake
2021-09-03 10:28 ` [PATCH v6 11/11] block/io: allow 64bit discard requests Vladimir Sementsov-Ogievskiy
2021-09-22 7:52 ` [PATCH v6 00/11] 64bit block-layer: part II Vladimir Sementsov-Ogievskiy
2021-09-22 13:13 ` Eric Blake
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210903102807.27127-1-vsementsov@virtuozzo.com \
--to=vsementsov@virtuozzo.com \
--cc=ari@tuxera.com \
--cc=berto@igalia.com \
--cc=eblake@redhat.com \
--cc=fam@euphon.net \
--cc=hreitz@redhat.com \
--cc=idryomov@gmail.com \
--cc=integration@gluster.org \
--cc=jsnow@redhat.com \
--cc=kraxel@redhat.com \
--cc=kwolf@redhat.com \
--cc=pavel.dovgaluk@ispras.ru \
--cc=pbonzini@redhat.com \
--cc=philmd@redhat.com \
--cc=pl@kamp.de \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=ronniesahlberg@gmail.com \
--cc=stefanha@redhat.com \
--cc=sw@weilnetz.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).