[PATCH] SLOB=y && SMP=y fix
fix CONFIG_SLOB=y (when CONFIG_SMP=y): get rid of the 'align' parameter from its __alloc_percpu() implementation. Boot-tested on x86. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
30e9656cc3
commit
9934a7939e
1 changed files with 1 additions and 1 deletions
|
@ -336,7 +336,7 @@ EXPORT_SYMBOL(slab_reclaim_pages);
|
|||
|
||||
#ifdef CONFIG_SMP
|
||||
|
||||
void *__alloc_percpu(size_t size, size_t align)
|
||||
void *__alloc_percpu(size_t size)
|
||||
{
|
||||
int i;
|
||||
struct percpu_data *pdata = kmalloc(sizeof (*pdata), GFP_KERNEL);
|
||||
|
|
Loading…
Reference in a new issue