On Tue, Feb 11, 2025 at 10:39:42AM +0000, James Clark wrote:
These are all static and in one compilation unit so the inline has no
effect on the binary.
I read the doc coding-style.rst, the section "15) The inline disease",
my understanding is though the inline is not encouraged, I prefer we can
follow up the rule:
A reasonable rule of thumb is to not put inline at functions that have more
than 3 lines of code in them. An exception to this rule are the cases where
a parameter is known to be a compile time constant, and as a result of this
constantness you *know* the compiler will be able to optimize most of your
function away at compile time. For a good example of this later case, see
the kmalloc() inline function.
Except if FTRACE is enabled, then some functions
which were already not inlined now get the nops added which allows them
to be traced.
I understand it is a side effect that we cannot use function tracer for
inline functions. This is not a big issue for me, as we still can use
"perf probe" and trace_printk() for debugging.
Thanks,
Leo