diff options
| author | Dave Airlie <[email protected]> | 2010-08-02 10:05:18 +1000 | 
|---|---|---|
| committer | Dave Airlie <[email protected]> | 2010-08-02 10:05:24 +1000 | 
| commit | d656ae53f64cb0f01dac8a02c4d31453d64ef97c (patch) | |
| tree | cf641d4e5828b8f7c430b42657237c5daf9571fd /arch/sh/kernel/machine_kexec.c | |
| parent | 167ffc44caaee68ea60dadf6931a4d195a4ed1f0 (diff) | |
| parent | b37fa16e78d6f9790462b3181602a26b5af36260 (diff) | |
Merge tag 'v2.6.35-rc6' into drm-radeon-next
Need this to avoid conflicts with future radeon fixes
Diffstat (limited to 'arch/sh/kernel/machine_kexec.c')
| -rw-r--r-- | arch/sh/kernel/machine_kexec.c | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/arch/sh/kernel/machine_kexec.c b/arch/sh/kernel/machine_kexec.c index 5a559e666eb3..e2a3af31ff99 100644 --- a/arch/sh/kernel/machine_kexec.c +++ b/arch/sh/kernel/machine_kexec.c @@ -15,7 +15,7 @@  #include <linux/numa.h>  #include <linux/ftrace.h>  #include <linux/suspend.h> -#include <linux/lmb.h> +#include <linux/memblock.h>  #include <asm/pgtable.h>  #include <asm/pgalloc.h>  #include <asm/mmu_context.h> @@ -157,10 +157,10 @@ void __init reserve_crashkernel(void)  	unsigned long long crash_size, crash_base;  	int ret; -	/* this is necessary because of lmb_phys_mem_size() */ -	lmb_analyze(); +	/* this is necessary because of memblock_phys_mem_size() */ +	memblock_analyze(); -	ret = parse_crashkernel(boot_command_line, lmb_phys_mem_size(), +	ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(),  			&crash_size, &crash_base);  	if (ret == 0 && crash_size > 0) {  		crashk_res.start = crash_base; @@ -172,14 +172,14 @@ void __init reserve_crashkernel(void)  	crash_size = PAGE_ALIGN(crashk_res.end - crashk_res.start + 1);  	if (!crashk_res.start) { -		unsigned long max = lmb_end_of_DRAM() - memory_limit; -		crashk_res.start = __lmb_alloc_base(crash_size, PAGE_SIZE, max); +		unsigned long max = memblock_end_of_DRAM() - memory_limit; +		crashk_res.start = __memblock_alloc_base(crash_size, PAGE_SIZE, max);  		if (!crashk_res.start) {  			pr_err("crashkernel allocation failed\n");  			goto disable;  		}  	} else { -		ret = lmb_reserve(crashk_res.start, crash_size); +		ret = memblock_reserve(crashk_res.start, crash_size);  		if (unlikely(ret < 0)) {  			pr_err("crashkernel reservation failed - "  			       "memory is in use\n"); @@ -192,7 +192,7 @@ void __init reserve_crashkernel(void)  	/*  	 * Crash kernel trumps memory limit  	 */ -	if ((lmb_end_of_DRAM() - memory_limit) <= crashk_res.end) { +	if ((memblock_end_of_DRAM() - memory_limit) <= crashk_res.end) {  		memory_limit = 0;  		pr_info("Disabled memory limit for crashkernel\n");  	} @@ -201,7 +201,7 @@ void __init reserve_crashkernel(void)  		"for crashkernel (System RAM: %ldMB)\n",  		(unsigned long)(crash_size >> 20),  		(unsigned long)(crashk_res.start), -		(unsigned long)(lmb_phys_mem_size() >> 20)); +		(unsigned long)(memblock_phys_mem_size() >> 20));  	return;  |