diff options
Diffstat (limited to 'kernel/extable.c')
-rw-r--r-- | kernel/extable.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kernel/extable.c b/kernel/extable.c index c2d625fcda77..5339705b8241 100644 --- a/kernel/extable.c +++ b/kernel/extable.c | |||
@@ -72,6 +72,16 @@ int core_kernel_text(unsigned long addr) | |||
72 | return 0; | 72 | return 0; |
73 | } | 73 | } |
74 | 74 | ||
75 | /** | ||
76 | * core_kernel_data - tell if addr points to kernel data | ||
77 | * @addr: address to test | ||
78 | * | ||
79 | * Returns true if @addr passed in is from the core kernel data | ||
80 | * section. | ||
81 | * | ||
82 | * Note: On some archs it may return true for core RODATA, and false | ||
83 | * for others. But will always be true for core RW data. | ||
84 | */ | ||
75 | int core_kernel_data(unsigned long addr) | 85 | int core_kernel_data(unsigned long addr) |
76 | { | 86 | { |
77 | if (addr >= (unsigned long)_sdata && | 87 | if (addr >= (unsigned long)_sdata && |