diff options
author | Christoph Hellwig <hch@lst.de> | 2016-11-24 11:39:44 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-11-24 11:39:44 +1100 |
commit | 65c5f419788d623a0410eca1866134f5e4628594 (patch) | |
tree | 7b4d2c91663af5d6b89a6ca3c265693a73b66bc0 /fs/xfs/xfs_reflink.c | |
parent | 7efc794561f6bfe34d26c3724289108f6cda3a4d (diff) | |
download | op-kernel-dev-65c5f419788d623a0410eca1866134f5e4628594.zip op-kernel-dev-65c5f419788d623a0410eca1866134f5e4628594.tar.gz |
xfs: remove prev argument to xfs_bmapi_reserve_delalloc
We can easily lookup the previous extent for the cases where we need it,
which saves the callers from looking it up for us later in the series.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_reflink.c')
-rw-r--r-- | fs/xfs/xfs_reflink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_reflink.c b/fs/xfs/xfs_reflink.c index 0edf835..52cdfba 100644 --- a/fs/xfs/xfs_reflink.c +++ b/fs/xfs/xfs_reflink.c @@ -293,7 +293,7 @@ xfs_reflink_reserve_cow( retry: error = xfs_bmapi_reserve_delalloc(ip, XFS_COW_FORK, imap->br_startoff, - end_fsb - imap->br_startoff, &got, &prev, &idx, eof); + end_fsb - imap->br_startoff, &got, &idx, eof); switch (error) { case 0: break; |