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 D021AC001B0 for ; Fri, 11 Aug 2023 05:03:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230172AbjHKFDq (ORCPT ); Fri, 11 Aug 2023 01:03:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59226 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229807AbjHKFDn (ORCPT ); Fri, 11 Aug 2023 01:03:43 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3563F273E; Thu, 10 Aug 2023 22:03:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:Cc:To:Subject:MIME-Version:Date: Message-ID:Sender:Reply-To:Content-ID:Content-Description; bh=PVjmoOWIsDeMpMGwKvmwReHGBhFn28bh4+1vKNjPRzA=; b=rYVRsiVyOqK/xKEKLGOVrv9Ss/ VedX0whofDZFrrGVeNhdnc6o8j36VtJeKug3UbAZ1aV6dFPCgw+tRafmFlMvShJJW5QTgX7wob28m mliPR2b0k4xiFJTk6Orqf7lxpfRpScwtUp/Bzk6hHub8ElfMTybV2IIWpv0A3eaHzMgutNo21lwvu yka/oMP+0olVWZWCizZBej6Bq3GDDtHyZ3b33fFQoXc+dIzDlbPXzhVGI1stw3WeScSTyIqsXfPhX gmXukfsWSFjLHdBWqCiCMY7ecYKUd6dgPe2Vjsn/EKDcTRGM/ppcIcoIT4Hei5hkzuADVmhUlIGiB 3ljIyi+Q==; Received: from [2601:1c2:980:9ec0::2764] by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1qUKJG-009SnW-1M; Fri, 11 Aug 2023 05:03:38 +0000 Message-ID: Date: Thu, 10 Aug 2023 22:03:37 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.14.0 Subject: Re: [PATCH -next] fs: Fix one kernel-doc comment Content-Language: en-US To: Yang Li , viro@zeniv.linux.org.uk, brauner@kernel.org Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org References: <20230811014359.4960-1-yang.lee@linux.alibaba.com> From: Randy Dunlap In-Reply-To: <20230811014359.4960-1-yang.lee@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On 8/10/23 18:43, Yang Li wrote: > Fix one kernel-doc comment to silence the warning: > > fs/read_write.c:88: warning: Function parameter or member 'maxsize' not described in 'generic_file_llseek_size' > > Signed-off-by: Yang Li Reviewed-by: Randy Dunlap Thanks. > --- > fs/read_write.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/read_write.c b/fs/read_write.c > index b07de77ef126..4771701c896b 100644 > --- a/fs/read_write.c > +++ b/fs/read_write.c > @@ -71,7 +71,7 @@ EXPORT_SYMBOL(vfs_setpos); > * @file: file structure to seek on > * @offset: file offset to seek to > * @whence: type of seek > - * @size: max size of this file in file system > + * @maxsize: max size of this file in file system > * @eof: offset used for SEEK_END position > * > * This is a variant of generic_file_llseek that allows passing in a custom -- ~Randy