| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH] APRP Patch04: Propagate final value of max_low_pfn to max_pfn |
| From: | Raghu Gandham <raghu@mips.com> |
| Date: | Fri, 10 Jul 2009 02:00:34 -0700 |
| Cc: | raghu@mips.com, chris@mips.com |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | StGIT/0.14.3 |
From: Chris Dearman <chris@mips.com>
Signed-off-by: Chris Dearman <chris@mips.com>
---
arch/mips/kernel/setup.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c
index 2950b97..1e9862d 100644
--- a/arch/mips/kernel/setup.c
+++ b/arch/mips/kernel/setup.c
@@ -326,7 +326,6 @@ static void __init bootmem_init(void)
/*
* Determine low and high memory ranges
*/
- max_pfn = max_low_pfn;
if (max_low_pfn > PFN_DOWN(HIGHMEM_START)) {
#ifdef CONFIG_HIGHMEM
highstart_pfn = PFN_DOWN(HIGHMEM_START);
@@ -334,6 +333,8 @@ static void __init bootmem_init(void)
#endif
max_low_pfn = PFN_DOWN(HIGHMEM_START);
}
+ /* Propagate final value of max_low_pfn to max_pfn */
+ max_pfn = max_low_pfn;
/*
* Initialize the boot-time allocator with low memory only.
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 2/2] Added coherentio command line option for DMA_NONCOHERENT kernel, Raghu Gandham |
|---|---|
| Next by Date: | [PATCH] Fix compiler warning in vpe.c, Raghu Gandham |
| Previous by Thread: | [PATCH 0/2] Port Malta setup patches from linux-mti, Raghu Gandham |
| Next by Thread: | [PATCH] Fix compiler warning in vpe.c, Raghu Gandham |
| Indexes: | [Date] [Thread] [Top] [All Lists] |