Message ID | 20220608073519.425718-1-ardb@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ARM: configs: enable jump label support for multi v5/v7 | expand |
On Wed, Jun 8, 2022 at 9:35 AM Ard Biesheuvel <ardb@kernel.org> wrote: > > Enable jump labels in the v5 and v7 multiarch defconfigs, so we get both > the performance benefits and the test coverage. > > Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Looks good to me. I assume this is for linux-next, not for 5.19, right? Arnd
On Wed, 8 Jun 2022 at 09:50, Arnd Bergmann <arnd@arndb.de> wrote: > > On Wed, Jun 8, 2022 at 9:35 AM Ard Biesheuvel <ardb@kernel.org> wrote: > > > > Enable jump labels in the v5 and v7 multiarch defconfigs, so we get both > > the performance benefits and the test coverage. > > > > Signed-off-by: Ard Biesheuvel <ardb@kernel.org> > > Looks good to me. I assume this is for linux-next, not for 5.19, right? > linux-next is fine
diff --git a/arch/arm/configs/multi_v5_defconfig b/arch/arm/configs/multi_v5_defconfig index f8d301150732..7141dbacabfe 100644 --- a/arch/arm/configs/multi_v5_defconfig +++ b/arch/arm/configs/multi_v5_defconfig @@ -315,3 +315,4 @@ CONFIG_DEBUG_KERNEL=y # CONFIG_DEBUG_PREEMPT is not set # CONFIG_FTRACE is not set CONFIG_DEBUG_USER=y +CONFIG_JUMP_LABEL=y diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig index ce9826bce29b..efef6a466498 100644 --- a/arch/arm/configs/multi_v7_defconfig +++ b/arch/arm/configs/multi_v7_defconfig @@ -1252,3 +1252,4 @@ CONFIG_CMA_SIZE_MBYTES=64 CONFIG_PRINTK_TIME=y CONFIG_MAGIC_SYSRQ=y CONFIG_DEBUG_FS=y +CONFIG_JUMP_LABEL=y
Enable jump labels in the v5 and v7 multiarch defconfigs, so we get both the performance benefits and the test coverage. Signed-off-by: Ard Biesheuvel <ardb@kernel.org> --- arch/arm/configs/multi_v5_defconfig | 1 + arch/arm/configs/multi_v7_defconfig | 1 + 2 files changed, 2 insertions(+)