|
|
@@ -469,7 +469,7 @@ void __init fork_init(void)
|
|
|
/* create a slab on which task_structs can be allocated */
|
|
|
task_struct_cachep = kmem_cache_create("task_struct",
|
|
|
arch_task_struct_size, align,
|
|
|
- SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT, NULL);
|
|
|
+ SLAB_PANIC|SLAB_ACCOUNT, NULL);
|
|
|
#endif
|
|
|
|
|
|
/* do the arch specific task caches init */
|
|
|
@@ -2205,18 +2205,18 @@ void __init proc_caches_init(void)
|
|
|
sighand_cachep = kmem_cache_create("sighand_cache",
|
|
|
sizeof(struct sighand_struct), 0,
|
|
|
SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_TYPESAFE_BY_RCU|
|
|
|
- SLAB_NOTRACK|SLAB_ACCOUNT, sighand_ctor);
|
|
|
+ SLAB_ACCOUNT, sighand_ctor);
|
|
|
signal_cachep = kmem_cache_create("signal_cache",
|
|
|
sizeof(struct signal_struct), 0,
|
|
|
- SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT,
|
|
|
+ SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT,
|
|
|
NULL);
|
|
|
files_cachep = kmem_cache_create("files_cache",
|
|
|
sizeof(struct files_struct), 0,
|
|
|
- SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT,
|
|
|
+ SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT,
|
|
|
NULL);
|
|
|
fs_cachep = kmem_cache_create("fs_cache",
|
|
|
sizeof(struct fs_struct), 0,
|
|
|
- SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT,
|
|
|
+ SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT,
|
|
|
NULL);
|
|
|
/*
|
|
|
* FIXME! The "sizeof(struct mm_struct)" currently includes the
|
|
|
@@ -2227,7 +2227,7 @@ void __init proc_caches_init(void)
|
|
|
*/
|
|
|
mm_cachep = kmem_cache_create("mm_struct",
|
|
|
sizeof(struct mm_struct), ARCH_MIN_MMSTRUCT_ALIGN,
|
|
|
- SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK|SLAB_ACCOUNT,
|
|
|
+ SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT,
|
|
|
NULL);
|
|
|
vm_area_cachep = KMEM_CACHE(vm_area_struct, SLAB_PANIC|SLAB_ACCOUNT);
|
|
|
mmap_init();
|