From mboxrd@z Thu Jan 1 00:00:00 1970 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 BF03CC433FE for ; Fri, 11 Nov 2022 11:18:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233499AbiKKLSD (ORCPT ); Fri, 11 Nov 2022 06:18:03 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35850 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233083AbiKKLR5 (ORCPT ); Fri, 11 Nov 2022 06:17:57 -0500 X-Greylist: delayed 583 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Fri, 11 Nov 2022 03:17:55 PST Received: from mail.parknet.co.jp (mail.parknet.co.jp [210.171.160.6]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 82AA06711D for ; Fri, 11 Nov 2022 03:17:55 -0800 (PST) Received: from ibmpc.myhome.or.jp (server.parknet.ne.jp [210.171.168.39]) by mail.parknet.co.jp (Postfix) with ESMTPSA id 07F16205158B; Fri, 11 Nov 2022 20:08:11 +0900 (JST) Received: from devron.myhome.or.jp (foobar@devron.myhome.or.jp [192.168.0.3]) by ibmpc.myhome.or.jp (8.17.1.9/8.17.1.9/Debian-1) with ESMTPS id 2ABB85k6029676 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT); Fri, 11 Nov 2022 20:08:06 +0900 Received: from devron.myhome.or.jp (foobar@localhost [127.0.0.1]) by devron.myhome.or.jp (8.17.1.9/8.17.1.9/Debian-1) with ESMTPS id 2ABB85vK102819 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT); Fri, 11 Nov 2022 20:08:05 +0900 Received: (from hirofumi@localhost) by devron.myhome.or.jp (8.17.1.9/8.17.1.9/Submit) id 2ABB85vd102818; Fri, 11 Nov 2022 20:08:05 +0900 From: OGAWA Hirofumi To: Bo Liu Cc: , Andrew Morton Subject: Re: [PATCH] fat (exportfs): Fix some kernel-doc warnings In-Reply-To: <20221111075648.4005-1-liubo03@inspur.com> (Bo Liu's message of "Fri, 11 Nov 2022 02:56:48 -0500") References: <20221111075648.4005-1-liubo03@inspur.com> Date: Fri, 11 Nov 2022 20:08:05 +0900 Message-ID: <87wn8121gq.fsf@mail.parknet.co.jp> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Bo Liu writes: > Fixes the following W=1 kernel build warning(s): > fs/fat/nfs.c:21: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst > fs/fat/nfs.c:139: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst > > Signed-off-by: Bo Liu Looks good. Acked-by: OGAWA Hirofumi > --- > fs/fat/nfs.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/fs/fat/nfs.c b/fs/fat/nfs.c > index af191371c352..3626eb585a98 100644 > --- a/fs/fat/nfs.c > +++ b/fs/fat/nfs.c > @@ -17,7 +17,7 @@ struct fat_fid { > #define FAT_FID_SIZE_WITHOUT_PARENT 3 > #define FAT_FID_SIZE_WITH_PARENT (sizeof(struct fat_fid)/sizeof(u32)) > > -/** > +/* > * Look up a directory inode given its starting cluster. > */ > static struct inode *fat_dget(struct super_block *sb, int i_logstart) > @@ -135,7 +135,7 @@ fat_encode_fh_nostale(struct inode *inode, __u32 *fh, int *lenp, > return type; > } > > -/** > +/* > * Map a NFS file handle to a corresponding dentry. > * The dentry may or may not be connected to the filesystem root. > */ -- OGAWA Hirofumi