From nobody Fri Apr 3 03:01:55 2026 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=zte.com.cn Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 177440298181490.62855931212869; Tue, 24 Mar 2026 18:43:01 -0700 (PDT) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1w5DGP-0005K4-77; Tue, 24 Mar 2026 21:42:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1w5DGL-0005Jd-7o; Tue, 24 Mar 2026 21:42:25 -0400 Received: from mxhk.zte.com.cn ([160.30.148.35]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1w5DGH-0000K2-Em; Tue, 24 Mar 2026 21:42:23 -0400 Received: from mse-fl2.zte.com.cn (unknown [10.5.228.133]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mxhk.zte.com.cn (FangMail) with ESMTPS id 4fgV5G3N4dz7QYRQ; Wed, 25 Mar 2026 09:42:10 +0800 (CST) Received: from njy2app03.zte.com.cn ([10.40.13.14]) by mse-fl2.zte.com.cn with SMTP id 62P1g3U8023579; Wed, 25 Mar 2026 09:42:03 +0800 (+08) (envelope-from long.yunjian@zte.com.cn) Received: from mapi (njy2app01[null]) by mapi (Zmail) with MAPI id mid201; Wed, 25 Mar 2026 09:42:04 +0800 (CST) X-Zmail-TransId: 2af969c33d6c400-ed151 X-Mailer: Zmail v1.0 Message-ID: <20260325094204300GFCZYBzAE00cSWaldbDcT@zte.com.cn> Date: Wed, 25 Mar 2026 09:42:04 +0800 (CST) Mime-Version: 1.0 From: To: , Cc: , , , Subject: =?UTF-8?B?W1BBVENIIHYyXSBibG9jazogZml4IGFubm90YXRpb24=?= X-MAIL: mse-fl2.zte.com.cn 62P1g3U8023579 X-TLS: YES X-SPF-DOMAIN: zte.com.cn X-ENVELOPE-SENDER: long.yunjian@zte.com.cn X-SPF: None X-SOURCE-IP: 10.5.228.133 unknown Wed, 25 Mar 2026 09:42:10 +0800 X-Fangmail-Anti-Spam-Filtered: true X-Fangmail-MID-QID: 69C33D72.002/4fgV5G3N4dz7QYRQ Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: pass client-ip=160.30.148.35; envelope-from=long.yunjian@zte.com.cn; helo=mxhk.zte.com.cn X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, UNPARSEABLE_RELAY=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: qemu development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: qemu-devel-bounces+importer=patchew.org@nongnu.org X-ZM-MESSAGEID: 1774402983814158500 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Yunjian Long Some functions are defined in block_int-io.h, so the correct annotation is block_int-io.h rather than block_int.h Signed-off-by: Yunjian Long --- v1 -> v2 fix all the same annotation problem. block.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/block.c b/block.c index 48a17f393c..f0a6042e61 100644 --- a/block.c +++ b/block.c @@ -8477,7 +8477,7 @@ static bool bdrv_bsc_range_overlaps_locked(BlockDrive= rState *bs, } /** - * See block_int.h for this function's documentation. + * See block_int-io.h for this function's documentation. */ bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum) { @@ -8487,7 +8487,7 @@ bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t o= ffset, int64_t *pnum) } /** - * See block_int.h for this function's documentation. + * See block_int-io.h for this function's documentation. */ void bdrv_bsc_invalidate_range(BlockDriverState *bs, int64_t offset, int64_t bytes) @@ -8501,7 +8501,7 @@ void bdrv_bsc_invalidate_range(BlockDriverState *bs, } /** - * See block_int.h for this function's documentation. + * See block_int-io.h for this function's documentation. */ void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes) { --=20 2.27.0