diff options
author | David Chinner <dgc@sgi.com> | 2007-06-18 02:50:48 -0400 |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-07-14 01:35:58 -0400 |
commit | 516b2e7c2661615ba5d5ad9fb584f068363502d3 (patch) | |
tree | 984aed9e4dd27cb2acb547dd587525b5e4bf53d9 /fs/xfs/linux-2.6/xfs_super.c | |
parent | 957d0ebed04239b734552c7da3fae9094b6f090c (diff) |
[XFS] Fix remount,readonly path to flush everything correctly.
The remount readonly path can fail to writeback properly because we still
have active transactions after calling xfs_quiesce_fs(). Further
investigation shows that this path is broken in the same ways that the xfs
freeze path was broken so fix it the same way.
SGI-PV: 964464
SGI-Modid: xfs-linux-melb:xfs-kern:28869a
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_super.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 05f188ed1206..06894cf00b12 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c | |||
@@ -664,7 +664,7 @@ xfs_fs_sync_super( | |||
664 | * occur here so don't bother flushing the buftarg (i.e | 664 | * occur here so don't bother flushing the buftarg (i.e |
665 | * SYNC_QUIESCE) because it'll just get dirty again. | 665 | * SYNC_QUIESCE) because it'll just get dirty again. |
666 | */ | 666 | */ |
667 | flags = SYNC_FSDATA | SYNC_DELWRI | SYNC_WAIT | SYNC_IOWAIT; | 667 | flags = SYNC_DATA_QUIESCE; |
668 | } else | 668 | } else |
669 | flags = SYNC_FSDATA | (wait ? SYNC_WAIT : 0); | 669 | flags = SYNC_FSDATA | (wait ? SYNC_WAIT : 0); |
670 | 670 | ||