xfs: merge xfs_dir2_data_freescan and xfs_dir2_data_freescan_int
There is no real need for xfs_dir2_data_freescan wrapper, so rename xfs_dir2_data_freescan_int to xfs_dir2_data_freescan and let the callers dereference the mount pointer from the inode. Signed-off-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:

committed by
Darrick J. Wong

parent
957ee13e20
commit
ae42976de7
@@ -1328,7 +1328,7 @@ xfs_dir2_leafn_remove(
|
||||
* Log the data block header if needed.
|
||||
*/
|
||||
if (needscan)
|
||||
xfs_dir2_data_freescan(dp, hdr, &needlog);
|
||||
xfs_dir2_data_freescan(dp->i_mount, hdr, &needlog);
|
||||
if (needlog)
|
||||
xfs_dir2_data_log_header(args, dbp);
|
||||
xfs_dir3_data_check(dp, dbp);
|
||||
@@ -1976,7 +1976,7 @@ xfs_dir2_node_addname_int(
|
||||
|
||||
/* Rescan the freespace and log the data block if needed. */
|
||||
if (needscan)
|
||||
xfs_dir2_data_freescan(dp, hdr, &needlog);
|
||||
xfs_dir2_data_freescan(dp->i_mount, hdr, &needlog);
|
||||
if (needlog)
|
||||
xfs_dir2_data_log_header(args, dbp);
|
||||
|
||||
|
Reference in New Issue
Block a user