dlm: NULL dereference on failure in kmem_cache_create()
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 15 May 2012 08:58:12 +0000 (11:58 +0300)
committerDavid Teigland <teigland@redhat.com>
Tue, 15 May 2012 15:39:28 +0000 (10:39 -0500)
We aren't allowed to pass NULL pointers to kmem_cache_destroy() so if
both allocations fail, it leads to a NULL dereference.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/memory.c

index da64df7..7cd24bc 100644 (file)
@@ -21,21 +21,19 @@ static struct kmem_cache *rsb_cache;
 
 int __init dlm_memory_init(void)
 {
-       int ret = 0;
-
        lkb_cache = kmem_cache_create("dlm_lkb", sizeof(struct dlm_lkb),
                                __alignof__(struct dlm_lkb), 0, NULL);
        if (!lkb_cache)
-               ret = -ENOMEM;
+               return -ENOMEM;
 
        rsb_cache = kmem_cache_create("dlm_rsb", sizeof(struct dlm_rsb),
                                __alignof__(struct dlm_rsb), 0, NULL);
        if (!rsb_cache) {
                kmem_cache_destroy(lkb_cache);
-               ret = -ENOMEM;
+               return -ENOMEM;
        }
 
-       return ret;
+       return 0;
 }
 
 void dlm_memory_exit(void)