Hello Linus, Please consider for pull,
The following changes since commit 76eeb9b8de9880ca38696b2fb56ac45ac0a25c6c: Linux 6.17-rc5 (2025-09-07 14:22:57 -0700) are available in the Git repository at: https://github.com/openrisc/linux.git tags/for-linus for you to fetch changes up to 8c30b0018f9d93391573e091960d257fd9de120a: openrisc: Add jump label support (2025-09-11 11:27:59 +0100) ---------------------------------------------------------------- OpenRISC updates for 6.18 I picked up one series from Chen Miao, our Google Summer of Code contributor: - Added OpenRISC support for static keys ---------------------------------------------------------------- chenmiao (4): openrisc: Add text patching API support openrisc: Add R_OR1K_32_PCREL relocation type module support openrisc: Regenerate defconfigs. openrisc: Add jump label support .../features/core/jump-labels/arch-support.txt | 2 +- arch/openrisc/Kconfig | 2 + arch/openrisc/configs/or1ksim_defconfig | 19 ++---- arch/openrisc/configs/virt_defconfig | 2 +- arch/openrisc/include/asm/Kbuild | 1 - arch/openrisc/include/asm/fixmap.h | 1 + arch/openrisc/include/asm/insn-def.h | 15 ++++ arch/openrisc/include/asm/jump_label.h | 72 ++++++++++++++++++++ arch/openrisc/include/asm/text-patching.h | 13 ++++ arch/openrisc/kernel/Makefile | 2 + arch/openrisc/kernel/jump_label.c | 51 ++++++++++++++ arch/openrisc/kernel/module.c | 4 ++ arch/openrisc/kernel/patching.c | 79 ++++++++++++++++++++++ arch/openrisc/kernel/setup.c | 2 + arch/openrisc/mm/init.c | 6 +- 15 files changed, 255 insertions(+), 16 deletions(-) create mode 100644 arch/openrisc/include/asm/insn-def.h create mode 100644 arch/openrisc/include/asm/jump_label.h create mode 100644 arch/openrisc/include/asm/text-patching.h create mode 100644 arch/openrisc/kernel/jump_label.c create mode 100644 arch/openrisc/kernel/patching.c

