summaryrefslogtreecommitdiff
path: root/xen/arch/x86/numa.c
diff options
context:
space:
mode:
authorJulien Grall <julien.grall@arm.com>2017-08-16 12:26:37 +0200
committerJan Beulich <jbeulich@suse.com>2017-08-16 12:26:37 +0200
commite942b20cfa00978af1556d731076885c035d2f37 (patch)
treea76dfe90df3fd3984fac6978f51b751178770fe9 /xen/arch/x86/numa.c
parent4befb4ed85cf5f6784f8c0aaf1d2dba1dbd26ac0 (diff)
x86/numa: don't check alloc_boot_pages return
alloc_boot_pages will panic if it is not possible to allocate. So the check in the caller is pointless. Signed-off-by: Julien Grall <julien.grall@arm.com> Reviewed-by: Jan Beulich <jbeulich@suse.com>
Diffstat (limited to 'xen/arch/x86/numa.c')
-rw-r--r--xen/arch/x86/numa.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/xen/arch/x86/numa.c b/xen/arch/x86/numa.c
index d45196fafc..ffeba6e180 100644
--- a/xen/arch/x86/numa.c
+++ b/xen/arch/x86/numa.c
@@ -101,14 +101,6 @@ static int __init allocate_cachealigned_memnodemap(void)
unsigned long size = PFN_UP(memnodemapsize * sizeof(*memnodemap));
unsigned long mfn = alloc_boot_pages(size, 1);
- if ( !mfn )
- {
- printk(KERN_ERR
- "NUMA: Unable to allocate Memory to Node hash map\n");
- memnodemapsize = 0;
- return -1;
- }
-
memnodemap = mfn_to_virt(mfn);
mfn <<= PAGE_SHIFT;
size <<= PAGE_SHIFT;