diff options
author | Josh Poimboeuf <jpoimboe@redhat.com> | 2018-02-20 11:37:53 -0600 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2018-02-21 16:54:06 +0100 |
commit | 9fbcc57aa16424ef84cb54e0d9db3221763de88a (patch) | |
tree | 9606cd83a450c2ff03dfb9c83f30f6906d396e33 /include | |
parent | dc1dd184c2f0016bec35c0d7a48c057e0ad763d3 (diff) | |
download | linux-stable-9fbcc57aa16424ef84cb54e0d9db3221763de88a.tar.gz linux-stable-9fbcc57aa16424ef84cb54e0d9db3221763de88a.tar.bz2 linux-stable-9fbcc57aa16424ef84cb54e0d9db3221763de88a.zip |
extable: Make init_kernel_text() global
Convert init_kernel_text() to a global function and use it in a few
places instead of manually comparing _sinittext and _einittext.
Note that kallsyms.h has a very similar function called
is_kernel_inittext(), but its end check is inclusive. I'm not sure
whether that's intentional behavior, so I didn't touch it.
Suggested-by: Jason Baron <jbaron@akamai.com>
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Cc: Borislav Petkov <bp@suse.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/4335d02be8d45ca7d265d2f174251d0b7ee6c5fd.1519051220.git.jpoimboe@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kernel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index ce51455e2adf..3fd291503576 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -472,6 +472,7 @@ extern bool parse_option_str(const char *str, const char *option); extern char *next_arg(char *args, char **param, char **val); extern int core_kernel_text(unsigned long addr); +extern int init_kernel_text(unsigned long addr); extern int core_kernel_data(unsigned long addr); extern int __kernel_text_address(unsigned long addr); extern int kernel_text_address(unsigned long addr); |