From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lee Jones Date: Fri, 26 Mar 2021 09:11:46 +0000 Subject: [Cluster-devel] [PATCH 13/18] fs: gfs2: quota: Fix incorrect param name in 'gfs2_quotad' In-Reply-To: <20210326091151.311647-1-lee.jones@linaro.org> References: <20210326091151.311647-1-lee.jones@linaro.org> Message-ID: <20210326091151.311647-14-lee.jones@linaro.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Fixes the following W=1 kernel build warning(s): fs/gfs2/quota.c:1542: warning: Function parameter or member 'data' not described in 'gfs2_quotad' fs/gfs2/quota.c:1542: warning: Excess function parameter 'sdp' description in 'gfs2_quotad' Cc: Bob Peterson Cc: Andreas Gruenbacher Cc: cluster-devel at redhat.com Signed-off-by: Lee Jones --- fs/gfs2/quota.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c index 6e173ae378c44..33520eed467c2 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c @@ -1534,7 +1534,7 @@ void gfs2_wake_up_statfs(struct gfs2_sbd *sdp) { /** * gfs2_quotad - Write cached quota changes into the quota file - * @sdp: Pointer to GFS2 superblock + * @data: Pointer to GFS2 superblock * */ -- 2.27.0