aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/glock.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2007-01-23 13:20:41 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2007-02-05 13:37:35 -0500
commit90101c31867b7acc44286b425d50e1042aa55b8d (patch)
tree3129323fd9112fb1e7ed187a0cdca8d37d0b42da /fs/gfs2/glock.c
parent[GFS2] Remove queue_empty() function (diff)
downloadlinux-dev-90101c31867b7acc44286b425d50e1042aa55b8d.tar.xz
linux-dev-90101c31867b7acc44286b425d50e1042aa55b8d.zip
[GFS2] Compile fix for glock.c
This one liner got missed from the previous patch. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to '')
-rw-r--r--fs/gfs2/glock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
index 1509481b8ca6..f68582ddaa5c 100644
--- a/fs/gfs2/glock.c
+++ b/fs/gfs2/glock.c
@@ -1786,7 +1786,7 @@ static void clear_glock(struct gfs2_glock *gl)
}
if (gfs2_glmutex_trylock(gl)) {
- if (list_empty(gl, &gl->gl_holders) &&
+ if (list_empty(&gl->gl_holders) &&
gl->gl_state != LM_ST_UNLOCKED)
handle_callback(gl, LM_ST_UNLOCKED);
gfs2_glmutex_unlock(gl);