projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bce2b5
)
[PATCH] x86-64: Use correct mask to compute conflicting nodes in SRAT
author
Andi Kleen
<ak@suse.de>
Mon, 12 Sep 2005 16:49:25 +0000
(18:49 +0200)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Mon, 12 Sep 2005 17:50:58 +0000
(10:50 -0700)
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>
arch/x86_64/mm/srat.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86_64/mm/srat.c
b/arch/x86_64/mm/srat.c
index 07bf13fbcf84cad1f587c4da47b31692b528f5c9..4b2e844c15a75707de27bccac2dcccd750db480c 100644
(file)
--- 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;