From nobody Mon Feb 9 09:16:09 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1492479714688515.189910713428; Mon, 17 Apr 2017 18:41:54 -0700 (PDT) Received: from localhost ([::1]:39518 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d0I9R-0002r4-4u for importer@patchew.org; Mon, 17 Apr 2017 21:41:53 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34079) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d0I2K-0005M6-8S for qemu-devel@nongnu.org; Mon, 17 Apr 2017 21:34:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d0I2H-0003jm-4L for qemu-devel@nongnu.org; Mon, 17 Apr 2017 21:34:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45496) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d0I2E-0003hk-Gz; Mon, 17 Apr 2017 21:34:26 -0400 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 73ADD8046D; Tue, 18 Apr 2017 01:34:25 +0000 (UTC) Received: from red.redhat.com (ovpn-121-102.rdu2.redhat.com [10.10.121.102]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3CCC753C35; Tue, 18 Apr 2017 01:34:24 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 73ADD8046D Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=eblake@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 73ADD8046D From: Eric Blake To: qemu-devel@nongnu.org Date: Mon, 17 Apr 2017 20:33:36 -0500 Message-Id: <20170418013356.3578-12-eblake@redhat.com> In-Reply-To: <20170418013356.3578-1-eblake@redhat.com> References: <20170418013356.3578-1-eblake@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Tue, 18 Apr 2017 01:34:25 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 11/31] block: Add .bdrv_co_block_status() callback X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , Fam Zheng , qemu-block@nongnu.org, Max Reitz , Stefan Hajnoczi , kwolf@nongnu.org, jsnow@redhat.com Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" We are gradually moving away from sector-based interfaces, towards byte-based. Now that the block layer exposes byte-based allocation, it's time to tackle the drivers. Add a new callback that operates on as small as byte boundaries, and update the block layer to ensure that the callback is only used with inputs aligned to the device's request_alignment. Subsequent patches will then update individual drivers, and then finally remove .bdrv_co_get_block_status(). Signed-off-by: Eric Blake --- include/block/block_int.h | 12 ++++++++++++ block/io.c | 47 +++++++++++++++++++++++++++++++++++--------= ---- 2 files changed, 47 insertions(+), 12 deletions(-) diff --git a/include/block/block_int.h b/include/block/block_int.h index bc3a28a..8f20bc3 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -163,11 +163,23 @@ struct BlockDriver { */ int coroutine_fn (*bdrv_co_pwrite_zeroes)(BlockDriverState *bs, int64_t offset, int count, BdrvRequestFlags flags); + int coroutine_fn (*bdrv_co_pdiscard)(BlockDriverState *bs, int64_t offset, int count); + + /* + * Building block for bdrv_block_status[_above]. The block layer + * guarantees input aligned to request_alignment, as well as + * non-NULL pnum and file; and the result only has to worry about + * BDRV_BLOCK_DATA, _ZERO, _OFFSET_VALID, and _RAW, and only + * according to the current BDS. + */ int64_t coroutine_fn (*bdrv_co_get_block_status)(BlockDriverState *bs, int64_t sector_num, int nb_sectors, int *pnum, BlockDriverState **file); + int64_t coroutine_fn (*bdrv_co_block_status)(BlockDriverState *bd, + int64_t offset, int64_t bytes, int64_t *pnum, + BlockDriverState **file); /* * Invalidate any cached meta-data. diff --git a/block/io.c b/block/io.c index 1b101cf..361eeb8 100644 --- a/block/io.c +++ b/block/io.c @@ -1718,7 +1718,6 @@ static int64_t coroutine_fn bdrv_co_block_status(Bloc= kDriverState *bs, int64_t total_size; int64_t n; /* bytes */ int64_t ret, ret2; - int count; /* sectors */ BlockDriverState *tmp_file; total_size =3D bdrv_getlength(bs); @@ -1739,7 +1738,7 @@ static int64_t coroutine_fn bdrv_co_block_status(Bloc= kDriverState *bs, bytes =3D n; } - if (!bs->drv->bdrv_co_get_block_status) { + if (!bs->drv->bdrv_co_get_block_status && !bs->drv->bdrv_co_block_stat= us) { *pnum =3D bytes; ret =3D BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED; if (bs->drv->protocol_name) { @@ -1753,20 +1752,44 @@ static int64_t coroutine_fn bdrv_co_block_status(Bl= ockDriverState *bs, } *file =3D NULL; bdrv_inc_in_flight(bs); - /* TODO: Rather than require aligned offsets, we could instead - * round to the driver's request_alignment here, then touch up - * count afterwards back to the caller's expectations. But first - * we want to switch the driver callback to likewise be - * byte-based. */ - assert(QEMU_IS_ALIGNED(offset | bytes, BDRV_SECTOR_SIZE)); - ret =3D bs->drv->bdrv_co_get_block_status(bs, offset >> BDRV_SECTOR_BI= TS, - bytes >> BDRV_SECTOR_BITS, &co= unt, - file); + if (bs->drv->bdrv_co_get_block_status) { + int count; /* sectors */ + + assert(QEMU_IS_ALIGNED(offset | bytes, BDRV_SECTOR_SIZE)); + ret =3D bs->drv->bdrv_co_get_block_status(bs, offset >> BDRV_SECTO= R_BITS, + bytes >> BDRV_SECTOR_BITS, + &count, file); + *pnum =3D count * BDRV_SECTOR_SIZE; + } else { + /* Round out to request_alignment boundaries */ + int64_t aligned_offset, aligned_bytes; + + aligned_offset =3D QEMU_ALIGN_DOWN(offset, bs->bl.request_alignmen= t); + aligned_bytes =3D ROUND_UP(offset + bytes, + bs->bl.request_alignment) - aligned_offse= t; + ret =3D bs->drv->bdrv_co_block_status(bs, aligned_offset, aligned_= bytes, + &n, file); + /* Clamp pnum and ret to original request */ + if (aligned_offset !=3D offset && ret >=3D 0) { + int sectors =3D DIV_ROUND_UP(offset, BDRV_SECTOR_SIZE) - + DIV_ROUND_UP(aligned_offset, BDRV_SECTOR_SIZE); + + assert(n >=3D offset - aligned_offset); + n -=3D offset - aligned_offset; + if (sectors) { + ret +=3D sectors * BDRV_SECTOR_SIZE; + } + } + if (ret >=3D 0 && n > bytes) { + assert(aligned_bytes !=3D bytes); + n =3D bytes; + } + *pnum =3D n; + } if (ret < 0) { *pnum =3D 0; goto out; } - *pnum =3D count * BDRV_SECTOR_SIZE; if (ret & BDRV_BLOCK_RAW) { assert(ret & BDRV_BLOCK_OFFSET_VALID); --=20 2.9.3