diff options
author | Tim Shimmin <tes@sgi.com> | 2007-06-18 02:50:08 -0400 |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-07-14 01:32:59 -0400 |
commit | 0164af51cedf46e1d58fd53854373f544150c597 (patch) | |
tree | f52692b23866ce03fdf5752b26ec5415ee82a59d /fs/xfs | |
parent | effd120edb7609069cca9f3d1cb4bfae464b2f85 (diff) |
[XFS] Log the agf_length change in xfs_growfs_data_private().
SGI-PV: 963528
SGI-Modid: xfs-linux-melb:xfs-kern:28856a
Signed-off-by: Tim Shimmin <tes@sgi.com>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_fsops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_fsops.c b/fs/xfs/xfs_fsops.c index 27d01afe8465..ddd45e5b9383 100644 --- a/fs/xfs/xfs_fsops.c +++ b/fs/xfs/xfs_fsops.c | |||
@@ -332,6 +332,7 @@ xfs_growfs_data_private( | |||
332 | be32_add(&agf->agf_length, new); | 332 | be32_add(&agf->agf_length, new); |
333 | ASSERT(be32_to_cpu(agf->agf_length) == | 333 | ASSERT(be32_to_cpu(agf->agf_length) == |
334 | be32_to_cpu(agi->agi_length)); | 334 | be32_to_cpu(agi->agi_length)); |
335 | xfs_alloc_log_agf(tp, bp, XFS_AGF_LENGTH); | ||
335 | /* | 336 | /* |
336 | * Free the new space. | 337 | * Free the new space. |
337 | */ | 338 | */ |