projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d81afb
)
[GFS2] Fix ordering of args for list_add
author
Steven Whitehouse
<swhiteho@redhat.com>
Mon, 2 Jun 2008 08:08:47 +0000
(09:08 +0100)
committer
Steven Whitehouse
<swhiteho@redhat.com>
Fri, 27 Jun 2008 08:39:34 +0000
(09:39 +0100)
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>
fs/gfs2/locking.c
patch
|
blob
|
history
diff --git
a/fs/gfs2/locking.c
b/fs/gfs2/locking.c
index a4a367aa5cc1986758eb5e7103ea33e76441ab77..523243a13a2184a0fcbe02ecc10df012af3c77f8 100644
(file)
--- 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) {