From: Fam Zheng <famz@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Paolo Bonzini" <pbonzini@redhat.com>,
"Ronnie Sahlberg" <ronniesahlberg@gmail.com>,
qemu-block@nongnu.org, "Peter Lieven" <pl@kamp.de>,
"Fam Zheng" <famz@redhat.com>, "Kevin Wolf" <kwolf@redhat.com>,
"Max Reitz" <mreitz@redhat.com>,
"Stefan Hajnoczi" <stefanha@redhat.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Alex Bennée" <alex.bennee@linaro.org>,
eblake@redhat.com
Subject: [Qemu-devel] [PATCH v9 03/10] raw: Implement copy offloading
Date: Fri, 1 Jun 2018 17:26:41 +0800 [thread overview]
Message-ID: <20180601092648.24614-4-famz@redhat.com> (raw)
In-Reply-To: <20180601092648.24614-1-famz@redhat.com>
Just pass down to ->file.
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
block/raw-format.c | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/block/raw-format.c b/block/raw-format.c
index b69a0674b3..f2e468df6f 100644
--- a/block/raw-format.c
+++ b/block/raw-format.c
@@ -497,6 +497,36 @@ static int raw_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
return bdrv_probe_geometry(bs->file->bs, geo);
}
+static int coroutine_fn raw_co_copy_range_from(BlockDriverState *bs,
+ BdrvChild *src, uint64_t src_offset,
+ BdrvChild *dst, uint64_t dst_offset,
+ uint64_t bytes, BdrvRequestFlags flags)
+{
+ int ret;
+
+ ret = raw_adjust_offset(bs, &src_offset, bytes, false);
+ if (ret) {
+ return ret;
+ }
+ return bdrv_co_copy_range_from(bs->file, src_offset, dst, dst_offset,
+ bytes, flags);
+}
+
+static int coroutine_fn raw_co_copy_range_to(BlockDriverState *bs,
+ BdrvChild *src, uint64_t src_offset,
+ BdrvChild *dst, uint64_t dst_offset,
+ uint64_t bytes, BdrvRequestFlags flags)
+{
+ int ret;
+
+ ret = raw_adjust_offset(bs, &dst_offset, bytes, true);
+ if (ret) {
+ return ret;
+ }
+ return bdrv_co_copy_range_to(src, src_offset, bs->file, dst_offset, bytes,
+ flags);
+}
+
BlockDriver bdrv_raw = {
.format_name = "raw",
.instance_size = sizeof(BDRVRawState),
@@ -513,6 +543,8 @@ BlockDriver bdrv_raw = {
.bdrv_co_pwrite_zeroes = &raw_co_pwrite_zeroes,
.bdrv_co_pdiscard = &raw_co_pdiscard,
.bdrv_co_block_status = &raw_co_block_status,
+ .bdrv_co_copy_range_from = &raw_co_copy_range_from,
+ .bdrv_co_copy_range_to = &raw_co_copy_range_to,
.bdrv_truncate = &raw_truncate,
.bdrv_getlength = &raw_getlength,
.has_variable_length = true,
--
2.17.0
next prev parent reply other threads:[~2018-06-01 9:27 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-01 9:26 [Qemu-devel] [PATCH v9 00/10] qemu-img convert with copy offloading Fam Zheng
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 01/10] block: Introduce API for " Fam Zheng
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 02/10] raw: Check byte range uniformly Fam Zheng
2018-06-01 9:26 ` Fam Zheng [this message]
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 04/10] qcow2: Implement copy offloading Fam Zheng
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 05/10] file-posix: Implement bdrv_co_copy_range Fam Zheng
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 06/10] iscsi: Query and save device designator when opening Fam Zheng
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 07/10] iscsi: Create and use iscsi_co_wait_for_task Fam Zheng
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 08/10] iscsi: Implement copy offloading Fam Zheng
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 09/10] block-backend: Add blk_co_copy_range Fam Zheng
2018-06-01 9:26 ` [Qemu-devel] [PATCH v9 10/10] qemu-img: Convert with copy offloading Fam Zheng
2018-06-04 9:28 ` [Qemu-devel] [Qemu-block] [PATCH v9 00/10] qemu-img convert " Stefan Hajnoczi
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=20180601092648.24614-4-famz@redhat.com \
--to=famz@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=eblake@redhat.com \
--cc=f4bug@amsat.org \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=pl@kamp.de \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=ronniesahlberg@gmail.com \
--cc=stefanha@redhat.com \
/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).