mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
percpu: fix static checker warnings in pcpu_destroy_chunk
From 5021b97f4026334d2c8dfad80797dd1028cddd73 Mon Sep 17 00:00:00 2001 From: Dennis Zhou <dennisz@fb.com> Date: Thu, 29 Jun 2017 07:11:41 -0700 Add NULL check in pcpu_destroy_chunk to correct static checker warnings. Signed-off-by: Dennis Zhou <dennisz@fb.com> Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
@@ -352,10 +352,13 @@ static struct pcpu_chunk *pcpu_create_chunk(void)
|
||||
|
||||
static void pcpu_destroy_chunk(struct pcpu_chunk *chunk)
|
||||
{
|
||||
if (!chunk)
|
||||
return;
|
||||
|
||||
pcpu_stats_chunk_dealloc();
|
||||
trace_percpu_destroy_chunk(chunk->base_addr);
|
||||
|
||||
if (chunk && chunk->data)
|
||||
if (chunk->data)
|
||||
pcpu_free_vm_areas(chunk->data, pcpu_nr_groups);
|
||||
pcpu_free_chunk(chunk);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user