diff options
author | 2017-12-29 08:53:52 +0100 | |
---|---|---|
committer | 2018-01-08 11:46:23 -0800 | |
commit | 55ce6e23ebd159bc3d8f0a20e27503e09b5d8138 (patch) | |
tree | 54c79d9fe9a676a4ff6bc480b2917ea4345056c8 | |
parent | mm: don't export arch_add_memory (diff) | |
download | linux-dev-55ce6e23ebd159bc3d8f0a20e27503e09b5d8138.tar.xz linux-dev-55ce6e23ebd159bc3d8f0a20e27503e09b5d8138.zip |
mm: don't export __add_pages
This function isn't used by any modules, and is only to be called
from core MM code. This includes the calls for the add_pages wrapper
that might be inlined.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
-rw-r--r-- | mm/memory_hotplug.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index c52aa05b106c..5c6f96e6b334 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c @@ -334,7 +334,6 @@ int __ref __add_pages(int nid, unsigned long phys_start_pfn, out: return err; } -EXPORT_SYMBOL_GPL(__add_pages); #ifdef CONFIG_MEMORY_HOTREMOVE /* find the smallest valid pfn in the range [start_pfn, end_pfn) */ |