On Tue, 10 Jun 2014 15:54:41 -0700 (PDT) David Rientjes <[email protected]> wrote:
> Memcg cannot be compiled as a module, so why are we using EXPORT_SYMBOL()? From: Andrew Morton <[email protected]> Subject: mm/page_alloc.c: unexport alloc_pages_exact_nid() It is only called by mm/page_cgroup.c whcih cannot be modular. Reported-by: David Rientjes <[email protected]> Cc: Fabian Frederick <[email protected]> Signed-off-by: Andrew Morton <[email protected]> --- mm/page_alloc.c | 1 - 1 file changed, 1 deletion(-) diff -puN mm/page_alloc.c~mm-page_allocc-unexport-alloc_pages_exact_nid mm/page_alloc.c --- a/mm/page_alloc.c~mm-page_allocc-unexport-alloc_pages_exact_nid +++ a/mm/page_alloc.c @@ -2957,7 +2957,6 @@ void * __meminit alloc_pages_exact_nid(i return NULL; return make_alloc_exact((unsigned long)page_address(p), order, size); } -EXPORT_SYMBOL(alloc_pages_exact_nid); /** * free_pages_exact - release memory allocated via alloc_pages_exact() _ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

