aboutsummaryrefslogtreecommitdiff
path: root/fs/gfs2
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2008-06-02 09:08:47 +0100
committerSteven Whitehouse <swhiteho@redhat.com>2008-06-27 09:39:34 +0100
commit80274737220f8c5ea75696dde4c5c7feba39456f (patch)
tree474bd28108d0340ce09f3345958d88eace374240 /fs/gfs2
parent2d81afb87972013b43b055b4711dc75fdeeb9ba8 (diff)
[GFS2] Fix ordering of args for list_add
The patch to remove lock_nolock managed to get the arguments of this list_add backwards. This fixes it. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/locking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/locking.c b/fs/gfs2/locking.c
index a4a367aa5cc..523243a13a2 100644
--- a/fs/gfs2/locking.c
+++ b/fs/gfs2/locking.c
@@ -163,7 +163,7 @@ retry:
mutex_lock(&lmh_lock);
if (list_empty(&nolock_proto.lw_list))
- list_add(&lmh_list, &nolock_proto.lw_list);
+ list_add(&nolock_proto.lw_list, &lmh_list);
found = 0;
list_for_each_entry(lw, &lmh_list, lw_list) {