mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 19:16:42 +07:00
32b7eb8771
Change ARCH_HAVE_LIVE_PATCHING to HAVE_LIVE_PATCHING in Kconfigs. HAVE_ bools are prevalent there and we should go with the flow. Suggested-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Miroslav Benes <mbenes@suse.cz> Acked-by: Josh Poimboeuf <jpoimboe@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
19 lines
567 B
Plaintext
19 lines
567 B
Plaintext
config HAVE_LIVE_PATCHING
|
|
bool
|
|
help
|
|
Arch supports kernel live patching
|
|
|
|
config LIVE_PATCHING
|
|
bool "Kernel Live Patching"
|
|
depends on DYNAMIC_FTRACE_WITH_REGS
|
|
depends on MODULES
|
|
depends on SYSFS
|
|
depends on KALLSYMS_ALL
|
|
depends on HAVE_LIVE_PATCHING
|
|
help
|
|
Say Y here if you want to support kernel live patching.
|
|
This option has no runtime impact until a kernel "patch"
|
|
module uses the interface provided by this option to register
|
|
a patch, causing calls to patched functions to be redirected
|
|
to new function code contained in the patch module.
|