diff options
Diffstat (limited to 'fs/xfs/xfs_trans.c')
-rw-r--r-- | fs/xfs/xfs_trans.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_trans.c b/fs/xfs/xfs_trans.c index 668996aae36d..8878322ee793 100644 --- a/fs/xfs/xfs_trans.c +++ b/fs/xfs/xfs_trans.c | |||
@@ -234,7 +234,7 @@ xfs_trans_alloc( | |||
234 | xfs_mount_t *mp, | 234 | xfs_mount_t *mp, |
235 | uint type) | 235 | uint type) |
236 | { | 236 | { |
237 | vfs_wait_for_freeze(XFS_MTOVFS(mp), SB_FREEZE_TRANS); | 237 | xfs_wait_for_freeze(mp, SB_FREEZE_TRANS); |
238 | return _xfs_trans_alloc(mp, type); | 238 | return _xfs_trans_alloc(mp, type); |
239 | } | 239 | } |
240 | 240 | ||
@@ -628,7 +628,7 @@ xfs_trans_apply_sb_deltas( | |||
628 | offsetof(xfs_dsb_t, sb_frextents) + | 628 | offsetof(xfs_dsb_t, sb_frextents) + |
629 | sizeof(sbp->sb_frextents) - 1); | 629 | sizeof(sbp->sb_frextents) - 1); |
630 | 630 | ||
631 | XFS_MTOVFS(tp->t_mountp)->vfs_super->s_dirt = 1; | 631 | tp->t_mountp->m_super->s_dirt = 1; |
632 | } | 632 | } |
633 | 633 | ||
634 | /* | 634 | /* |