diff options
| author | Andrew Morton <akpm@digeo.com> | 2002-10-07 20:39:04 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-10-07 20:39:04 -0700 |
| commit | e175e9b2497bf5cfc159b305b22bdc59c743e370 (patch) | |
| tree | 3c718f33e65973ef25104a60cba79abf7706ff3d /kernel | |
| parent | 15e28e8d45273677a31fad76102acc3bc4cf88f6 (diff) | |
[PATCH] numa: alloc_pages_node cleanup
Patch from Christoph Hellwig
It turns alloc_pages_node into a static inline, in the same fashion as
alloc_pages. There is no need for #ifdef CONFIG_NUMA in the patch, as
the numa node identification functions are sensible enough to do the
right thing for non-NUMA systems. Moves alloc_pages_node from numa.c
to gfp.h, and removes the EXPORT_SYMBOL which is no longer needed as
this is now an inline.
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/ksyms.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/ksyms.c b/kernel/ksyms.c index 64f6021967b3..149bdde5f2e7 100644 --- a/kernel/ksyms.c +++ b/kernel/ksyms.c @@ -90,7 +90,6 @@ EXPORT_SYMBOL(exit_mm); /* internal kernel memory management */ EXPORT_SYMBOL(__alloc_pages); -EXPORT_SYMBOL(alloc_pages_node); EXPORT_SYMBOL(__get_free_pages); EXPORT_SYMBOL(get_zeroed_page); EXPORT_SYMBOL(__page_cache_release); |
