From: Akinobu Mita Date: Mon, 4 Jun 2007 16:14:59 +0000 (+0000) Subject: [CIFS] fix mempool destroy done in wrong order in cifs error path X-Git-Tag: v2.6.22-rc5~50^2~4 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e6985c7f6842fa040d058640e363140ad1730dc5;p=karo-tx-linux.git [CIFS] fix mempool destroy done in wrong order in cifs error path Slab cache used as memory pool can not be destroyed before the memory pool destruction. Because the memory pool still holds some objects and kmem_cache_destroy() says "Can't free all objects". Signed-off-by: Akinobu Mita Signed-off-by: Steve French --- diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index d38c69b591cf..7c04752b76cb 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -825,8 +825,8 @@ cifs_init_mids(void) sizeof (struct oplock_q_entry), 0, SLAB_HWCACHE_ALIGN, NULL, NULL); if (cifs_oplock_cachep == NULL) { - kmem_cache_destroy(cifs_mid_cachep); mempool_destroy(cifs_mid_poolp); + kmem_cache_destroy(cifs_mid_cachep); return -ENOMEM; }