diff options
author | Eric Sandeen <sandeen@redhat.com> | 2014-04-14 18:58:05 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-04-14 18:58:05 +1000 |
commit | 7fb2cd4d32fed48d5fd88e0e922f162c182f5f8c (patch) | |
tree | 2015e6c0100d01c990019e23402f513ee040e3e3 /fs/xfs/xfs_dir2_readdir.c | |
parent | c9eaa447e77efe77b7fa4c953bd62de8297fd6c5 (diff) | |
download | op-kernel-dev-7fb2cd4d32fed48d5fd88e0e922f162c182f5f8c.zip op-kernel-dev-7fb2cd4d32fed48d5fd88e0e922f162c182f5f8c.tar.gz |
xfs: remove unused tp arg from xfs_bmap_last_offset() and callers
remove unused transaction pointer from various
callchains leading to xfs_bmap_last_offset().
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_dir2_readdir.c')
-rw-r--r-- | fs/xfs/xfs_dir2_readdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_dir2_readdir.c b/fs/xfs/xfs_dir2_readdir.c index aead369..a18000f 100644 --- a/fs/xfs/xfs_dir2_readdir.c +++ b/fs/xfs/xfs_dir2_readdir.c @@ -687,7 +687,7 @@ xfs_readdir( lock_mode = xfs_ilock_data_map_shared(dp); if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) rval = xfs_dir2_sf_getdents(dp, ctx); - else if ((rval = xfs_dir2_isblock(NULL, dp, &v))) + else if ((rval = xfs_dir2_isblock(dp, &v))) ; else if (v) rval = xfs_dir2_block_getdents(dp, ctx); |