summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2021-09-01 11:19:51 -0700
committerDarrick J. Wong <djwong@kernel.org>2021-12-15 17:29:26 -0800
commit933e306a202f00c5e8971d743cd18f44461be64d (patch)
tree37033a506b4db8208121e7f522442042d7087e1b
parentb5d915ddad3466713db3baed9dc3ee3e11044605 (diff)
xfs: enable extent size hints for CoW when rtextsize > 1
CoW extent size hints are not allowed on filesystems that have large realtime extents because we only want to perform the minimum required amount of write-around (aka write amplification) for shared extents. On filesystems where rtextsize > 1, allocations can only be done in units of full rt extents, which means that we can only map an entire rt extent's worth of blocks into the data fork. Hole punch requests become conversions to unwritten if the request isn't aligned properly. Because a copy-write fundamentally requires remapping, this means that we also can only do copy-writes of a full rt extent. This is too expensive for large hint sizes, since it's all or nothing. Signed-off-by: Darrick J. Wong <djwong@kernel.org>
-rw-r--r--fs/xfs/libxfs/xfs_bmap.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_bmap.c b/fs/xfs/libxfs/xfs_bmap.c
index 26c787645d80..52f1dbf255ce 100644
--- a/fs/xfs/libxfs/xfs_bmap.c
+++ b/fs/xfs/libxfs/xfs_bmap.c
@@ -6426,6 +6426,28 @@ xfs_get_cowextsz_hint(
if (ip->i_diflags2 & XFS_DIFLAG2_COWEXTSIZE)
a = ip->i_cowextsize;
if (XFS_IS_REALTIME_INODE(ip)) {
+ /*
+ * For realtime files, the realtime extent is the fundamental
+ * unit of allocation. This means that data sharing and CoW
+ * remapping can only be done in those units. For filesystems
+ * where the extent size is larger than one block, write
+ * requests that are not aligned to an extent boundary employ
+ * an unshare-around strategy to ensure that all pages for a
+ * shared extent are fully dirtied.
+ *
+ * Because the remapping alignment requirement applies equally
+ * to all CoW writes, any regular overwrites that could be
+ * turned (by a speculative CoW preallocation) into a CoW write
+ * must either employ this dirty-around strategy, or be smart
+ * enough to ignore the CoW fork mapping unless the entire
+ * extent is dirty or becomes shared by writeback time. Doing
+ * the first would dramatically increase write amplification,
+ * and the second would require deeper insight into the state
+ * of the page cache during a writeback request. For now, we
+ * ignore the hint.
+ */
+ if (ip->i_mount->m_sb.sb_rextsize > 1)
+ return ip->i_mount->m_sb.sb_rextsize;
b = 0;
if (ip->i_diflags & XFS_DIFLAG_EXTSIZE)
b = ip->i_extsize;