diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-04-15 14:54:17 -0700 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2024-04-15 14:54:17 -0700 |
commit | 966ceafc7a437105ecfe1cadb3747b2965a260ca (patch) | |
tree | 656b079bc085e63c20833bf07e702481fcefc421 /fs/xfs/Makefile | |
parent | 6c08f434bd33f88cf169e9e43c7a5e42fb3f2118 (diff) | |
download | linux-966ceafc7a437105ecfe1cadb3747b2965a260ca.tar.gz linux-966ceafc7a437105ecfe1cadb3747b2965a260ca.tar.bz2 linux-966ceafc7a437105ecfe1cadb3747b2965a260ca.zip |
xfs: create deferred log items for file mapping exchanges
Now that we've created the skeleton of a log intent item to track and
restart file mapping exchange operations, add the upper level logic to
commit intent items and turn them into concrete work recorded in the
log. This builds on the existing bmap update intent items that have
been around for a while now.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index 68ca9726e7b7..b547a3dc03f8 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -34,6 +34,7 @@ xfs-y += $(addprefix libxfs/, \ xfs_dir2_node.o \ xfs_dir2_sf.o \ xfs_dquot_buf.o \ + xfs_exchmaps.o \ xfs_ialloc.o \ xfs_ialloc_btree.o \ xfs_iext_tree.o \ |