From: Christoph Hellwig Date: Sun, 22 Feb 2026 22:41:02 +0000 (-0800) Subject: xfs: fix an overly long line in xfs_rtgroup_calc_geometry X-Git-Tag: v6.19.0~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5756ae33c98bea50625ed1f397b7956a51c1d330;p=xfsprogs-dev.git xfs: fix an overly long line in xfs_rtgroup_calc_geometry Source kernel commit: baed03efe223b1649320e835d7e0c03b3dde0b0c Signed-off-by: Christoph Hellwig Reviewed-by: Darrick J. Wong Signed-off-by: Carlos Maiolino --- diff --git a/libxfs/xfs_rtgroup.c b/libxfs/xfs_rtgroup.c index 1e6629ee..d012ca73 100644 --- a/libxfs/xfs_rtgroup.c +++ b/libxfs/xfs_rtgroup.c @@ -80,7 +80,8 @@ xfs_rtgroup_calc_geometry( xfs_rtbxlen_t rextents) { rtg->rtg_extents = __xfs_rtgroup_extents(mp, rgno, rgcount, rextents); - rtg_group(rtg)->xg_block_count = rtg->rtg_extents * mp->m_sb.sb_rextsize; + rtg_group(rtg)->xg_block_count = + rtg->rtg_extents * mp->m_sb.sb_rextsize; rtg_group(rtg)->xg_min_gbno = xfs_rtgroup_min_block(mp, rgno); }