diff options
author | Eric Sandeen <sandeen@redhat.com> | 2014-04-14 10:58:05 +0200 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-04-14 10:58:05 +0200 |
commit | 7fb2cd4d32fed48d5fd88e0e922f162c182f5f8c (patch) | |
tree | 2015e6c0100d01c990019e23402f513ee040e3e3 /fs/xfs/xfs_dir2_leaf.c | |
parent | Linux 3.15-rc1 (diff) | |
download | linux-7fb2cd4d32fed48d5fd88e0e922f162c182f5f8c.tar.xz linux-7fb2cd4d32fed48d5fd88e0e922f162c182f5f8c.zip |
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_leaf.c')
-rw-r--r-- | fs/xfs/xfs_dir2_leaf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_dir2_leaf.c b/fs/xfs/xfs_dir2_leaf.c index d36e97df1187..f571723e2378 100644 --- a/fs/xfs/xfs_dir2_leaf.c +++ b/fs/xfs/xfs_dir2_leaf.c @@ -1708,7 +1708,7 @@ xfs_dir2_node_to_leaf( /* * Get the last offset in the file. */ - if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK))) { + if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK))) { return error; } fo -= mp->m_dirblkfsbs; |