diff options
author | Christoph Hellwig <hch@infradead.org> | 2011-10-10 16:52:52 (GMT) |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-10-12 02:15:11 (GMT) |
commit | a9add83e5abd29bf2b7b3658311199eeabbdefc6 (patch) | |
tree | 0219f5fad2baac905366ca559001f39c3ca90ed4 /fs/xfs/xfs_super.c | |
parent | 02b102df1502a7ea4167d115510e1e8fe6467f12 (diff) | |
download | linux-a9add83e5abd29bf2b7b3658311199eeabbdefc6.tar.xz |
xfs: remove XFS_bflush
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r-- | fs/xfs/xfs_super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 6ad05e6..ba16248 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -1015,7 +1015,7 @@ xfs_fs_put_super( */ xfs_filestream_unmount(mp); - XFS_bflush(mp->m_ddev_targp); + xfs_flush_buftarg(mp->m_ddev_targp, 1); xfs_unmountfs(mp); xfs_freesb(mp); @@ -1439,7 +1439,7 @@ xfs_fs_fill_super( */ xfs_filestream_unmount(mp); - XFS_bflush(mp->m_ddev_targp); + xfs_flush_buftarg(mp->m_ddev_targp, 1); xfs_unmountfs(mp); goto out_free_sb; |