mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[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>
This commit is contained in:
parent
2d81afb879
commit
8027473722
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue