[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4B5597A7.4080607@linux.intel.com>
Date: Tue, 19 Jan 2010 19:29:43 +0800
From: Haicheng Li <haicheng.li@...ux.intel.com>
To: David Rientjes <rientjes@...gle.com>
CC: Yinghai Lu <yinghai@...nel.org>, "H. Peter Anvin" <hpa@...or.com>,
Ingo Molnar <mingo@...hat.com>,
Thomas Gleixner <tglx@...utronix.de>, x86@...nel.org,
Andi Kleen <andi@...stfloor.org>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] x86/mm/srat_64.c: nodes_parsed should include all nodes
detected by ACPI.
Haicheng Li wrote:
> - it recovers node with oldnode as long as current entry is
> HOT_PLUGGABLE. so it handles the recover issue. but I think following
> patch can simply fix it as well.
>
> diff --git a/arch/x86/mm/srat_64.c b/arch/x86/mm/srat_64.c
> index dbb5381..fdf067f 100644
> --- a/arch/x86/mm/srat_64.c
> +++ b/arch/x86/mm/srat_64.c
> @@ -281,7 +281,7 @@ acpi_numa_memory_affinity_init(struct
> acpi_srat_mem_affinity *ma)
> if (!node_test_and_set(node, nodes_parsed)) {
> nd->start = start;
> nd->end = end;
> - } else {
> + } else if ((nd->start | nd->end) != 0) {
oops, typo here, should be:
+ } else if ((start | end) != 0) {
> if (start < nd->start)
> nd->start = start;
> if (nd->end < end)
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists