diff options
author | Andi Kleen <ak@suse.de> | 2005-09-12 18:49:25 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 10:50:58 -0700 |
commit | 4b6a455c7472dabcc624faa740a297d50815b4c7 (patch) | |
tree | 68bec76ac5209cedd317296b679ab03f8eeb0b25 /arch | |
parent | 2bce2b54ae91aac76b62e8110b627ba5e5cbbffd (diff) | |
download | op-kernel-dev-4b6a455c7472dabcc624faa740a297d50815b4c7.zip op-kernel-dev-4b6a455c7472dabcc624faa740a297d50815b4c7.tar.gz |
[PATCH] x86-64: Use correct mask to compute conflicting nodes in SRAT
The nodes are not set online yet at this point.
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86_64/mm/srat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/mm/srat.c b/arch/x86_64/mm/srat.c index 07bf13f..4b2e844 100644 --- a/arch/x86_64/mm/srat.c +++ b/arch/x86_64/mm/srat.c @@ -50,7 +50,7 @@ static __init int setup_node(int pxm) static __init int conflicting_nodes(unsigned long start, unsigned long end) { int i; - for_each_online_node(i) { + for_each_node_mask(i, nodes_parsed) { struct node *nd = &nodes[i]; if (nd->start == nd->end) continue; |