diff options
author | Eric Sandeen <sandeen@redhat.com> | 2014-04-14 05:01:59 -0400 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-04-14 05:01:59 -0400 |
commit | 9df2dd0b0d2aad3ce2480e0618bfe14d37c017a3 (patch) | |
tree | 2c82e6ddc682019875dcc0bc7a650b80ce106cd5 /fs/xfs/xfs_file.c | |
parent | 72b0636bb7aca50978da60dfbaefc44020e1600e (diff) |
xfs: remove unused tp arg from xfs_da_reada_buf & callers
This one hits a few functions as we unravel the unused arg
up through the callers.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_file.c')
-rw-r--r-- | fs/xfs/xfs_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c index 79e96ce98733..3dcf9a19c93f 100644 --- a/fs/xfs/xfs_file.c +++ b/fs/xfs/xfs_file.c | |||
@@ -936,7 +936,7 @@ xfs_dir_open( | |||
936 | */ | 936 | */ |
937 | mode = xfs_ilock_data_map_shared(ip); | 937 | mode = xfs_ilock_data_map_shared(ip); |
938 | if (ip->i_d.di_nextents > 0) | 938 | if (ip->i_d.di_nextents > 0) |
939 | xfs_dir3_data_readahead(NULL, ip, 0, -1); | 939 | xfs_dir3_data_readahead(ip, 0, -1); |
940 | xfs_iunlock(ip, mode); | 940 | xfs_iunlock(ip, mode); |
941 | return 0; | 941 | return 0; |
942 | } | 942 | } |