On Thu, 27 Jun 2024 09:21:01 -0400 Abhishek Dubey <adu...@linux.ibm.com> wrote:
> +/* rethook initializer */ > +int __init arch_init_kprobes(void) > +{ > + return register_kprobe(&trampoline_p); > +} No, please don't use arch_init_kprobes() for initializing rethook, since rethook is used from fprobe too (at this moment). If you want to make it relays on kprobes, you have to make a dependency in powerpc's kconfig, e.g. select HAVE_RETHOOK if KPROBES But I don't recommend it. Thank you, -- Masami Hiramatsu (Google) <mhira...@kernel.org>