[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220911012616.29948-1-rdunlap@infradead.org>
Date: Sat, 10 Sep 2022 18:26:16 -0700
From: Randy Dunlap <rdunlap@...radead.org>
To: linux-kernel@...r.kernel.org
Cc: Randy Dunlap <rdunlap@...radead.org>,
kernel test robot <lkp@...el.com>,
Dan Williams <dan.j.williams@...el.com>,
Ben Widawsky <bwidawsk@...nel.org>,
Jonathan Cameron <Jonathan.Cameron@...wei.com>,
linux-ia64@...r.kernel.org, Arnd Bergmann <arnd@...db.de>,
Keith Mannthey <kmannth@...ibm.com>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH] ia64: export memory_add_physaddr_to_nid to fix cxl build error
cxl_pmem.ko uses memory_add_physaddr_to_nid() but ia64 does not export it,
so this causes a build error:
ERROR: modpost: "memory_add_physaddr_to_nid" [drivers/cxl/cxl_pmem.ko] undefined!
Fix this by exporting that function.
Fixes: 8c2676a5870a ("hot-add-mem x86_64: memory_add_physaddr_to_nid node fixup")
Reported-by: kernel test robot <lkp@...el.com>
Signed-off-by: Randy Dunlap <rdunlap@...radead.org>
Cc: Dan Williams <dan.j.williams@...el.com>
Cc: Ben Widawsky <bwidawsk@...nel.org>
Cc: Jonathan Cameron <Jonathan.Cameron@...wei.com>
Cc: linux-ia64@...r.kernel.org
Cc: Arnd Bergmann <arnd@...db.de>
Cc: Keith Mannthey <kmannth@...ibm.com>
Cc: Andrew Morton <akpm@...ux-foundation.org>
---
Arnd, can you take this in your one-off fixes arch tree, or would
you prefer for Andrew to take it?
arch/ia64/mm/numa.c | 1 +
1 file changed, 1 insertion(+)
--- a/arch/ia64/mm/numa.c
+++ b/arch/ia64/mm/numa.c
@@ -75,5 +75,6 @@ int memory_add_physaddr_to_nid(u64 addr)
return 0;
return nid;
}
+EXPORT_SYMBOL(memory_add_physaddr_to_nid);
#endif
#endif
Powered by blists - more mailing lists