Commit ea2064da authored by Brian Foster's avatar Brian Foster Committed by Darrick J. Wong

xfs: remove xfs_quiesce_attr()

xfs_quiesce_attr() is now a wrapper for xfs_log_clean(). Remove it
and call xfs_log_clean() directly.
Signed-off-by: default avatarBrian Foster <bfoster@redhat.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: default avatarDarrick J. Wong <djwong@kernel.org>
Signed-off-by: default avatarDarrick J. Wong <djwong@kernel.org>
Reviewed-by: default avatarAllison Henderson <allison.henderson@oracle.com>
parent 5232b931
...@@ -946,7 +946,7 @@ xfs_mountfs( ...@@ -946,7 +946,7 @@ xfs_mountfs(
*/ */
if ((mp->m_flags & (XFS_MOUNT_RDONLY|XFS_MOUNT_NORECOVERY)) == if ((mp->m_flags & (XFS_MOUNT_RDONLY|XFS_MOUNT_NORECOVERY)) ==
XFS_MOUNT_RDONLY) { XFS_MOUNT_RDONLY) {
xfs_quiesce_attr(mp); xfs_log_clean(mp);
} }
/* /*
......
...@@ -867,26 +867,6 @@ xfs_restore_resvblks(struct xfs_mount *mp) ...@@ -867,26 +867,6 @@ xfs_restore_resvblks(struct xfs_mount *mp)
xfs_reserve_blocks(mp, &resblks, NULL); xfs_reserve_blocks(mp, &resblks, NULL);
} }
/*
* Trigger writeback of all the dirty metadata in the file system.
*
* This ensures that the metadata is written to their location on disk rather
* than just existing in transactions in the log. This means after a quiesce
* there is no log replay required to write the inodes to disk - this is the
* primary difference between a sync and a quiesce.
*
* We cancel log work early here to ensure all transactions the log worker may
* run have finished before we clean up and log the superblock and write an
* unmount record. The unfreeze process is responsible for restarting the log
* worker correctly.
*/
void
xfs_quiesce_attr(
struct xfs_mount *mp)
{
xfs_log_clean(mp);
}
/* /*
* Second stage of a freeze. The data is already frozen so we only * Second stage of a freeze. The data is already frozen so we only
* need to take care of the metadata. Once that's done sync the superblock * need to take care of the metadata. Once that's done sync the superblock
...@@ -909,7 +889,7 @@ xfs_fs_freeze( ...@@ -909,7 +889,7 @@ xfs_fs_freeze(
flags = memalloc_nofs_save(); flags = memalloc_nofs_save();
xfs_stop_block_reaping(mp); xfs_stop_block_reaping(mp);
xfs_save_resvblks(mp); xfs_save_resvblks(mp);
xfs_quiesce_attr(mp); xfs_log_clean(mp);
ret = xfs_sync_sb(mp, true); ret = xfs_sync_sb(mp, true);
memalloc_nofs_restore(flags); memalloc_nofs_restore(flags);
return ret; return ret;
...@@ -1752,7 +1732,7 @@ xfs_remount_ro( ...@@ -1752,7 +1732,7 @@ xfs_remount_ro(
*/ */
xfs_save_resvblks(mp); xfs_save_resvblks(mp);
xfs_quiesce_attr(mp); xfs_log_clean(mp);
mp->m_flags |= XFS_MOUNT_RDONLY; mp->m_flags |= XFS_MOUNT_RDONLY;
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment