diff options
author | Darrick J. Wong | 2021-01-22 16:48:40 -0800 |
---|---|---|
committer | Darrick J. Wong | 2021-02-03 09:18:49 -0800 |
commit | 0461a320e33a16405ac3c165463837e028a42680 (patch) | |
tree | 8fe1cd95126eea4f42158d3eb30022d10d2bc7be /fs/xfs/xfs_icache.c | |
parent | f9296569837c3fd66ae32717b0f8f5a26758b4b7 (diff) |
xfs: hide xfs_icache_free_eofblocks
Change the one remaining caller of xfs_icache_free_eofblocks to use our
new combined blockgc scan function instead, since we will soon be
combining the two scans. This introduces a slight behavior change,
since the XFS_IOC_FREE_EOFBLOCKS now clears out speculative CoW
reservations in addition to post-eof blocks.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_icache.c')
-rw-r--r-- | fs/xfs/xfs_icache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c index ae0c14df0f9b..d1a849053e68 100644 --- a/fs/xfs/xfs_icache.c +++ b/fs/xfs/xfs_icache.c @@ -1324,7 +1324,7 @@ xfs_inode_free_eofblocks( return ret; } -int +static int xfs_icache_free_eofblocks( struct xfs_mount *mp, struct xfs_eofblocks *eofb) |