diff options
Diffstat (limited to 'arch/ia64/mm/numa.c')
-rw-r--r-- | arch/ia64/mm/numa.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/ia64/mm/numa.c b/arch/ia64/mm/numa.c index 64e4c21f311c..7807fc5c0422 100644 --- a/arch/ia64/mm/numa.c +++ b/arch/ia64/mm/numa.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/node.h> | 16 | #include <linux/node.h> |
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/bootmem.h> | 18 | #include <linux/bootmem.h> |
19 | #include <linux/module.h> | ||
19 | #include <asm/mmzone.h> | 20 | #include <asm/mmzone.h> |
20 | #include <asm/numa.h> | 21 | #include <asm/numa.h> |
21 | 22 | ||
@@ -69,4 +70,21 @@ int early_pfn_to_nid(unsigned long pfn) | |||
69 | 70 | ||
70 | return 0; | 71 | return 0; |
71 | } | 72 | } |
73 | |||
74 | #ifdef CONFIG_MEMORY_HOTPLUG | ||
75 | /* | ||
76 | * SRAT information is stored in node_memblk[], then we can use SRAT | ||
77 | * information at memory-hot-add if necessary. | ||
78 | */ | ||
79 | |||
80 | int memory_add_physaddr_to_nid(u64 addr) | ||
81 | { | ||
82 | int nid = paddr_to_nid(addr); | ||
83 | if (nid < 0) | ||
84 | return 0; | ||
85 | return nid; | ||
86 | } | ||
87 | |||
88 | EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid); | ||
89 | #endif | ||
72 | #endif | 90 | #endif |