From: Darrick J. Wong <djwong@xxxxxxxxxx> Any time we try to modify a file's contents and it fails due to ENOSPC or EDQUOT, force inode inactivation work to try to free space. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- fs/xfs/xfs_icache.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c index c0a0f6055cc1..8c74e6f08d10 100644 --- a/fs/xfs/xfs_icache.c +++ b/fs/xfs/xfs_icache.c @@ -1866,9 +1866,15 @@ xfs_blockgc_free_space( struct xfs_mount *mp, struct xfs_eofblocks *eofb) { + int error; + trace_xfs_blockgc_free_space(mp, eofb, _RET_IP_); - return xfs_inode_walk(mp, xfs_blockgc_scan_inode, eofb); + error = xfs_inode_walk(mp, xfs_blockgc_scan_inode, eofb); + if (error) + return error; + + return xfs_inodegc_free_space(mp, eofb); } /*