diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-01-06 19:33:10 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-01-06 19:33:10 -0500 |
commit | 85e1ffbd42f664965dc05f6e9851c06379f27fb2 (patch) | |
tree | 125d9a6ce2f74873a0d72c6c13903f11ab7fd51b /kernel/sched/debug.c | |
parent | ac5eed2b41776b05cf03aac761d3bb5e64eea24c (diff) | |
parent | d86271af64602e7c86c003b27f27c7216706ff96 (diff) |
Merge tag 'kbuild-v4.21-3' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
Pull more Kbuild updates from Masahiro Yamada:
- improve boolinit.cocci and use_after_iter.cocci semantic patches
- fix alignment for kallsyms
- move 'asm goto' compiler test to Kconfig and clean up jump_label
CONFIG option
- generate asm-generic wrappers automatically if arch does not
implement mandatory UAPI headers
- remove redundant generic-y defines
- misc cleanups
* tag 'kbuild-v4.21-3' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
kconfig: rename generated .*conf-cfg to *conf-cfg
kbuild: remove unnecessary stubs for archheader and archscripts
kbuild: use assignment instead of define ... endef for filechk_* rules
arch: remove redundant UAPI generic-y defines
kbuild: generate asm-generic wrappers if mandatory headers are missing
arch: remove stale comments "UAPI Header export list"
riscv: remove redundant kernel-space generic-y
kbuild: change filechk to surround the given command with { }
kbuild: remove redundant target cleaning on failure
kbuild: clean up rule_dtc_dt_yaml
kbuild: remove UIMAGE_IN and UIMAGE_OUT
jump_label: move 'asm goto' support test to Kconfig
kallsyms: lower alignment on ARM
scripts: coccinelle: boolinit: drop warnings on named constants
scripts: coccinelle: check for redeclaration
kconfig: remove unused "file" field of yylval union
nds32: remove redundant kernel-space generic-y
nios2: remove unneeded HAS_DMA define
Diffstat (limited to 'kernel/sched/debug.c')
-rw-r--r-- | kernel/sched/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched/debug.c b/kernel/sched/debug.c index 02bd5f969b21..de3de997e245 100644 --- a/kernel/sched/debug.c +++ b/kernel/sched/debug.c | |||
@@ -73,7 +73,7 @@ static int sched_feat_show(struct seq_file *m, void *v) | |||
73 | return 0; | 73 | return 0; |
74 | } | 74 | } |
75 | 75 | ||
76 | #ifdef HAVE_JUMP_LABEL | 76 | #ifdef CONFIG_JUMP_LABEL |
77 | 77 | ||
78 | #define jump_label_key__true STATIC_KEY_INIT_TRUE | 78 | #define jump_label_key__true STATIC_KEY_INIT_TRUE |
79 | #define jump_label_key__false STATIC_KEY_INIT_FALSE | 79 | #define jump_label_key__false STATIC_KEY_INIT_FALSE |
@@ -99,7 +99,7 @@ static void sched_feat_enable(int i) | |||
99 | #else | 99 | #else |
100 | static void sched_feat_disable(int i) { }; | 100 | static void sched_feat_disable(int i) { }; |
101 | static void sched_feat_enable(int i) { }; | 101 | static void sched_feat_enable(int i) { }; |
102 | #endif /* HAVE_JUMP_LABEL */ | 102 | #endif /* CONFIG_JUMP_LABEL */ |
103 | 103 | ||
104 | static int sched_feat_set(char *cmp) | 104 | static int sched_feat_set(char *cmp) |
105 | { | 105 | { |