aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r--fs/cifs/cifsfs.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index 80a93562b47a..09842d3f7e1d 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -86,8 +86,6 @@ extern mempool_t *cifs_sm_req_poolp;
86extern mempool_t *cifs_req_poolp; 86extern mempool_t *cifs_req_poolp;
87extern mempool_t *cifs_mid_poolp; 87extern mempool_t *cifs_mid_poolp;
88 88
89extern struct kmem_cache *cifs_oplock_cachep;
90
91static int 89static int
92cifs_read_super(struct super_block *sb, void *data, 90cifs_read_super(struct super_block *sb, void *data,
93 const char *devname, int silent) 91 const char *devname, int silent)
@@ -289,7 +287,6 @@ static int cifs_permission(struct inode *inode, int mask)
289static struct kmem_cache *cifs_inode_cachep; 287static struct kmem_cache *cifs_inode_cachep;
290static struct kmem_cache *cifs_req_cachep; 288static struct kmem_cache *cifs_req_cachep;
291static struct kmem_cache *cifs_mid_cachep; 289static struct kmem_cache *cifs_mid_cachep;
292struct kmem_cache *cifs_oplock_cachep;
293static struct kmem_cache *cifs_sm_req_cachep; 290static struct kmem_cache *cifs_sm_req_cachep;
294mempool_t *cifs_sm_req_poolp; 291mempool_t *cifs_sm_req_poolp;
295mempool_t *cifs_req_poolp; 292mempool_t *cifs_req_poolp;
@@ -939,15 +936,6 @@ cifs_init_mids(void)
939 return -ENOMEM; 936 return -ENOMEM;
940 } 937 }
941 938
942 cifs_oplock_cachep = kmem_cache_create("cifs_oplock_structs",
943 sizeof(struct oplock_q_entry), 0,
944 SLAB_HWCACHE_ALIGN, NULL);
945 if (cifs_oplock_cachep == NULL) {
946 mempool_destroy(cifs_mid_poolp);
947 kmem_cache_destroy(cifs_mid_cachep);
948 return -ENOMEM;
949 }
950
951 return 0; 939 return 0;
952} 940}
953 941
@@ -956,7 +944,6 @@ cifs_destroy_mids(void)
956{ 944{
957 mempool_destroy(cifs_mid_poolp); 945 mempool_destroy(cifs_mid_poolp);
958 kmem_cache_destroy(cifs_mid_cachep); 946 kmem_cache_destroy(cifs_mid_cachep);
959 kmem_cache_destroy(cifs_oplock_cachep);
960} 947}
961 948
962static int __init 949static int __init