File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3122,7 +3122,7 @@ void __init buffer_init(void)
31223122 int ret ;
31233123
31243124 bh_cachep = KMEM_CACHE (buffer_head ,
3125- SLAB_RECLAIM_ACCOUNT |SLAB_PANIC | SLAB_MEM_SPREAD );
3125+ SLAB_RECLAIM_ACCOUNT |SLAB_PANIC );
31263126 /*
31273127 * Limit the bh occupancy to 10% of ZONE_NORMAL
31283128 */
Original file line number Diff line number Diff line change @@ -3136,7 +3136,7 @@ static void __init dcache_init(void)
31363136 * of the dcache.
31373137 */
31383138 dentry_cache = KMEM_CACHE_USERCOPY (dentry ,
3139- SLAB_RECLAIM_ACCOUNT |SLAB_PANIC |SLAB_MEM_SPREAD | SLAB_ACCOUNT ,
3139+ SLAB_RECLAIM_ACCOUNT |SLAB_PANIC |SLAB_ACCOUNT ,
31403140 d_iname );
31413141
31423142 /* Hash may have been set up in dcache_init_early */
Original file line number Diff line number Diff line change @@ -2286,7 +2286,7 @@ void __init inode_init(void)
22862286 sizeof (struct inode ),
22872287 0 ,
22882288 (SLAB_RECLAIM_ACCOUNT |SLAB_PANIC |
2289- SLAB_MEM_SPREAD | SLAB_ACCOUNT ),
2289+ SLAB_ACCOUNT ),
22902290 init_once );
22912291
22922292 /* Hash may have been set up in inode_init_early */
Original file line number Diff line number Diff line change @@ -426,8 +426,7 @@ EXPORT_SYMBOL(mb_cache_destroy);
426426
427427static int __init mbcache_init (void )
428428{
429- mb_entry_cache = KMEM_CACHE (mb_cache_entry ,
430- SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD );
429+ mb_entry_cache = KMEM_CACHE (mb_cache_entry , SLAB_RECLAIM_ACCOUNT );
431430 if (!mb_entry_cache )
432431 return - ENOMEM ;
433432 return 0 ;
You can’t perform that action at this time.
0 commit comments