From: Darrick J. Wong Date: Mon, 22 Apr 2024 17:00:59 +0000 (-0700) Subject: xfs: btree convert xfs_btree_init_block to xfs_btree_init_buf calls X-Git-Tag: v6.9.0~18^2~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a29b9f72ed7f94dd595855abad0235f3dc8e4de9;p=thirdparty%2Fxfsprogs-dev.git xfs: btree convert xfs_btree_init_block to xfs_btree_init_buf calls Source kernel commit: 7771f7030007e3faa6906864d01b504b590e1ca2 Convert any place we call xfs_btree_init_block with a buffer to use the _init_buf function. Signed-off-by: Darrick J. Wong Reviewed-by: Christoph Hellwig Reviewed-by: Carlos Maiolino --- diff --git a/libxfs/xfs_btree.c b/libxfs/xfs_btree.c index 541f2336..372a521c 100644 --- a/libxfs/xfs_btree.c +++ b/libxfs/xfs_btree.c @@ -1225,8 +1225,7 @@ xfs_btree_init_block_cur( else owner = cur->bc_ag.pag->pag_agno; - xfs_btree_init_block(cur->bc_mp, XFS_BUF_TO_BLOCK(bp), cur->bc_ops, - xfs_buf_daddr(bp), level, numrecs, owner); + xfs_btree_init_buf(cur->bc_mp, bp, cur->bc_ops, level, numrecs, owner); } /*