xfs: remove xfs_bmapi_write() firstblock param

All callers pass ->t_firstblock from the current transaction.

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>
This commit is contained in:
Brian Foster
2018-07-11 22:26:25 -07:00
committed by Darrick J. Wong
parent d0a9d79572
commit a7beabeae2
10 changed files with 22 additions and 38 deletions

View File

@@ -792,8 +792,8 @@ xfs_growfs_rt_alloc(
*/
nmap = 1;
error = xfs_bmapi_write(tp, ip, oblocks, nblocks - oblocks,
XFS_BMAPI_METADATA, &tp->t_firstblock,
resblks, &map, &nmap);
XFS_BMAPI_METADATA, resblks, &map,
&nmap);
if (!error && nmap < 1)
error = -ENOSPC;
if (error)