diff options
author | David Chinner <david@fromorbit.com> | 2008-10-30 17:15:38 +1100 |
---|---|---|
committer | Lachlan McIlroy <lachlan@sgi.com> | 2008-10-30 17:15:38 +1100 |
commit | be97d9d5577f6c8a36588e2f262c772c5422b128 (patch) | |
tree | 9146f1872b61ccaf77b7268680320eb213bfdcdd /fs/xfs/linux-2.6/xfs_super.c | |
parent | aacaa880bfac8fecd44b279a49688643890358f5 (diff) | |
download | kernel_samsung_espresso10-be97d9d5577f6c8a36588e2f262c772c5422b128.zip kernel_samsung_espresso10-be97d9d5577f6c8a36588e2f262c772c5422b128.tar.gz kernel_samsung_espresso10-be97d9d5577f6c8a36588e2f262c772c5422b128.tar.bz2 |
[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/linux-2.6/xfs_super.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 767f38e..38d380a 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c @@ -998,7 +998,8 @@ xfs_fs_put_super( int error; xfs_syncd_stop(mp); - xfs_sync(mp, SYNC_ATTR | SYNC_DELWRI); + xfs_log_force(mp, 0, XFS_LOG_FORCE|XFS_LOG_SYNC); + xfs_sync_inodes(mp, SYNC_ATTR|SYNC_DELWRI); #ifdef HAVE_DMAPI if (mp->m_flags & XFS_MOUNT_DMAPI) { |