diff options
Diffstat (limited to 'arch/x86/kernel/unwind_orc.c')
| -rw-r--r-- | arch/x86/kernel/unwind_orc.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/arch/x86/kernel/unwind_orc.c b/arch/x86/kernel/unwind_orc.c index 1f9188f5357c..feb28fee6cea 100644 --- a/arch/x86/kernel/unwind_orc.c +++ b/arch/x86/kernel/unwind_orc.c @@ -5,7 +5,6 @@  #include <asm/unwind.h>  #include <asm/orc_types.h>  #include <asm/orc_lookup.h> -#include <asm/sections.h>  #define orc_warn(fmt, ...) \  	printk_deferred_once(KERN_WARNING pr_fmt("WARNING: " fmt), ##__VA_ARGS__) @@ -148,7 +147,7 @@ static struct orc_entry *orc_find(unsigned long ip)  	}  	/* vmlinux .init slow lookup: */ -	if (ip >= (unsigned long)_sinittext && ip < (unsigned long)_einittext) +	if (init_kernel_text(ip))  		return __orc_find(__start_orc_unwind_ip, __start_orc_unwind,  				  __stop_orc_unwind_ip - __start_orc_unwind_ip, ip); | 

