aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r--fs/xfs/xfs_mount.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c
index 4458e706b1c6..cfe4de5def89 100644
--- a/fs/xfs/xfs_mount.c
+++ b/fs/xfs/xfs_mount.c
@@ -885,15 +885,12 @@ xfs_mountfs(
885 mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog); 885 mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
886 886
887 /* 887 /*
888 * Set the inode cluster size based on the physical memory 888 * Set the inode cluster size.
889 * size. This may still be overridden by the file system 889 * This may still be overridden by the file system
890 * block size if it is larger than the chosen cluster size. 890 * block size if it is larger than the chosen cluster size.
891 */ 891 */
892 if (xfs_physmem <= btoc(32 * 1024 * 1024)) { /* <= 32 MB */ 892 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
893 mp->m_inode_cluster_size = XFS_INODE_SMALL_CLUSTER_SIZE; 893
894 } else {
895 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
896 }
897 /* 894 /*
898 * Set whether we're using inode alignment. 895 * Set whether we're using inode alignment.
899 */ 896 */