From 6d211aaa21d7a6931468e7e3fa935cc7d58f39b0 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Fri, 15 Oct 2021 16:28:25 -0400 Subject: [PATCH] xfs: clean up open-coded fs block unit conversions Source kernel commit: a7bcb147fef39054fe324a1a988470f5da127196 Replace some open-coded fs block unit conversions with the standard conversion macro. Signed-off-by: Darrick J. Wong Reviewed-by: Dave Chinner Reviewed-by: Carlos Maiolino Signed-off-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- libxfs/xfs_inode_buf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libxfs/xfs_inode_buf.c b/libxfs/xfs_inode_buf.c index a9ed7f246..70caf6e76 100644 --- a/libxfs/xfs_inode_buf.c +++ b/libxfs/xfs_inode_buf.c @@ -609,7 +609,7 @@ xfs_inode_validate_extsize( */ if (rt_flag) - blocksize_bytes = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog; + blocksize_bytes = XFS_FSB_TO_B(mp, mp->m_sb.sb_rextsize); else blocksize_bytes = mp->m_sb.sb_blocksize; -- 2.47.2