diff options
author | Dave Chinner <dchinner@redhat.com> | 2012-11-12 22:53:56 +1100 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2012-11-14 15:12:45 -0600 |
commit | 4bc1ea6b8ddd4f2bd78944fbe5a1042ac14b1f5f (patch) | |
tree | 8fb1419d5f7329afb431dbed481d441eb9d38c0c /fs/xfs/xfs_aops.c | |
parent | 95eacf0f71b7682a05b8242c49c68e8e4bb673e3 (diff) | |
download | talos-obmc-linux-4bc1ea6b8ddd4f2bd78944fbe5a1042ac14b1f5f.tar.gz talos-obmc-linux-4bc1ea6b8ddd4f2bd78944fbe5a1042ac14b1f5f.zip |
xfs: remove xfs_flush_pages
It is a complex wrapper around VFS functions, but there are VFS
functions that provide exactly the same functionality. Call the VFS
functions directly and remove the unnecessary indirection and
complexity.
We don't need to care about clearing the XFS_ITRUNCATED flag, as
that is done during .writepages. Hence is cleared by the VFS
writeback path if there is anything to write back during the flush.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Andrew Dahl <adahl@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_aops.c')
-rw-r--r-- | fs/xfs/xfs_aops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c index e57e2daa357c..71361da1f77c 100644 --- a/fs/xfs/xfs_aops.c +++ b/fs/xfs/xfs_aops.c @@ -1641,7 +1641,7 @@ xfs_vm_bmap( trace_xfs_vm_bmap(XFS_I(inode)); xfs_ilock(ip, XFS_IOLOCK_SHARED); - xfs_flush_pages(ip, (xfs_off_t)0, -1, 0, FI_REMAPF); + filemap_write_and_wait(mapping); xfs_iunlock(ip, XFS_IOLOCK_SHARED); return generic_block_bmap(mapping, block, xfs_get_blocks); } |