File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -578,7 +578,7 @@ static int __init init_dlmfs_fs(void)
578
578
dlmfs_inode_cache = kmem_cache_create ("dlmfs_inode_cache" ,
579
579
sizeof (struct dlmfs_inode_private ),
580
580
0 , (SLAB_HWCACHE_ALIGN |SLAB_RECLAIM_ACCOUNT |
581
- SLAB_MEM_SPREAD | SLAB_ACCOUNT ),
581
+ SLAB_ACCOUNT ),
582
582
dlmfs_init_once );
583
583
if (!dlmfs_inode_cache ) {
584
584
status = - ENOMEM ;
Original file line number Diff line number Diff line change @@ -1706,18 +1706,17 @@ static int ocfs2_initialize_mem_caches(void)
1706
1706
sizeof (struct ocfs2_inode_info ),
1707
1707
0 ,
1708
1708
(SLAB_HWCACHE_ALIGN |SLAB_RECLAIM_ACCOUNT |
1709
- SLAB_MEM_SPREAD | SLAB_ACCOUNT ),
1709
+ SLAB_ACCOUNT ),
1710
1710
ocfs2_inode_init_once );
1711
1711
ocfs2_dquot_cachep = kmem_cache_create ("ocfs2_dquot_cache" ,
1712
1712
sizeof (struct ocfs2_dquot ),
1713
1713
0 ,
1714
- (SLAB_HWCACHE_ALIGN |SLAB_RECLAIM_ACCOUNT |
1715
- SLAB_MEM_SPREAD ),
1714
+ SLAB_HWCACHE_ALIGN |SLAB_RECLAIM_ACCOUNT ,
1716
1715
NULL );
1717
1716
ocfs2_qf_chunk_cachep = kmem_cache_create ("ocfs2_qf_chunk_cache" ,
1718
1717
sizeof (struct ocfs2_quota_chunk ),
1719
1718
0 ,
1720
- ( SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD ) ,
1719
+ SLAB_RECLAIM_ACCOUNT ,
1721
1720
NULL );
1722
1721
if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep ||
1723
1722
!ocfs2_qf_chunk_cachep ) {
You can’t perform that action at this time.
0 commit comments