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 X-Spam-Level: X-Spam-Status: No, score=-5.0 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 94489C43603 for ; Mon, 9 Dec 2019 04:30:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5B0A520721 for ; Mon, 9 Dec 2019 04:30:06 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="ZeCbLMo9" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726916AbfLIEaF (ORCPT ); Sun, 8 Dec 2019 23:30:05 -0500 Received: from bombadil.infradead.org ([198.137.202.133]:43740 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726826AbfLIEaF (ORCPT ); Sun, 8 Dec 2019 23:30:05 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=kFZkHr8CuoYDB938S7ssj8nSaK2Pp+HvhqByX31f7+w=; b=ZeCbLMo93b0ewls4BGOvlX4lW k1anJS3/nuGRAjMxFQIPnxWm7URKfR5O5GufZad1AguKw6RtmC3M+zp2MAwvZQ0CQ6LHZTv1SGubq NbJN/oTCVoRxgL0i5DSLfovQGlENt9ohlmWuEFSSc1+zqzT9A3Zgz4zz7P2iWB78943yKrhdubPcM q4sno1MEO33IltGVFu/rvgazwx1uXcrDjrXQjtPPHEynmx7Kn624s2hXJR0aGo+cafScGlxWfj5oa eioE9PoYfYJPUTe8gA1OMv3VLOHjAbRBZiC6+GlO+66DcgfYQvQimTgZ+3lIaC2tQhnUaIp4gYlfu BuYWv7VeQ==; Received: from [2601:1c0:6280:3f0::3deb] by bombadil.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1ieAgL-0000rM-Fv; Mon, 09 Dec 2019 04:30:01 +0000 To: Linux FS Devel , Al Viro , Andrew Morton Cc: Jan Kara , Andreas Gruenbacher From: Randy Dunlap Subject: [PATCH RESEND] fs: fix posix_acl.c kernel-doc warnings Message-ID: <29b0dc46-1f28-a4e5-b1d0-ba2b65629779@infradead.org> Date: Sun, 8 Dec 2019 20:30:00 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org From: Randy Dunlap Fix kernel-doc warnings in fs/posix_acl.c. Also fix one typo (setgit -> setgid). ../fs/posix_acl.c:647: warning: Function parameter or member 'inode' not described in 'posix_acl_update_mode' ../fs/posix_acl.c:647: warning: Function parameter or member 'mode_p' not described in 'posix_acl_update_mode' ../fs/posix_acl.c:647: 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 Reviewed-by: Jan Kara --- v2: change *acl to *@acl fs/posix_acl.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- linux-next-20191209.orig/fs/posix_acl.c +++ linux-next-20191209/fs/posix_acl.c @@ -631,12 +631,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.