diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-12-24 11:50:34 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-12-24 11:50:34 +0900 |
commit | 9a14f653dfe349c0916e6a78c413effa2fa3f001 (patch) | |
tree | f0f6165e89cf76ec754a0ab4625e37620edf15be | |
parent | eda4b716ea1f2a647a39cebae66b3fae4c4b80e4 (diff) | |
download | linux-stable-9a14f653dfe349c0916e6a78c413effa2fa3f001.tar.gz linux-stable-9a14f653dfe349c0916e6a78c413effa2fa3f001.tar.bz2 linux-stable-9a14f653dfe349c0916e6a78c413effa2fa3f001.zip |
nommu: Fix up vmalloc_node() symbol export regression.
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 <lethal@linux-sh.org>
-rw-r--r-- | mm/nommu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/nommu.c b/mm/nommu.c index 27a9ac588516..275608cd18a3 100644 --- a/mm/nommu.c +++ b/mm/nommu.c @@ -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 |