diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-12 11:15:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-12 11:15:53 -0500 |
commit | fef3ff2eb777e76cfa5ae67591982d902c17139c (patch) | |
tree | 70ec1ae7b5db98dfc5efa2adfabf798dfb9e7694 /mm | |
parent | e7b55b8fcd3a32ba1f95ccd95fb9a11ccfa63563 (diff) | |
parent | 5479c78ac6f688ea5ea8c49b44cf90ea87b63931 (diff) |
Merge branch 'for-3.8' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu
Pull percpu changes from Tejun Heo:
"Nothing exciting here either. Joonsoo's is almost cosmetic. Cyrill's
patch fixes "percpu_alloc" early kernel param handling so that the
kernel doesn't crash when the parameter is specified w/o any argument."
* 'for-3.8' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu:
mm, percpu: Make sure percpu_alloc early parameter has an argument
percpu: make pcpu_free_chunk() use pcpu_mem_free() instead of kfree()
Diffstat (limited to 'mm')
-rw-r--r-- | mm/percpu.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mm/percpu.c b/mm/percpu.c index ddc5efb9c5bb..8c8e08f3a692 100644 --- a/mm/percpu.c +++ b/mm/percpu.c | |||
@@ -631,7 +631,7 @@ static void pcpu_free_chunk(struct pcpu_chunk *chunk) | |||
631 | if (!chunk) | 631 | if (!chunk) |
632 | return; | 632 | return; |
633 | pcpu_mem_free(chunk->map, chunk->map_alloc * sizeof(chunk->map[0])); | 633 | pcpu_mem_free(chunk->map, chunk->map_alloc * sizeof(chunk->map[0])); |
634 | kfree(chunk); | 634 | pcpu_mem_free(chunk, pcpu_chunk_struct_size); |
635 | } | 635 | } |
636 | 636 | ||
637 | /* | 637 | /* |
@@ -1380,6 +1380,9 @@ enum pcpu_fc pcpu_chosen_fc __initdata = PCPU_FC_AUTO; | |||
1380 | 1380 | ||
1381 | static int __init percpu_alloc_setup(char *str) | 1381 | static int __init percpu_alloc_setup(char *str) |
1382 | { | 1382 | { |
1383 | if (!str) | ||
1384 | return -EINVAL; | ||
1385 | |||
1383 | if (0) | 1386 | if (0) |
1384 | /* nada */; | 1387 | /* nada */; |
1385 | #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK | 1388 | #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK |