diff options
Diffstat (limited to 'kernel/fs/gfs2/glock.h')
-rw-r--r-- | kernel/fs/gfs2/glock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/fs/gfs2/glock.h b/kernel/fs/gfs2/glock.h index 32572f71f..f7cdaa8b4 100644 --- a/kernel/fs/gfs2/glock.h +++ b/kernel/fs/gfs2/glock.h @@ -141,7 +141,7 @@ static inline struct gfs2_holder *gfs2_glock_is_locked_by_me(struct gfs2_glock * struct pid *pid; /* Look in glock's list of holders for one with current task as owner */ - spin_lock(&gl->gl_spin); + spin_lock(&gl->gl_lockref.lock); pid = task_pid(current); list_for_each_entry(gh, &gl->gl_holders, gh_list) { if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) @@ -151,7 +151,7 @@ static inline struct gfs2_holder *gfs2_glock_is_locked_by_me(struct gfs2_glock * } gh = NULL; out: - spin_unlock(&gl->gl_spin); + spin_unlock(&gl->gl_lockref.lock); return gh; } |