]> git-server-git.apps.pok.os.sepia.ceph.com Git - xfsprogs-dev.git/commitdiff
xfs: fix an overly long line in xfs_rtgroup_calc_geometry
authorChristoph Hellwig <hch@lst.de>
Sun, 22 Feb 2026 22:41:02 +0000 (14:41 -0800)
committerAndrey Albershteyn <aalbersh@kernel.org>
Mon, 2 Mar 2026 09:54:27 +0000 (10:54 +0100)
Source kernel commit: baed03efe223b1649320e835d7e0c03b3dde0b0c

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
libxfs/xfs_rtgroup.c

index 1e6629ee03253d3b34f51ced45aede34d60f8013..d012ca73000d86ec03cc2652cfd57d696aff4ca0 100644 (file)
@@ -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);
 }