summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2021-09-01 11:24:41 -0700
committerDarrick J. Wong <djwong@kernel.org>2021-10-22 16:41:13 -0700
commitcab5e5b81ea52db7b6b2988b00fe95fe759ef9d5 (patch)
tree903d1330a583c6604a94e1ee23bd22137b933fce /fs
parent65f567f4a20252629d2b7b46cb9729c69d11d28e (diff)
xfs: only free posteof blocks on first close
Certain workloads fragment files on XFS very badly, such as a software package that creates a number of threads, each of which repeatedly run the sequence: open a file, perform a synchronous write, and close the file, which defeats the speculative preallocation mechanism. We work around this problem by only deleting posteof blocks the /first/ time a file is closed to preserve the behavior that unpacking a tarball lays out files one after the other with no gaps. Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/xfs_inode.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 4f2d84332479..f0d63dab19e1 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -1268,9 +1268,7 @@ xfs_release(
if (error)
goto out_unlock;
- /* delalloc blocks after truncation means it really is dirty */
- if (ip->i_delayed_blks)
- xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
+ xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
}
out_unlock: