aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_vfsops.c
diff options
context:
space:
mode:
authorDavid Chinner <david@fromorbit.com>2008-10-30 02:15:38 -0400
committerLachlan McIlroy <lachlan@sgi.com>2008-10-30 02:15:38 -0400
commitbe97d9d5577f6c8a36588e2f262c772c5422b128 (patch)
tree9146f1872b61ccaf77b7268680320eb213bfdcdd /fs/xfs/xfs_vfsops.c
parentaacaa880bfac8fecd44b279a49688643890358f5 (diff)
[XFS] make SYNC_ATTR no longer use xfs_sync
Continue to de-multiplex xfs_sync be replacing all SYNC_ATTR callers with direct calls xfs_sync_inodes(). Add an assert into xfs_sync() to ensure we caught all the SYNC_ATTR callers. SGI-PV: 988140 SGI-Modid: xfs-linux-melb:xfs-kern:32308a Signed-off-by: David Chinner <david@fromorbit.com> Signed-off-by: Lachlan McIlroy <lachlan@sgi.com> Signed-off-by: Christoph Hellwig <hch@infradead.org>
Diffstat (limited to 'fs/xfs/xfs_vfsops.c')
-rw-r--r--fs/xfs/xfs_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_vfsops.c b/fs/xfs/xfs_vfsops.c
index d5396d6f5170..c82b9555959b 100644
--- a/fs/xfs/xfs_vfsops.c
+++ b/fs/xfs/xfs_vfsops.c
@@ -76,7 +76,7 @@ xfs_quiesce_fs(
76 */ 76 */
77 do { 77 do {
78 xfs_log_force(mp, 0, XFS_LOG_FORCE|XFS_LOG_SYNC); 78 xfs_log_force(mp, 0, XFS_LOG_FORCE|XFS_LOG_SYNC);
79 xfs_sync_inodes(mp, SYNC_INODE_QUIESCE); 79 xfs_sync_inodes(mp, SYNC_ATTR|SYNC_WAIT);
80 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1); 80 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
81 if (!pincount) { 81 if (!pincount) {
82 delay(50); 82 delay(50);