blob: 07956f3e78444f5f63390d8d328c000af957061f [file] [log] [blame]
Jon Loeligerfbcd54b2005-09-17 10:39:46 -05001#ifndef _ASM_POWERPC_SECTIONS_H
2#define _ASM_POWERPC_SECTIONS_H
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Jon Loeligerfbcd54b2005-09-17 10:39:46 -05004
James Bottomley2d291e92008-09-09 14:04:18 +00005#include <linux/elf.h>
6#include <linux/uaccess.h>
Jon Loeligerfbcd54b2005-09-17 10:39:46 -05007#include <asm-generic/sections.h>
8
9#ifdef __powerpc64__
10
11extern char _end[];
12
13static inline int in_kernel_text(unsigned long addr)
14{
15 if (addr >= (unsigned long)_stext && addr < (unsigned long)__init_end)
16 return 1;
17
18 return 0;
19}
20
James Bottomleydeac93d2008-09-03 20:43:36 -050021#undef dereference_function_descriptor
James Bottomley2d291e92008-09-09 14:04:18 +000022static inline void *dereference_function_descriptor(void *ptr)
23{
24 struct ppc64_opd_entry *desc = ptr;
25 void *p;
26
27 if (!probe_kernel_address(&desc->funcaddr, p))
28 ptr = p;
29 return ptr;
30}
James Bottomleydeac93d2008-09-03 20:43:36 -050031
Jon Loeligerfbcd54b2005-09-17 10:39:46 -050032#endif
33
Arnd Bergmann88ced032005-12-16 22:43:46 +010034#endif /* __KERNEL__ */
Jon Loeligerfbcd54b2005-09-17 10:39:46 -050035#endif /* _ASM_POWERPC_SECTIONS_H */