* [PATCH] x86_64: Fix partial page check to ensure unusable memory is not being marked usable.
@ 2006-11-09 21:27 Aaron Durbin
2006-11-10 9:58 ` Andi Kleen
2006-11-10 10:04 ` Mel Gorman
0 siblings, 2 replies; 3+ messages in thread
From: Aaron Durbin @ 2006-11-09 21:27 UTC (permalink / raw)
To: Andi Kleen; +Cc: Linux Kernel Mailing List, Mel Gorman, Andrew Morton
Fix partial page check in e820_register_active_regions to ensure
partial pages are
not being marked as active in the memory pool.
Signed-off-by: Aaron Durbin <adurbin@google.com>
---
This was causing a machine to reboot w/ an area in the e820 that was less
than the page size because the upper address was being use to mark a hole as
active in the memory pool.
arch/x86_64/kernel/e820.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86_64/kernel/e820.c b/arch/x86_64/kernel/e820.c
index a75c829..855b561 100644
--- a/arch/x86_64/kernel/e820.c
+++ b/arch/x86_64/kernel/e820.c
@@ -278,7 +278,7 @@ e820_register_active_regions(int nid, un
>> PAGE_SHIFT;
/* Skip map entries smaller than a page */
- if (ei_startpfn > ei_endpfn)
+ if (ei_startpfn >= ei_endpfn)
continue;
/* Check if end_pfn_map should be updated */
--
1.4.2.GIT
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] x86_64: Fix partial page check to ensure unusable memory is not being marked usable.
2006-11-09 21:27 [PATCH] x86_64: Fix partial page check to ensure unusable memory is not being marked usable Aaron Durbin
@ 2006-11-10 9:58 ` Andi Kleen
2006-11-10 10:04 ` Mel Gorman
1 sibling, 0 replies; 3+ messages in thread
From: Andi Kleen @ 2006-11-10 9:58 UTC (permalink / raw)
To: Aaron Durbin; +Cc: Linux Kernel Mailing List, Mel Gorman, Andrew Morton
On Thursday 09 November 2006 22:27, Aaron Durbin wrote:
> Fix partial page check in e820_register_active_regions to ensure
> partial pages are
> not being marked as active in the memory pool.
Added thanks.
Critical fix for .19 i guess
-Andi
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] x86_64: Fix partial page check to ensure unusable memory is not being marked usable.
2006-11-09 21:27 [PATCH] x86_64: Fix partial page check to ensure unusable memory is not being marked usable Aaron Durbin
2006-11-10 9:58 ` Andi Kleen
@ 2006-11-10 10:04 ` Mel Gorman
1 sibling, 0 replies; 3+ messages in thread
From: Mel Gorman @ 2006-11-10 10:04 UTC (permalink / raw)
To: Aaron Durbin; +Cc: Andi Kleen, Linux Kernel Mailing List, Andrew Morton
On Thu, 9 Nov 2006, Aaron Durbin wrote:
> Fix partial page check in e820_register_active_regions to ensure
> partial pages are
> not being marked as active in the memory pool.
>
> Signed-off-by: Aaron Durbin <adurbin@google.com>
>
Acked-by: Mel Gorman <mel@csn.ul.ie.ie>
This bug is in 2.6.19-rc5 and the patch will be needed for 2.6.19.
Thanks Aaron.
> ---
> This was causing a machine to reboot w/ an area in the e820 that was less
> than the page size because the upper address was being use to mark a hole as
> active in the memory pool.
>
> arch/x86_64/kernel/e820.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/x86_64/kernel/e820.c b/arch/x86_64/kernel/e820.c
> index a75c829..855b561 100644
> --- a/arch/x86_64/kernel/e820.c
> +++ b/arch/x86_64/kernel/e820.c
> @@ -278,7 +278,7 @@ e820_register_active_regions(int nid, un
> >>
> PAGE_SHIFT;
>
> /* Skip map entries smaller than a page */
> - if (ei_startpfn > ei_endpfn)
> + if (ei_startpfn >= ei_endpfn)
> continue;
>
> /* Check if end_pfn_map should be updated */
> --
> 1.4.2.GIT
>
--
Mel Gorman
Part-time Phd Student Linux Technology Center
University of Limerick IBM Dublin Software Lab
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-11-10 10:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-09 21:27 [PATCH] x86_64: Fix partial page check to ensure unusable memory is not being marked usable Aaron Durbin
2006-11-10 9:58 ` Andi Kleen
2006-11-10 10:04 ` Mel Gorman
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.