projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eda4b71
)
nommu: Fix up vmalloc_node() symbol export regression.
author
Paul Mundt
<lethal@linux-sh.org>
Fri, 24 Dec 2010 02:50:34 +0000
(11:50 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Fri, 24 Dec 2010 02:50:34 +0000
(11:50 +0900)
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>
mm/nommu.c
patch
|
blob
|
blame
|
history
diff --git
a/mm/nommu.c
b/mm/nommu.c
index 27a9ac58851678d30c7c477d00a857cf2f63bc35..275608cd18a3d9c112971d79f0c27112c331cee0 100644
(file)
--- 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