diff options
| author | 2019-06-05 11:19:34 -0700 | |
|---|---|---|
| committer | 2019-06-12 08:37:40 -0700 | |
| commit | ef325959993edd53e3ce7c818b18f776ac0740a6 (patch) | |
| tree | 8f59c28771ff546a572add92d22c031622eb9a19 /fs/xfs/libxfs/xfs_inode_buf.c | |
| parent | fuse: copy_file_range needs to strip setuid bits and update timestamps (diff) | |
| download | linux-dev-ef325959993edd53e3ce7c818b18f776ac0740a6.tar.xz linux-dev-ef325959993edd53e3ce7c818b18f776ac0740a6.zip | |
xfs: separate inode geometry
Separate the inode geometry information into a distinct structure.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_inode_buf.c')
| -rw-r--r-- | fs/xfs/libxfs/xfs_inode_buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_inode_buf.c b/fs/xfs/libxfs/xfs_inode_buf.c index e021d5133ccb..c1293d170d98 100644 --- a/fs/xfs/libxfs/xfs_inode_buf.c +++ b/fs/xfs/libxfs/xfs_inode_buf.c @@ -36,7 +36,7 @@ xfs_inobp_check( int j; xfs_dinode_t *dip; - j = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog; + j = M_IGEO(mp)->inode_cluster_size >> mp->m_sb.sb_inodelog; for (i = 0; i < j; i++) { dip = xfs_buf_offset(bp, i * mp->m_sb.sb_inodesize); |
