Skip to content

Commit baed03e

Browse files
Christoph Hellwigcmaiolino
authored andcommitted
xfs: fix an overly long line in xfs_rtgroup_calc_geometry
Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Carlos Maiolino <cem@kernel.org>
1 parent e0aea42 commit baed03e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

fs/xfs/libxfs/xfs_rtgroup.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ xfs_rtgroup_calc_geometry(
8383
xfs_rtbxlen_t rextents)
8484
{
8585
rtg->rtg_extents = __xfs_rtgroup_extents(mp, rgno, rgcount, rextents);
86-
rtg_group(rtg)->xg_block_count = rtg->rtg_extents * mp->m_sb.sb_rextsize;
86+
rtg_group(rtg)->xg_block_count =
87+
rtg->rtg_extents * mp->m_sb.sb_rextsize;
8788
rtg_group(rtg)->xg_min_gbno = xfs_rtgroup_min_block(mp, rgno);
8889
}
8990

0 commit comments

Comments
 (0)