From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx2.suse.de ([195.135.220.15]:40368 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726304AbeIDLth (ORCPT ); Tue, 4 Sep 2018 07:49:37 -0400 Date: Tue, 4 Sep 2018 09:25:45 +0200 From: Jan Kara To: Randy Dunlap Cc: LKML , Linux FS Devel , Jan Kara , Andreas Gruenbacher , Alexander Viro Subject: Re: [PATCH v2] fs/posix_acl.c: fix kernel-doc warnings, formatting, and typo Message-ID: <20180904072545.GA9444@quack2.suse.cz> References: <722f4cf6-9b51-f7c9-e645-ca1f79dc7a67@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <722f4cf6-9b51-f7c9-e645-ca1f79dc7a67@infradead.org> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On Mon 03-09-18 15:40:34, Randy Dunlap wrote: > From: Randy Dunlap > > Fix kernel-doc warnings in fs/posic_acl.c. > Also fix one typo (setgit -> setgid). > > ../fs/posix_acl.c:646: warning: Function parameter or member 'inode' not described in 'posix_acl_update_mode' > ../fs/posix_acl.c:646: warning: Function parameter or member 'mode_p' not described in 'posix_acl_update_mode' > ../fs/posix_acl.c:646: warning: Function parameter or member 'acl' not described in 'posix_acl_update_mode' > > Fixes: 073931017b49d ("posix_acl: Clear SGID bit when setting file permissions") > > Signed-off-by: Randy Dunlap > Cc: Jan Kara > Cc: Andreas Gruenbacher > Cc: Alexander Viro > Cc: linux-fsdevel@vger.kernel.org > Acked-by: Andreas Gruenbacher Looks good to me. You can add: Reviewed-by: Jan Kara Honza > --- > v2: change *acl to *@acl > > fs/posix_acl.c | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > --- lnx-419-rc2.orig/fs/posix_acl.c > +++ lnx-419-rc2/fs/posix_acl.c > @@ -630,12 +630,15 @@ EXPORT_SYMBOL_GPL(posix_acl_create); > > /** > * posix_acl_update_mode - update mode in set_acl > + * @inode: target inode > + * @mode_p: mode (pointer) for update > + * @acl: acl pointer > * > * Update the file mode when setting an ACL: compute the new file permission > * bits based on the ACL. In addition, if the ACL is equivalent to the new > - * file mode, set *acl to NULL to indicate that no ACL should be set. > + * file mode, set *@acl to NULL to indicate that no ACL should be set. > * > - * As with chmod, clear the setgit bit if the caller is not in the owning group > + * As with chmod, clear the setgid bit if the caller is not in the owning group > * or capable of CAP_FSETID (see inode_change_ok). > * > * Called from set_acl inode operations. > > -- Jan Kara SUSE Labs, CR