mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 07:01:23 +00:00
[XFS] Remove unused argument to xfs_bmap_finish
The firstblock argument to xfs_bmap_finish is not used by that function. Remove it and cleanup the code a bit. Patch provided by Eric Sandeen. SGI-PV: 960196 SGI-Modid: xfs-linux-melb:xfs-kern:28034a Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Signed-off-by: David Chinner <dgc@sgi.com> Signed-off-by: Tim Shimmin <tes@sgi.com>
This commit is contained in:
parent
39058a0e12
commit
f7c99b6fc7
9 changed files with 25 additions and 35 deletions
|
@ -565,7 +565,7 @@ xfs_rename(
|
|||
IHOLD(target_ip);
|
||||
IHOLD(src_ip);
|
||||
|
||||
error = xfs_bmap_finish(&tp, &free_list, first_block, &committed);
|
||||
error = xfs_bmap_finish(&tp, &free_list, &committed);
|
||||
if (error) {
|
||||
xfs_bmap_cancel(&free_list);
|
||||
xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue