diff options
author | Benjamin Marzinski <bmarzins@redhat.com> | 2013-06-14 11:38:29 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2013-06-19 09:41:59 +0100 |
commit | 5d054964f57ade1adb310313c3cfb8e93e804e8f (patch) | |
tree | c04a28ef48bc298d5aaffda4e0cf2cda10eba43e /fs/gfs2/meta_io.c | |
parent | 512cbf02fde42b747c5752f135afd3f3f6d598e2 (diff) | |
download | talos-op-linux-5d054964f57ade1adb310313c3cfb8e93e804e8f.tar.gz talos-op-linux-5d054964f57ade1adb310313c3cfb8e93e804e8f.zip |
GFS2: aggressively issue revokes in gfs2_log_flush
This patch looks at all the outstanding blocks in all the transactions
on the log, and moves the completed ones to the ail2 list. Then it
issues revokes for these blocks. This will hopefully speed things up
in situations where there is a lot of contention for glocks, especially
if they are acquired serially.
revoke_lo_before_commit will issue at most one log block's full of these
preemptive revokes. The amount of reserved log space that
gfs2_log_reserve() ignores has been incremented to allow for this extra
block.
This patch also consolidates the common revoke instructions into one
function, gfs2_add_revoke().
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/meta_io.c')
-rw-r--r-- | fs/gfs2/meta_io.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/gfs2/meta_io.c b/fs/gfs2/meta_io.c index 1a89afb68472..0da390686c08 100644 --- a/fs/gfs2/meta_io.c +++ b/fs/gfs2/meta_io.c @@ -296,10 +296,6 @@ void gfs2_remove_from_journal(struct buffer_head *bh, struct gfs2_trans *tr, int if (bd) { spin_lock(&sdp->sd_ail_lock); if (bd->bd_tr) { - gfs2_remove_from_ail(bd); - bh->b_private = NULL; - bd->bd_bh = NULL; - bd->bd_blkno = bh->b_blocknr; gfs2_trans_add_revoke(sdp, bd); } spin_unlock(&sdp->sd_ail_lock); |