From: Jinliang Zheng Date: Thu, 2 Jul 2026 19:59:50 +0000 (-0700) Subject: xfs: remove the meaningless XFS_ALLOC_FLAG_FREEING X-Git-Tag: v7.1.0~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bae44fee8d426ca73263212a569efd143be66e14;p=thirdparty%2Fxfsprogs-dev.git xfs: remove the meaningless XFS_ALLOC_FLAG_FREEING Source kernel commit: bfb4dc533d0abaca07013dd71e6b5c6f182232b3 In xfs_refcount_finish_one(), there's no need to pass XFS_ALLOC_FLAG_FREEING to xfs_alloc_read_agf(). So remove it. Signed-off-by: Jinliang Zheng Reviewed-by: Darrick J. Wong Signed-off-by: Carlos Maiolino --- diff --git a/libxfs/xfs_refcount.c b/libxfs/xfs_refcount.c index 036497dbb..1d4516078 100644 --- a/libxfs/xfs_refcount.c +++ b/libxfs/xfs_refcount.c @@ -1412,8 +1412,7 @@ xfs_refcount_finish_one( if (rcur == NULL) { struct xfs_perag *pag = to_perag(ri->ri_group); - error = xfs_alloc_read_agf(pag, tp, - XFS_ALLOC_FLAG_FREEING, &agbp); + error = xfs_alloc_read_agf(pag, tp, 0, &agbp); if (error) return error;