diff options
author | Nathan Scott <nathans@sgi.com> | 2006-06-09 03:11:55 -0400 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-06-09 03:11:55 -0400 |
commit | 34327e138481137a81a2e33060b8eb0944013801 (patch) | |
tree | d78521e82598c0b1aae46e466f38a5fa99a2b842 /fs/xfs/xfs_log.c | |
parent | 8285fb58e75bfdb447c7a2c533ec9efdb238f966 (diff) |
[XFS] Cleanup a missed porting conversion, and freezing.
SGI-PV: 953338
SGI-Modid: xfs-linux-melb:xfs-kern:26109a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 9f70ab3e0983..95d679cd4e75 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
@@ -817,7 +817,7 @@ xfs_log_need_covered(xfs_mount_t *mp) | |||
817 | xlog_t *log = mp->m_log; | 817 | xlog_t *log = mp->m_log; |
818 | bhv_vfs_t *vfsp = XFS_MTOVFS(mp); | 818 | bhv_vfs_t *vfsp = XFS_MTOVFS(mp); |
819 | 819 | ||
820 | if (fs_frozen(vfsp) || XFS_FORCED_SHUTDOWN(mp) || | 820 | if (vfs_test_for_freeze(vfsp) || XFS_FORCED_SHUTDOWN(mp) || |
821 | (vfsp->vfs_flag & VFS_RDONLY)) | 821 | (vfsp->vfs_flag & VFS_RDONLY)) |
822 | return 0; | 822 | return 0; |
823 | 823 | ||