dect
/
linux-2.6
Archived
13
0
Fork 0

mm, percpu: Make sure percpu_alloc early parameter has an argument

Otherwise we are getting a nil dereference if percpu_alloc kernel boot
argument is specified without value.

 | [    0.000000] BUG: unable to handle kernel NULL pointer dereference at           (null)
 | [    0.000000] IP: [<ffffffff81391360>] strcmp+0x10/0x30

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
Cyrill Gorcunov 2012-11-25 01:17:13 +04:00 committed by Tejun Heo
parent b4916cb17c
commit 5479c78ac6
1 changed files with 3 additions and 0 deletions

View File

@ -1380,6 +1380,9 @@ enum pcpu_fc pcpu_chosen_fc __initdata = PCPU_FC_AUTO;
static int __init percpu_alloc_setup(char *str)
{
if (!str)
return -EINVAL;
if (0)
/* nada */;
#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK