mm, slab: remove last vestiges of SLAB_MEM_SPREAD
[linux-block.git] / fs / ocfs2 / super.c
index a70aff17d4554af8478308dc6c2b5b5cd3122d23..b3f860888e93dc28839fc1ff10f0b15061e190ba 100644 (file)
@@ -1706,18 +1706,17 @@ static int ocfs2_initialize_mem_caches(void)
                                       sizeof(struct ocfs2_inode_info),
                                       0,
                                       (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
-                                               SLAB_MEM_SPREAD|SLAB_ACCOUNT),
+                                               SLAB_ACCOUNT),
                                       ocfs2_inode_init_once);
        ocfs2_dquot_cachep = kmem_cache_create("ocfs2_dquot_cache",
                                        sizeof(struct ocfs2_dquot),
                                        0,
-                                       (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
-                                               SLAB_MEM_SPREAD),
+                                       (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT),
                                        NULL);
        ocfs2_qf_chunk_cachep = kmem_cache_create("ocfs2_qf_chunk_cache",
                                        sizeof(struct ocfs2_quota_chunk),
                                        0,
-                                       (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
+                                       (SLAB_RECLAIM_ACCOUNT),
                                        NULL);
        if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep ||
            !ocfs2_qf_chunk_cachep) {