diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2008-01-10 09:49:43 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2008-01-25 03:18:03 -0500 |
commit | ac39aadd0440ae696e6dacaa8006ce1737b17008 (patch) | |
tree | d2a6784809c6bec674879dc865de4150e8b0fb01 /fs/gfs2 | |
parent | 9656b2c14c6ee0806c90a6be41dec71117fc8f50 (diff) |
[GFS2] Fix assert in log code
Although the values were all being calculated correctly, there was a
race in the assert due to the way it was using atomic variables. This
changes the value we assert on so that we get the same effect by testing
a different variable. This prevents the assert triggering when it shouldn't.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/log.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c index 91645259e135..161ab6f2058e 100644 --- a/fs/gfs2/log.c +++ b/fs/gfs2/log.c | |||
@@ -757,7 +757,7 @@ void __gfs2_log_flush(struct gfs2_sbd *sdp, struct gfs2_glock *gl) | |||
757 | static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr) | 757 | static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr) |
758 | { | 758 | { |
759 | unsigned int reserved; | 759 | unsigned int reserved; |
760 | unsigned int old; | 760 | unsigned int unused; |
761 | 761 | ||
762 | gfs2_log_lock(sdp); | 762 | gfs2_log_lock(sdp); |
763 | 763 | ||
@@ -769,14 +769,11 @@ static void log_refund(struct gfs2_sbd *sdp, struct gfs2_trans *tr) | |||
769 | sdp->sd_log_commited_revoke += tr->tr_num_revoke - tr->tr_num_revoke_rm; | 769 | sdp->sd_log_commited_revoke += tr->tr_num_revoke - tr->tr_num_revoke_rm; |
770 | gfs2_assert_withdraw(sdp, ((int)sdp->sd_log_commited_revoke) >= 0); | 770 | gfs2_assert_withdraw(sdp, ((int)sdp->sd_log_commited_revoke) >= 0); |
771 | reserved = calc_reserved(sdp); | 771 | reserved = calc_reserved(sdp); |
772 | old = atomic_read(&sdp->sd_log_blks_free); | 772 | unused = sdp->sd_log_blks_reserved - reserved + tr->tr_reserved; |
773 | atomic_add(tr->tr_reserved - (reserved - sdp->sd_log_blks_reserved), | 773 | gfs2_assert_withdraw(sdp, unused >= 0); |
774 | &sdp->sd_log_blks_free); | 774 | atomic_add(unused, &sdp->sd_log_blks_free); |
775 | |||
776 | gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) >= old); | ||
777 | gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <= | 775 | gfs2_assert_withdraw(sdp, atomic_read(&sdp->sd_log_blks_free) <= |
778 | sdp->sd_jdesc->jd_blocks); | 776 | sdp->sd_jdesc->jd_blocks); |
779 | |||
780 | sdp->sd_log_blks_reserved = reserved; | 777 | sdp->sd_log_blks_reserved = reserved; |
781 | 778 | ||
782 | gfs2_log_unlock(sdp); | 779 | gfs2_log_unlock(sdp); |