Skip to content

Commit

Permalink
nommu: Fix up vmalloc_node() symbol export regression.
Browse files Browse the repository at this point in the history
Commit e1ca778 ("mm: add vzalloc() and vzalloc_node() helpers") ended up
accidentally deleting the vmalloc_node() symbol export, resulting in:

"vmalloc_node" [net/core/pktgen.ko] undefined!
"vmalloc_node" [net/netfilter/x_tables.ko] undefined!

regressions.

Signed-off-by: Paul Mundt <[email protected]>
  • Loading branch information
pmundt committed Dec 24, 2010
1 parent eda4b71 commit 9a14f65
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mm/nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ void *vmalloc_node(unsigned long size, int node)
{
return vmalloc(size);
}
EXPORT_SYMBOL(vmalloc_node);

/**
* vzalloc_node - allocate memory on a specific node with zero fill
Expand Down

0 comments on commit 9a14f65

Please sign in to comment.