[PATCH 2/4] x86_64: fix dma_alloc_pages v2

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Yinghai Lu
Date: Wednesday, February 20, 2008 - 1:36 am

one system with two nodes and two ht links on every node.
the bios already have _pxm for two links.

when no ram installed for node1 will have panic.

reason: the device on second chain will get node = 1 from dev_to_node...via
pci_acpi_scan_root.
but node1 doesn't have ram installed.
in dma_alloc_pages it will pass check with first_node(node_online_map)...
and will have problem with __alloc_pages in alloc_pages_node.

this patch will use updated dev_to node, so remove check about fist_node etc

Signed-off-by: Yinghai Lu <yinghai.lu@sun.com>

Index: linux-2.6/arch/x86/kernel/pci-dma_64.c
===================================================================
--- linux-2.6.orig/arch/x86/kernel/pci-dma_64.c
+++ linux-2.6/arch/x86/kernel/pci-dma_64.c
@@ -53,12 +53,6 @@ dma_alloc_pages(struct device *dev, gfp_
 	int node;
 
 	node = dev_to_node(dev);
-	if (node == -1)
-		node = numa_node_id();
-
-	if (node < first_node(node_online_map))
-		node = first_node(node_online_map);
-
 	page = alloc_pages_node(node, gfp, order);
 	return page ? page_address(page) : NULL;
 }
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 1/4] make dev_to_node return online node, Yinghai Lu, (Wed Feb 20, 1:32 am)
[PATCH 2/4] x86_64: fix dma_alloc_pages v2, Yinghai Lu, (Wed Feb 20, 1:36 am)
Re: [PATCH 2/4] x86_64: fix dma_alloc_pages v2, Yinghai Lu, (Wed Feb 20, 3:07 am)
Re: [PATCH 1/4] make dev_to_node return online node, Yinghai Lu, (Wed Feb 20, 1:41 pm)