diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-20 16:37:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-20 16:37:22 -0400 |
commit | bc091c93a0f60717aa99e25c406892cd8c0187dc (patch) | |
tree | 66fc7f6c97a11327c3acb0aee5c346717672a9f3 /kernel | |
parent | 3ed4c0583daa34dedb568b26ff99e5a7b58db612 (diff) | |
parent | a2d063ac216c1618bfc2b4d40b7176adffa63511 (diff) |
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
extable, core_kernel_data(): Make sure all archs define _sdata
core_kernel_data(): Fix architectures that do not define _sdata
Diffstat (limited to 'kernel')
-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 && |