Re: [PATCH v8 0/3] ARM: Implement MODULE_PLT support in FTRACE

From: Alexander Sverdlin
Date: Mon Apr 12 2021 - 02:28:36 EST


Hi!

On 09/04/2021 17:33, Qais Yousef wrote:
> I still think the ifdefery in patch 3 is ugly. Any reason my suggestion didn't
> work out for you? I struggle to see how this is better and why it was hard to
> incorporate my suggestion.
>
> For example
>
> - old = ftrace_call_replace(ip, adjust_address(rec, addr));
> +#ifdef CONFIG_ARM_MODULE_PLTS
> + /* mod is only supplied during module loading */
> + if (!mod)
> + mod = rec->arch.mod;
> + else
> + rec->arch.mod = mod;
> +#endif
> +
> + old = ftrace_call_replace(ip, aaddr,
> + !IS_ENABLED(CONFIG_ARM_MODULE_PLTS) || !mod);
> +#ifdef CONFIG_ARM_MODULE_PLTS
> + if (!old && mod) {
> + aaddr = get_module_plt(mod, ip, aaddr);
> + old = ftrace_call_replace(ip, aaddr, true);
> + }
> +#endif
> +
>
> There's an ifdef, followed by a code that embeds
> !IS_ENABLED(CONFIG_ARM_MODULE_PLTS) followed by another ifdef :-/

No, it's actually two small ifdefed blocks added before and after an original call,
which parameters have been modified as well. The issue with arch.mod was explained
by Steven Rostedt, maybe you've missed his email.

> And there was no need to make the new warn arg visible all the way to
> ftrace_call_repalce() and all of its users.
>
> FWIW
>
> Tested-by: Qais Yousef <qais.yousef@xxxxxxx>
--
Best regards,
Alexander Sverdlin.