Skip to content

Commit

Permalink
[PATCH] x86-64: Use correct mask to compute conflicting nodes in SRAT
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Sep 12, 2005
1 parent 2bce2b5 commit 4b6a455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86_64/mm/srat.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4b6a455

Please sign in to comment.