From: Steven Whitehouse Date: Mon, 2 Jun 2008 08:08:47 +0000 (+0100) Subject: [GFS2] Fix ordering of args for list_add X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=80274737220f8c5ea75696dde4c5c7feba39456f;p=linux-beck.git [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 --- diff --git a/fs/gfs2/locking.c b/fs/gfs2/locking.c index a4a367aa5cc1..523243a13a21 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) {