diff options
Diffstat (limited to 'mm/mmap.c')
| -rw-r--r-- | mm/mmap.c | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/mm/mmap.c b/mm/mmap.c index a910c045cfd..749623196cb 100644 --- a/mm/mmap.c +++ b/mm/mmap.c @@ -2472,3 +2472,13 @@ void mm_drop_all_locks(struct mm_struct *mm)  	mutex_unlock(&mm_all_locks_mutex);  } + +/* + * initialise the VMA slab + */ +void __init mmap_init(void) +{ +	vm_area_cachep = kmem_cache_create("vm_area_struct", +			sizeof(struct vm_area_struct), 0, +			SLAB_PANIC, NULL); +}  |