mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
debugobjects: Remove unused return value from fill_pool()
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
923e9a1399
commit
1fda107d44
@ -79,17 +79,17 @@ static const char *obj_states[ODEBUG_STATE_MAX] = {
|
||||
[ODEBUG_STATE_NOTAVAILABLE] = "not available",
|
||||
};
|
||||
|
||||
static int fill_pool(void)
|
||||
static void fill_pool(void)
|
||||
{
|
||||
gfp_t gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
|
||||
struct debug_obj *new;
|
||||
unsigned long flags;
|
||||
|
||||
if (likely(obj_pool_free >= ODEBUG_POOL_MIN_LEVEL))
|
||||
return obj_pool_free;
|
||||
return;
|
||||
|
||||
if (unlikely(!obj_cache))
|
||||
return obj_pool_free;
|
||||
return;
|
||||
|
||||
while (obj_pool_free < ODEBUG_POOL_MIN_LEVEL) {
|
||||
|
||||
@ -102,7 +102,6 @@ static int fill_pool(void)
|
||||
obj_pool_free++;
|
||||
raw_spin_unlock_irqrestore(&pool_lock, flags);
|
||||
}
|
||||
return obj_pool_free;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user