mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 15:14:18 +08:00
jump_label, x86: Fix section mismatch
WARNING: arch/x86/kernel/built-in.o(.text+0x4c71): Section mismatch in reference from the function arch_jump_label_transform_static() to the function .init.text:text_poke_early() The function arch_jump_label_transform_static() references the function __init text_poke_early(). This is often because arch_jump_label_transform_static lacks a __init annotation or the annotation of text_poke_early is wrong. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Jason Baron <jbaron@redhat.com> Link: http://lkml.kernel.org/n/tip-9lefe89mrvurrwpqw5h8xm8z@git.kernel.org Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
cc991b83b3
commit
9cdbe1cbac
@ -50,7 +50,7 @@ void arch_jump_label_transform(struct jump_entry *entry,
|
|||||||
put_online_cpus();
|
put_online_cpus();
|
||||||
}
|
}
|
||||||
|
|
||||||
void arch_jump_label_transform_static(struct jump_entry *entry,
|
__init_or_module void arch_jump_label_transform_static(struct jump_entry *entry,
|
||||||
enum jump_label_type type)
|
enum jump_label_type type)
|
||||||
{
|
{
|
||||||
__jump_label_transform(entry, type, text_poke_early);
|
__jump_label_transform(entry, type, text_poke_early);
|
||||||
|
@ -142,7 +142,7 @@ static int __jump_label_text_reserved(struct jump_entry *iter_start,
|
|||||||
* running code can override this to make the non-live update case
|
* running code can override this to make the non-live update case
|
||||||
* cheaper.
|
* cheaper.
|
||||||
*/
|
*/
|
||||||
void __weak arch_jump_label_transform_static(struct jump_entry *entry,
|
void __weak __init_or_module arch_jump_label_transform_static(struct jump_entry *entry,
|
||||||
enum jump_label_type type)
|
enum jump_label_type type)
|
||||||
{
|
{
|
||||||
arch_jump_label_transform(entry, type);
|
arch_jump_label_transform(entry, type);
|
||||||
|
Loading…
Reference in New Issue
Block a user