aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/log.h
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-05-29 18:27:51 -0700
committerSteven Whitehouse <swhiteho@redhat.com>2008-06-27 09:39:31 +0100
commit2d81afb87972013b43b055b4711dc75fdeeb9ba8 (patch)
tree4fe094c9ec57c6a6fa3e23767facc112f1d9d2df /fs/gfs2/log.h
parent048bca223739368aa5b9ce7cfb1d576c32d66cc7 (diff)
downloadlinux-2d81afb87972013b43b055b4711dc75fdeeb9ba8.tar.gz
[GFS2] trivial sparse lock annotations
Annotate the &sdp->sd_log_lock. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/log.h')
-rw-r--r--fs/gfs2/log.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/gfs2/log.h b/fs/gfs2/log.h
index 77115281650880..7c64510ccfd250 100644
--- a/fs/gfs2/log.h
+++ b/fs/gfs2/log.h
@@ -21,6 +21,7 @@
*/
static inline void gfs2_log_lock(struct gfs2_sbd *sdp)
+__acquires(&sdp->sd_log_lock)
{
spin_lock(&sdp->sd_log_lock);
}
@@ -32,6 +33,7 @@ static inline void gfs2_log_lock(struct gfs2_sbd *sdp)
*/
static inline void gfs2_log_unlock(struct gfs2_sbd *sdp)
+__releases(&sdp->sd_log_lock)
{
spin_unlock(&sdp->sd_log_lock);
}