summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_iomap.c
diff options
context:
space:
mode:
authorBrian Foster2018-07-12 07:26:12 +0200
committerDarrick J. Wong2018-07-12 07:26:12 +0200
commit6e702a5dcbe1d38cf479931dd2e2a3da884143f0 (patch)
tree069cc3a88b33e1518a643c0a56176cbd0adf1b3a /fs/xfs/xfs_iomap.c
parentxfs: use ->t_dfops for all xfs_bmapi_write() callers (diff)
downloadkernel-qcow2-linux-6e702a5dcbe1d38cf479931dd2e2a3da884143f0.tar.gz
kernel-qcow2-linux-6e702a5dcbe1d38cf479931dd2e2a3da884143f0.tar.xz
kernel-qcow2-linux-6e702a5dcbe1d38cf479931dd2e2a3da884143f0.zip
xfs: remove xfs_bmapi_write() dfops param
Now that all callers use ->t_dfops, the xfs_bmapi_write() dfops parameter is no longer necessary. Remove it 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/xfs_iomap.c')
-rw-r--r--fs/xfs/xfs_iomap.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c
index 7c0b858f6723..0c736c938f52 100644
--- a/fs/xfs/xfs_iomap.c
+++ b/fs/xfs/xfs_iomap.c
@@ -259,7 +259,7 @@ xfs_iomap_write_direct(
nimaps = 1;
error = xfs_bmapi_write(tp, ip, offset_fsb, count_fsb,
bmapi_flags, &firstfsb, resblks, imap,
- &nimaps, tp->t_dfops);
+ &nimaps);
if (error)
goto out_bmap_cancel;
@@ -773,8 +773,7 @@ xfs_iomap_write_allocate(
*/
error = xfs_bmapi_write(tp, ip, map_start_fsb,
count_fsb, flags, &first_block,
- nres, imap, &nimaps,
- tp->t_dfops);
+ nres, imap, &nimaps);
if (error)
goto trans_cancel;
@@ -884,7 +883,7 @@ xfs_iomap_write_unwritten(
nimaps = 1;
error = xfs_bmapi_write(tp, ip, offset_fsb, count_fsb,
XFS_BMAPI_CONVERT, &firstfsb, resblks,
- &imap, &nimaps, tp->t_dfops);
+ &imap, &nimaps);
if (error)
goto error_on_bmapi_transaction;