diff options
author | David Chinner <dgc@sgi.com> | 2007-05-24 15:26:51 +1000 |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-07-14 15:29:02 +1000 |
commit | 210c6f1caa451623e14a7cd71000d2c2e0d9cc43 (patch) | |
tree | ec4ac003d854adabf1db2f9c4fcbd7b5b3813033 | |
parent | 92821e2ba4ae26887223326fb0b95cdab963b768 (diff) | |
download | linux-210c6f1caa451623e14a7cd71000d2c2e0d9cc43.tar.bz2 |
[XFS] Fix the transaction flags to make lazy superblock counters work.
SGI-PV: 964999
SGI-Modid: xfs-linux-melb:xfs-kern:28653a
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Tim Shimmin <tes@sgi.com>
-rw-r--r-- | fs/xfs/xfs_trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_trans.c b/fs/xfs/xfs_trans.c index 7133fd9ab868..2caa0783049b 100644 --- a/fs/xfs/xfs_trans.c +++ b/fs/xfs/xfs_trans.c @@ -533,7 +533,7 @@ xfs_trans_mod_sb( return; } - tp->t_flags |= (XFS_TRANS_SB_DIRTY | XFS_TRANS_DIRTY); + tp->t_flags |= flags; } /* |