Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Christoph Hellwig and committed by
Carlos Maiolino
baed03ef e0aea42a

+2 -1
+2 -1
fs/xfs/libxfs/xfs_rtgroup.c
··· 83 83 xfs_rtbxlen_t rextents) 84 84 { 85 85 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; 87 88 rtg_group(rtg)->xg_min_gbno = xfs_rtgroup_min_block(mp, rgno); 88 89 } 89 90