diff options
author | Torsten Kaiser <just.for.lkml@googlemail.com> | 2013-01-20 10:24:49 +0100 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-01-28 13:50:10 -0600 |
commit | 2729423cf2ef3ac51d040f24a5ddd84c1b2acc70 (patch) | |
tree | 05a9db8c702de1ab393e66959a7ce9a22702c48b /fs/xfs | |
parent | ced55f38d6bde7c10a14ea51c2edcd51a98575e3 (diff) | |
download | linux-3.10-2729423cf2ef3ac51d040f24a5ddd84c1b2acc70.tar.gz linux-3.10-2729423cf2ef3ac51d040f24a5ddd84c1b2acc70.tar.bz2 linux-3.10-2729423cf2ef3ac51d040f24a5ddd84c1b2acc70.zip |
xfs: Fix xfs_swap_extents() after removal of xfs_flushinval_pages()
Commit fb59581404ab7ec5075299065c22cb211a9262a9 removed
xfs_flushinval_pages() and changed its callers to use
filemap_write_and_wait() and truncate_pagecache_range() directly.
But in xfs_swap_extents() this change accidental switched the argument
for 'tip' to 'ip'. This patch switches it back to 'tip'
Signed-off-by: Torsten Kaiser <just.for.lkml@googlemail.com>
Reviewed-by: Ben Myers <bpm@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_dfrag.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_dfrag.c b/fs/xfs/xfs_dfrag.c index d0e9c74d3d9..a8bd26b82ec 100644 --- a/fs/xfs/xfs_dfrag.c +++ b/fs/xfs/xfs_dfrag.c @@ -246,10 +246,10 @@ xfs_swap_extents( goto out_unlock; } - error = -filemap_write_and_wait(VFS_I(ip)->i_mapping); + error = -filemap_write_and_wait(VFS_I(tip)->i_mapping); if (error) goto out_unlock; - truncate_pagecache_range(VFS_I(ip), 0, -1); + truncate_pagecache_range(VFS_I(tip), 0, -1); /* Verify O_DIRECT for ftmp */ if (VN_CACHED(VFS_I(tip)) != 0) { |