diff options
author | Brian Foster <bfoster@redhat.com> | 2018-07-11 22:26:13 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2018-07-11 22:26:13 -0700 |
commit | ccd9d91148780a5e979ac00bce67c2155fb6378f (patch) | |
tree | 6a205b024861f4849d28058a849cc96b3aceeaf1 /fs/xfs/libxfs/xfs_dir2.c | |
parent | 4bcfa613a0582a9992a6c2af82273bd770103d12 (diff) | |
download | linux-ccd9d91148780a5e979ac00bce67c2155fb6378f.tar.gz linux-ccd9d91148780a5e979ac00bce67c2155fb6378f.tar.bz2 linux-ccd9d91148780a5e979ac00bce67c2155fb6378f.zip |
xfs: remove xfs_bunmapi() dfops param
Now that all xfs_bunmapi() callers use ->t_dfops, remove the
unnecessary parameter and access ->t_dfops directly. This patch does
not change behavior.
Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_dir2.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_dir2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_dir2.c b/fs/xfs/libxfs/xfs_dir2.c index b21f55a11f35..781dc63d305d 100644 --- a/fs/xfs/libxfs/xfs_dir2.c +++ b/fs/xfs/libxfs/xfs_dir2.c @@ -664,7 +664,7 @@ xfs_dir2_shrink_inode( /* Unmap the fsblock(s). */ error = xfs_bunmapi(tp, dp, da, args->geo->fsbcount, 0, 0, - args->firstblock, args->trans->t_dfops, &done); + args->firstblock, &done); if (error) { /* * ENOSPC actually can happen if we're in a removename with no |