]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
debugobjects: Fill_pool() returns void now
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 18 Apr 2012 11:28:10 +0000 (14:28 +0300)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 18 Apr 2012 11:38:48 +0000 (13:38 +0200)
There was a return missed in 1fda107d44 "debugobjects: Remove unused
return value from fill_pool()".  It makes gcc complain:

lib/debugobjects.c: In function ‘fill_pool’:
lib/debugobjects.c:98:4: warning: ‘return’ with a value, in
function returning void [enabled by default]

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: http://lkml.kernel.org/r/20120418112810.GA2669@elgon.mountain
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
lib/debugobjects.c

index 1b6c00a933a9d50f92dce9cf94481ac062c6397b..d11808ca4bc49c22c2b43305238de5acc205758d 100644 (file)
@@ -95,7 +95,7 @@ static void fill_pool(void)
 
                new = kmem_cache_zalloc(obj_cache, gfp);
                if (!new)
-                       return obj_pool_free;
+                       return;
 
                raw_spin_lock_irqsave(&pool_lock, flags);
                hlist_add_head(&new->node, &obj_pool);