diff options
| author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 18:38:13 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 18:38:13 -0700 | 
| commit | 9a79b2274186fade17134929d4f85b70d59a3840 (patch) | |
| tree | d74e9ecc83ef617166445501b49087726595fb63 /fs/ntfs/super.c | |
| parent | 75473c1d3930896bbabcc99bb58fafd53ef42473 (diff) | |
| parent | 20c2df83d25c6a95affe6157a4c9cac4cf5ffaac (diff) | |
| download | olio-linux-3.10-9a79b2274186fade17134929d4f85b70d59a3840.tar.xz olio-linux-3.10-9a79b2274186fade17134929d4f85b70d59a3840.zip  | |
Merge branch 'kmem_death' of master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6
* 'kmem_death' of master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6:
  mm: Remove slab destructors from kmem_cache_create().
Diffstat (limited to 'fs/ntfs/super.c')
| -rw-r--r-- | fs/ntfs/super.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c index 4566b918255..90c4e3a2970 100644 --- a/fs/ntfs/super.c +++ b/fs/ntfs/super.c @@ -3143,7 +3143,7 @@ static int __init init_ntfs_fs(void)  	ntfs_index_ctx_cache = kmem_cache_create(ntfs_index_ctx_cache_name,  			sizeof(ntfs_index_context), 0 /* offset */, -			SLAB_HWCACHE_ALIGN, NULL /* ctor */, NULL /* dtor */); +			SLAB_HWCACHE_ALIGN, NULL /* ctor */);  	if (!ntfs_index_ctx_cache) {  		printk(KERN_CRIT "NTFS: Failed to create %s!\n",  				ntfs_index_ctx_cache_name); @@ -3151,7 +3151,7 @@ static int __init init_ntfs_fs(void)  	}  	ntfs_attr_ctx_cache = kmem_cache_create(ntfs_attr_ctx_cache_name,  			sizeof(ntfs_attr_search_ctx), 0 /* offset */, -			SLAB_HWCACHE_ALIGN, NULL /* ctor */, NULL /* dtor */); +			SLAB_HWCACHE_ALIGN, NULL /* ctor */);  	if (!ntfs_attr_ctx_cache) {  		printk(KERN_CRIT "NTFS: Failed to create %s!\n",  				ntfs_attr_ctx_cache_name); @@ -3160,7 +3160,7 @@ static int __init init_ntfs_fs(void)  	ntfs_name_cache = kmem_cache_create(ntfs_name_cache_name,  			(NTFS_MAX_NAME_LEN+1) * sizeof(ntfschar), 0, -			SLAB_HWCACHE_ALIGN, NULL, NULL); +			SLAB_HWCACHE_ALIGN, NULL);  	if (!ntfs_name_cache) {  		printk(KERN_CRIT "NTFS: Failed to create %s!\n",  				ntfs_name_cache_name); @@ -3169,7 +3169,7 @@ static int __init init_ntfs_fs(void)  	ntfs_inode_cache = kmem_cache_create(ntfs_inode_cache_name,  			sizeof(ntfs_inode), 0, -			SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD, NULL, NULL); +			SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD, NULL);  	if (!ntfs_inode_cache) {  		printk(KERN_CRIT "NTFS: Failed to create %s!\n",  				ntfs_inode_cache_name); @@ -3179,7 +3179,7 @@ static int __init init_ntfs_fs(void)  	ntfs_big_inode_cache = kmem_cache_create(ntfs_big_inode_cache_name,  			sizeof(big_ntfs_inode), 0,  			SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD, -			ntfs_big_inode_init_once, NULL); +			ntfs_big_inode_init_once);  	if (!ntfs_big_inode_cache) {  		printk(KERN_CRIT "NTFS: Failed to create %s!\n",  				ntfs_big_inode_cache_name);  |