From nobody Mon Feb 9 05:53:10 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B0F03C77B7A for ; Wed, 24 May 2023 05:38:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239412AbjEXFiB (ORCPT ); Wed, 24 May 2023 01:38:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:32930 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230238AbjEXFiA (ORCPT ); Wed, 24 May 2023 01:38:00 -0400 Received: from out30-131.freemail.mail.aliyun.com (out30-131.freemail.mail.aliyun.com [115.124.30.131]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DC852B3 for ; Tue, 23 May 2023 22:37:58 -0700 (PDT) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R151e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045176;MF=yang.lee@linux.alibaba.com;NM=1;PH=DS;RN=4;SR=0;TI=SMTPD_---0VjMtB1s_1684906674; Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0VjMtB1s_1684906674) by smtp.aliyun-inc.com; Wed, 24 May 2023 13:37:55 +0800 From: Yang Li To: hch@infradead.org Cc: linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next] freevxfs: Fix some kernel-doc comments Date: Wed, 24 May 2023 13:37:53 +0800 Message-Id: <20230524053753.3573-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Remove the description of @retp and @filler, and add the description of @ctx, to silence the warnings: fs/freevxfs/vxfs_lookup.c:192: warning: Function parameter or member 'ctx' = not described in 'vxfs_readdir' fs/freevxfs/vxfs_lookup.c:192: warning: Excess function parameter 'retp' de= scription in 'vxfs_readdir' fs/freevxfs/vxfs_lookup.c:192: warning: Excess function parameter 'filler' = description in 'vxfs_readdir' Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D5301 Signed-off-by: Yang Li Reviewed-by: Christoph Hellwig --- fs/freevxfs/vxfs_lookup.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/freevxfs/vxfs_lookup.c b/fs/freevxfs/vxfs_lookup.c index f04ba2ed1e1a..8dfcd5f1013a 100644 --- a/fs/freevxfs/vxfs_lookup.c +++ b/fs/freevxfs/vxfs_lookup.c @@ -176,9 +176,8 @@ vxfs_lookup(struct inode *dip, struct dentry *dp, unsig= ned int flags) =20 /** * vxfs_readdir - read a directory - * @fp: the directory to read - * @retp: return buffer - * @filler: filldir callback + * @fp: the directory to read + * @ctx: actor to feed the entries to * * Description: * vxfs_readdir fills @retp with directory entries from @fp --=20 2.20.1.7.g153144c