From patchwork Wed Feb 21 09:17:26 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jiapeng Chong X-Patchwork-Id: 13565153 X-Patchwork-Delegate: snitzer@redhat.com Received: from out30-113.freemail.mail.aliyun.com (out30-113.freemail.mail.aliyun.com [115.124.30.113]) (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 E3A523D54C for ; Wed, 21 Feb 2024 09:18:10 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.113 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708507092; cv=none; b=hhGc4es5Q9m7PA8bEXGjyGelIi5e70cRc+SOrpuO6ZkqLg/CzhLY+kmaW0t85p7sCB9OjADOQ7kVYHsjusGFbOUF7Jpf3UVRkQ4Jdlciucr0VMHE5boFRy6ay7+nrHBM6uoeHC58px/wVD8X8oY37a/26Qnm70Um4R4Sgd7lQXg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708507092; c=relaxed/simple; bh=Ro149mtR33sBAX78qfBcjmuA+prlryiG9GLzx79kIRk=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=eeVkCweSouSwkS948w8iu8CfGjwXhdv506+vwGwAhDCN9ZOBEu5w9XytynZ5OnNuz8YE0eQvr251Hfv7gGahT4M8oaRikAHwNQ/330FyEfrEmTHJCJd4cFO85uS+YmzZhAyG8HyFFPOKuJAOLzr8WtWzUWRQchFmI8PFrDBZOPs= 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=IQd1Nuev; arc=none smtp.client-ip=115.124.30.113 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="IQd1Nuev" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1708507082; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=110m7iZc1QLgWsXce59I4X/s2/RhnD8RnHOHhZoz85g=; b=IQd1NuevHtDTaw39RcHDYewFAw57AJXzkpS2QqKJz+60rla7WEinc7zy79Sp7R2JvXXCjb2KRELXyxTG/SB2lcP16lAw80IDsHZ/e+6OD+zfKpu723DiWxde9Ur1VZbTcTcR1HOBfHMWaSumLt9Ip/KIaiJgxwD+WKnxk15Ncm0= X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R161e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045170;MF=jiapeng.chong@linux.alibaba.com;NM=1;PH=DS;RN=5;SR=0;TI=SMTPD_---0W0zSe40_1708507080; Received: from localhost(mailfrom:jiapeng.chong@linux.alibaba.com fp:SMTPD_---0W0zSe40_1708507080) by smtp.aliyun-inc.com; Wed, 21 Feb 2024 17:18:02 +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 6/8] dm vdo: Modify mismatched function name Date: Wed, 21 Feb 2024 17:17:26 +0800 Message-Id: <20240221091731.7007-3-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/flush.c:97: warning: expecting prototype for waiter_as_flush(). Prototype was for vdo_waiter_as_flush() instead. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=8278 Signed-off-by: Jiapeng Chong --- drivers/md/dm-vdo/flush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/dm-vdo/flush.c b/drivers/md/dm-vdo/flush.c index e4be450aa12c..57e87f0d7069 100644 --- a/drivers/md/dm-vdo/flush.c +++ b/drivers/md/dm-vdo/flush.c @@ -88,7 +88,7 @@ static inline struct vdo_flush *completion_as_vdo_flush(struct vdo_completion *c } /** - * waiter_as_flush() - Convert a vdo_flush's generic wait queue entry back to the vdo_flush. + * vdo_waiter_as_flush() - Convert a vdo_flush's generic wait queue entry back to the vdo_flush. * @waiter: The wait queue entry to convert. * * Return: The wait queue entry as a vdo_flush.