aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_file.c
diff options
context:
space:
mode:
authorGravatar Dave Chinner <david@fromorbit.com> 2014-05-15 09:36:35 +1000
committerGravatar Dave Chinner <david@fromorbit.com> 2014-05-15 09:36:35 +1000
commitfdd3a2ae2e48310491e605c46201c95629dd450b (patch)
tree2a9361017d5fad1b39e77b8bb5eb1fd45cea0597 /fs/xfs/xfs_file.c
parentxfs: list_lru_init returns a negative error (diff)
parentxfs: remove unused calculation in xfs_dir2_sf_addname() (diff)
downloadlinux-fdd3a2ae2e48310491e605c46201c95629dd450b.tar.gz
linux-fdd3a2ae2e48310491e605c46201c95629dd450b.tar.bz2
linux-fdd3a2ae2e48310491e605c46201c95629dd450b.zip
Merge branch 'xfs-unused-args-cleanup' into for-next
Diffstat (limited to 'fs/xfs/xfs_file.c')
-rw-r--r--fs/xfs/xfs_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c
index 830c1c937b88..1b8160dc04d1 100644
--- a/fs/xfs/xfs_file.c
+++ b/fs/xfs/xfs_file.c
@@ -944,7 +944,7 @@ xfs_dir_open(
*/
mode = xfs_ilock_data_map_shared(ip);
if (ip->i_d.di_nextents > 0)
- xfs_dir3_data_readahead(NULL, ip, 0, -1);
+ xfs_dir3_data_readahead(ip, 0, -1);
xfs_iunlock(ip, mode);
return 0;
}