diff options
Diffstat (limited to 'mm/zsmalloc.c')
| -rw-r--r-- | mm/zsmalloc.c | 10 | 
1 files changed, 4 insertions, 6 deletions
diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c index 08bd7a3d464a..0a7f81aa2249 100644 --- a/mm/zsmalloc.c +++ b/mm/zsmalloc.c @@ -45,10 +45,6 @@   *   */ -#ifdef CONFIG_ZSMALLOC_DEBUG -#define DEBUG -#endif -  #include <linux/module.h>  #include <linux/kernel.h>  #include <linux/sched.h> @@ -289,7 +285,8 @@ static int create_handle_cache(struct zs_pool *pool)  static void destroy_handle_cache(struct zs_pool *pool)  { -	kmem_cache_destroy(pool->handle_cachep); +	if (pool->handle_cachep) +		kmem_cache_destroy(pool->handle_cachep);  }  static unsigned long alloc_handle(struct zs_pool *pool) @@ -312,7 +309,8 @@ static void record_obj(unsigned long handle, unsigned long obj)  #ifdef CONFIG_ZPOOL -static void *zs_zpool_create(char *name, gfp_t gfp, struct zpool_ops *zpool_ops) +static void *zs_zpool_create(char *name, gfp_t gfp, struct zpool_ops *zpool_ops, +			     struct zpool *zpool)  {  	return zs_create_pool(name, gfp);  }  |