From: Steven Whitehouse Date: Wed, 5 Jul 2006 14:41:39 +0000 (-0400) Subject: [GFS2] Make GFS2 work with lock validator X-Git-Tag: v2.6.19-rc1~32^2~152 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ecb1460dc44ffb8d3e570597f394504898f088bb;p=karo-tx-linux.git [GFS2] Make GFS2 work with lock validator Change our one existing old-style lock initialiser to a new-style one. This allows the lock validator to work as intended. Signed-off-by: Steven Whitehouse --- diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index b040fda1f54c..a86ce67949db 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c @@ -57,7 +57,7 @@ static struct gfs2_sbd *init_sbd(struct super_block *sb) gfs2_tune_init(&sdp->sd_tune); for (x = 0; x < GFS2_GL_HASH_SIZE; x++) { - sdp->sd_gl_hash[x].hb_lock = RW_LOCK_UNLOCKED; + rwlock_init(&sdp->sd_gl_hash[x].hb_lock); INIT_LIST_HEAD(&sdp->sd_gl_hash[x].hb_list); } INIT_LIST_HEAD(&sdp->sd_reclaim_list);