xfs: set XBF_DONE on newly formatted btree block that are ready for writing
authorDarrick J. Wong <djwong@kernel.org>
Fri, 15 Dec 2023 18:03:27 +0000 (10:03 -0800)
committerDarrick J. Wong <djwong@kernel.org>
Fri, 15 Dec 2023 18:03:27 +0000 (10:03 -0800)
commitc1e0f8e6fb060b23b6f1b82eb4265983f7d271f8
treee1a3bfb38230972fc6a63aec3d7cafe91f95e263
parent13ae04d8d45227c2ba51e188daf9fc13d08a1b12
xfs: set XBF_DONE on newly formatted btree block that are ready for writing

The btree bulkloading code calls xfs_buf_delwri_queue_here when it has
finished formatting a new btree block and wants to queue it to be
written to disk.  Once the new btree root has been committed, the blocks
(and hence the buffers) will be accessible to the rest of the
filesystem.  Mark each new buffer as DONE when adding it to the delwri
list so that the next btree traversal can skip reloading the contents
from disk.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
fs/xfs/libxfs/xfs_btree_staging.c