aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/glock.h
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-09-04 09:49:55 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-09-04 09:49:55 -0400
commit5029996547a9f3988459e11955c13259495308ef (patch)
tree4667c98c19a6f39dc820e4eb648ecfa03b29bce2 /fs/gfs2/glock.h
parente9fc2aa091ab8fa46e60d4c9d06a89305c441652 (diff)
[GFS2] Tidy up locking code
As per Jan Engelhardt's second email, this removes some unused code, and fixes up indenting in various places. Cc: Jan Engelhardt <jengelh@linux01.gwdg.de> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/glock.h')
-rw-r--r--fs/gfs2/glock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/glock.h b/fs/gfs2/glock.h
index 07a8d02a234d..1a90a1983beb 100644
--- a/fs/gfs2/glock.h
+++ b/fs/gfs2/glock.h
@@ -51,17 +51,17 @@ static inline int gfs2_glock_is_locked_by_me(struct gfs2_glock *gl)
51 51
52static inline int gfs2_glock_is_held_excl(struct gfs2_glock *gl) 52static inline int gfs2_glock_is_held_excl(struct gfs2_glock *gl)
53{ 53{
54 return (gl->gl_state == LM_ST_EXCLUSIVE); 54 return gl->gl_state == LM_ST_EXCLUSIVE;
55} 55}
56 56
57static inline int gfs2_glock_is_held_dfrd(struct gfs2_glock *gl) 57static inline int gfs2_glock_is_held_dfrd(struct gfs2_glock *gl)
58{ 58{
59 return (gl->gl_state == LM_ST_DEFERRED); 59 return gl->gl_state == LM_ST_DEFERRED;
60} 60}
61 61
62static inline int gfs2_glock_is_held_shrd(struct gfs2_glock *gl) 62static inline int gfs2_glock_is_held_shrd(struct gfs2_glock *gl)
63{ 63{
64 return (gl->gl_state == LM_ST_SHARED); 64 return gl->gl_state == LM_ST_SHARED;
65} 65}
66 66
67static inline int gfs2_glock_is_blocking(struct gfs2_glock *gl) 67static inline int gfs2_glock_is_blocking(struct gfs2_glock *gl)