[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1500661648-3650-1-git-send-email-wang.xibo@zte.com.cn>
Date: Sat, 22 Jul 2017 02:27:28 +0800
From: Wang Xibo <wang.xibo@....com.cn>
To: swhiteho@...hat.com, rpeterso@...hat.com
Cc: cluster-devel@...hat.com, linux-kernel@...r.kernel.org,
wang.xibo@....com.cn, Xiao Likun <xiao.likun@....com.cn>
Subject: [PATCH] GFS2: fix code parameter error in inode_go_lock
In inode_go_lock() function, the parameter order of list_add() is error.
According to the define of list_add(), the first parameter is new entry
and the second is the list head, so ip->i_trunc_list should be the
first parameter and the sdp->sd_trunc_list should be second.
Signed-off-by: Wang Xibo<wang.xibo@....com.cn>
Signed-off-by: Xiao Likun<xiao.likun@....com.cn>
---
fs/gfs2/glops.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c
index 5e69636..28c203a 100644
--- a/fs/gfs2/glops.c
+++ b/fs/gfs2/glops.c
@@ -470,7 +470,7 @@ static int inode_go_lock(struct gfs2_holder *gh)
(gh->gh_state == LM_ST_EXCLUSIVE)) {
spin_lock(&sdp->sd_trunc_lock);
if (list_empty(&ip->i_trunc_list))
- list_add(&sdp->sd_trunc_list, &ip->i_trunc_list);
+ list_add(&ip->i_trunc_list, &sdp->sd_trunc_list);
spin_unlock(&sdp->sd_trunc_lock);
wake_up(&sdp->sd_quota_wait);
return 1;
--
1.8.3.1
Powered by blists - more mailing lists