diff options
author | Darrick J. Wong <djwong@kernel.org> | 2021-01-22 16:48:39 -0800 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-02-03 09:18:49 -0800 |
commit | 85c5b27075ba0389855d9f46ff1b1d5c34a44c94 (patch) | |
tree | 66a6a5a72fcf8b1041ce81f12fa67e256c6bba63 /fs/xfs/xfs_file.c | |
parent | 38899f8099945559662e6a6e355b9059088e3b34 (diff) | |
download | linux-stable-85c5b27075ba0389855d9f46ff1b1d5c34a44c94.tar.gz linux-stable-85c5b27075ba0389855d9f46ff1b1d5c34a44c94.tar.bz2 linux-stable-85c5b27075ba0389855d9f46ff1b1d5c34a44c94.zip |
xfs: refactor xfs_icache_free_{eof,cow}blocks call sites
In anticipation of more restructuring of the eof/cowblocks gc code,
refactor calling of those two functions into a single internal helper
function, then present a new standard interface to purge speculative
block preallocations and start shifting higher level code to use that.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_file.c')
-rw-r--r-- | fs/xfs/xfs_file.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c index 8546dbf6c5ac..38528e59030e 100644 --- a/fs/xfs/xfs_file.c +++ b/fs/xfs/xfs_file.c @@ -718,8 +718,7 @@ write_retry: xfs_iunlock(ip, iolock); eofb.eof_flags = XFS_EOF_FLAGS_SYNC; - xfs_icache_free_eofblocks(ip->i_mount, &eofb); - xfs_icache_free_cowblocks(ip->i_mount, &eofb); + xfs_blockgc_free_space(ip->i_mount, &eofb); goto write_retry; } |