Skip to content

Commit cd4b5d5

Browse files
committed
Merge branch 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull static key fix from Ingo Molnar: "Fix a boot warning related to bad init ordering of the static keys self-test" * 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: jump_label: Invoke jump_label_test() via early_initcall()
2 parents fcbc38b + 92ee46e commit cd4b5d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/jump_label.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ static __init int jump_label_test(void)
769769

770770
return 0;
771771
}
772-
late_initcall(jump_label_test);
772+
early_initcall(jump_label_test);
773773
#endif /* STATIC_KEYS_SELFTEST */
774774

775775
#endif /* HAVE_JUMP_LABEL */

0 commit comments

Comments
 (0)