* [PATCH 15/15] xfs: Make xfs_trans_mod_sb() aware of negative deltas
@ 2012-11-16 6:47 Jeff Liu
0 siblings, 0 replies; only message in thread
From: Jeff Liu @ 2012-11-16 6:47 UTC (permalink / raw)
To: xfs
For FS shrink, the FS_DBLOCKS will be reduced, and maybe the AG count will be
decreased as well if there have empty AGs beyond the new FS size.
This patch is trying to make xfs_trans_mod_sb() aware of those possible negative
delta values for shrinkfs only.
Signed-off-by: Jie Liu <jeff.liu@oracle.com>
---
fs/xfs/xfs_trans.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/fs/xfs/xfs_trans.c b/fs/xfs/xfs_trans.c
index d7346da..6ae2627 100644
--- a/fs/xfs/xfs_trans.c
+++ b/fs/xfs/xfs_trans.c
@@ -864,7 +864,7 @@ xfs_trans_mod_sb(
* transaction. Make sure it does not exceed the
* number reserved.
*/
- if (delta < 0) {
+ if (delta < 0 && tp->t_type != XFS_TRANS_SHRINKFS) {
tp->t_blk_res_used += (uint)-delta;
ASSERT(tp->t_blk_res_used <= tp->t_blk_res);
}
@@ -905,11 +905,17 @@ xfs_trans_mod_sb(
tp->t_res_frextents_delta += delta;
break;
case XFS_TRANS_SB_DBLOCKS:
- ASSERT(delta > 0);
+ if (tp->t_type != XFS_TRANS_SHRINKFS)
+ ASSERT(delta > 0);
+ else
+ ASSERT(delta < 0);
tp->t_dblocks_delta += delta;
break;
case XFS_TRANS_SB_AGCOUNT:
- ASSERT(delta > 0);
+ if (tp->t_type != XFS_TRANS_SHRINKFS)
+ ASSERT(delta > 0);
+ else
+ ASSERT(delta < 0);
tp->t_agcount_delta += delta;
break;
case XFS_TRANS_SB_IMAXPCT:
--
1.7.9.5
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-11-16 6:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-16 6:47 [PATCH 15/15] xfs: Make xfs_trans_mod_sb() aware of negative deltas Jeff Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox