From patchwork Wed Feb 21 09:17:31 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jiapeng Chong X-Patchwork-Id: 13565157 X-Patchwork-Delegate: snitzer@redhat.com Received: from out30-132.freemail.mail.aliyun.com (out30-132.freemail.mail.aliyun.com [115.124.30.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5E9163F8E6 for ; Wed, 21 Feb 2024 09:18:31 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.132 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708507114; cv=none; b=NdSJsKDUku3ch9HGQgHBOLcq2+s10whWrArKZhXz3A3TWXIDAJNNFDN4Tlfh+dGDzp2iRQFROW8Q8TkGGvKEkSb9qNwWbfF2u04DLnqIzWYCLMuWNCDYtTj8TVgJRQS4kIqAonWcb7PcThw2+UNWtCS0ZKKpwtuyvHF5QSgl2zM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708507114; c=relaxed/simple; bh=s5Ar4vI5lLQtBQqGzgo6ThJUBQ344s5u3LIjan6VKCM=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=TKJU7mZeBgWPeQd938NzDxOux4QZ10VYCJLISYOobznz8OFQy2ECzeZVahfeBd3zl0yhu7kyeBnZWvdDqi8VsjPldQ2bRj9ErkeIVQQgZNoqXX/6Y18+/6bpwidLfKi0WxXU4NxmAiA1HG7xZ/CqERu6c47eHHjI/AC7CGygSmU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=UGGDDMcT; arc=none smtp.client-ip=115.124.30.132 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="UGGDDMcT" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1708507104; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=aWlWYGeIVfNjQJkD0X6fpox0R6hzsKqtP6ziZ2TScy8=; b=UGGDDMcTEXf5zNgOecyuPf4oXWbZrE6ci991Q47NiNmhinQwNCsnuzdVYZ/XnFiKX5ZGfGunC2JvPVc0FVC1A11m8a8ot6yQ27K9k2t5Z6ssebnZgE3W/sg3A5FYHQ6gZlWdL1jnZYKyOVoMOq/2zDYP0+fg2H0q7lvI3TpOruY= X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R141e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046049;MF=jiapeng.chong@linux.alibaba.com;NM=1;PH=DS;RN=5;SR=0;TI=SMTPD_---0W0zUqTx_1708507102; Received: from localhost(mailfrom:jiapeng.chong@linux.alibaba.com fp:SMTPD_---0W0zUqTx_1708507102) by smtp.aliyun-inc.com; Wed, 21 Feb 2024 17:18:23 +0800 From: Jiapeng Chong To: msakai@redhat.com Cc: dm-devel@lists.linux.dev, linux-kernel@vger.kernel.org, Jiapeng Chong , Abaci Robot Subject: [PATCH 1/8] dm vdo: Modify mismatched function name Date: Wed, 21 Feb 2024 17:17:31 +0800 Message-Id: <20240221091731.7007-8-jiapeng.chong@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c In-Reply-To: <20240221091731.7007-1-jiapeng.chong@linux.alibaba.com> References: <20240221091731.7007-1-jiapeng.chong@linux.alibaba.com> Precedence: bulk X-Mailing-List: dm-devel@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 No functional modification involved. drivers/md/dm-vdo/vdo.c:276: warning: expecting prototype for vdo_read_geometry_block(). Prototype was for read_geometry_block() instead. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=8273 Signed-off-by: Jiapeng Chong --- drivers/md/dm-vdo/vdo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/dm-vdo/vdo.c b/drivers/md/dm-vdo/vdo.c index 23a4f1d1b6dc..411c58341173 100644 --- a/drivers/md/dm-vdo/vdo.c +++ b/drivers/md/dm-vdo/vdo.c @@ -266,7 +266,7 @@ static int __must_check initialize_thread_config(struct thread_count_config coun } /** - * vdo_read_geometry_block() - Synchronously read the geometry block from a vdo's underlying block + * read_geometry_block() - Synchronously read the geometry block from a vdo's underlying block * device. * @vdo: The vdo whose geometry is to be read. *