diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2018-11-13 17:57:19 +0100 |
---|---|---|
committer | Justin M. Forbes <jforbes@fedoraproject.org> | 2018-11-15 13:44:46 -0800 |
commit | 3e4010f25ec6c6eb8ffa5c8c90e041427de2212f (patch) | |
tree | 368bb982e4d7eef3431eb8b446fcaabeaad33cc0 /kernel-s390x.config | |
parent | 23a14040dbf66405d2eabd50a9b859eaebd522b2 (diff) | |
download | kernel-3e4010f25ec6c6eb8ffa5c8c90e041427de2212f.tar.gz kernel-3e4010f25ec6c6eb8ffa5c8c90e041427de2212f.tar.xz kernel-3e4010f25ec6c6eb8ffa5c8c90e041427de2212f.zip |
configs: correct cpu accounting configuration
The shipped .config files all have CONFIG_TICK_CPU_ACCOUNTING and
CONFIG_VIRT_CPU_ACCOUNTING_NATIVE set. The x86_64 .config files
additionaly have CONFIG_VIRT_CPU_ACCOUNTING_GEN set.
This is wrong because each .config should have just one of these three
set. As a result the build generates
[...]:warning: override: VIRT_CPU_ACCOUNTING_NATIVE changes choice state
24 times and
[...]:warning: override: VIRT_CPU_ACCOUNTING_GEN changes choice state
4 times. So let's make sure the shipped .config files only have one of
these three Kconfig macros set (ie, the one that's relevant for that
.config target).
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Diffstat (limited to 'kernel-s390x.config')
-rw-r--r-- | kernel-s390x.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel-s390x.config b/kernel-s390x.config index 811151a73..9885a593d 100644 --- a/kernel-s390x.config +++ b/kernel-s390x.config @@ -5280,7 +5280,7 @@ CONFIG_THRUSTMASTER_FF=y CONFIG_TI_ADS1015=m # CONFIG_TI_ADS7950 is not set # CONFIG_TI_ADS8688 is not set -CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_TICK_CPU_ACCOUNTING is not set # CONFIG_TI_CPSW_ALE is not set # CONFIG_TI_DAC082S085 is not set # CONFIG_TI_DAC5571 is not set |