1 #ifndef _ASM_POWERPC_SECTIONS_H
2 #define _ASM_POWERPC_SECTIONS_H
6 #include <linux/uaccess.h>
7 #include <asm-generic/sections.h>
13 static inline int in_kernel_text(unsigned long addr)
15 if (addr >= (unsigned long)_stext && addr < (unsigned long)__init_end)
21 static inline int overlaps_kernel_text(unsigned long start, unsigned long end)
23 return start < (unsigned long)__init_end &&
24 (unsigned long)_stext < end;
27 #undef dereference_function_descriptor
28 static inline void *dereference_function_descriptor(void *ptr)
30 struct ppc64_opd_entry *desc = ptr;
33 if (!probe_kernel_address(&desc->funcaddr, p))
40 #endif /* __KERNEL__ */
41 #endif /* _ASM_POWERPC_SECTIONS_H */