diff options
| author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-10-09 22:13:30 +0200 | 
|---|---|---|
| committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-10-09 22:13:30 +0200 | 
| commit | 670aee3fc7ac37ae947f8b582d87b51d5fa36524 (patch) | |
| tree | 9885998483d4506208e5aef9c13c8a86adea20bb /arch/mips/kernel/setup.c | |
| parent | d61e87ac53292a3138b4354b687558973686b6ca (diff) | |
| parent | 55582bccdc1e89ecc973c260d46e247df675d4df (diff) | |
Merge branches 'pm-devfreq' and 'pm-cpufreq'
* pm-devfreq:
  PM / devfreq: fix double kfree
  PM / devfreq: Fix governor_store()
* pm-cpufreq:
  cpufreq: prevent lockup on reading scaling_available_frequencies
  cpufreq: acpi_cpufreq: prevent crash on reading freqdomain_cpus
Diffstat (limited to 'arch/mips/kernel/setup.c')
| -rw-r--r-- | arch/mips/kernel/setup.c | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 35b8316002f8..479515109e5b 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c @@ -338,7 +338,7 @@ static void __init bootmem_init(void)  		if (end <= reserved_end)  			continue;  #ifdef CONFIG_BLK_DEV_INITRD -		/* mapstart should be after initrd_end */ +		/* Skip zones before initrd and initrd itself */  		if (initrd_end && end <= (unsigned long)PFN_UP(__pa(initrd_end)))  			continue;  #endif @@ -371,6 +371,14 @@ static void __init bootmem_init(void)  		max_low_pfn = PFN_DOWN(HIGHMEM_START);  	} +#ifdef CONFIG_BLK_DEV_INITRD +	/* +	 * mapstart should be after initrd_end +	 */ +	if (initrd_end) +		mapstart = max(mapstart, (unsigned long)PFN_UP(__pa(initrd_end))); +#endif +  	/*  	 * Initialize the boot-time allocator with low memory only.  	 */ | 
