]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
function_graph: Restore direct mode when callbacks drop to one
authorShengming Hu <hu.shengming@zte.com.cn>
Fri, 13 Feb 2026 06:29:32 +0000 (14:29 +0800)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Fri, 13 Feb 2026 14:33:14 +0000 (09:33 -0500)
commit53b2fae90ff01fede6520ca744ed5e8e366497ba
tree6762965ca4f299aab105279f98160743f3e967ea
parentfa4820b893843f7ad5e1b5c446a92426c5c946ce
function_graph: Restore direct mode when callbacks drop to one

When registering a second fgraph callback, direct path is disabled and
array loop is used instead.  When ftrace_graph_active falls back to one,
we try to re-enable direct mode via ftrace_graph_enable_direct(true, ...).
But ftrace_graph_enable_direct() incorrectly disables the static key
rather than enabling it.  This leaves fgraph_do_direct permanently off
after first multi-callback transition, so direct fast mode is never
restored.

Cc: stable@vger.kernel.org
Link: https://patch.msgid.link/20260213142932519cuWSpEXeS4-UnCvNXnK2P@zte.com.cn
Fixes: cc60ee813b503 ("function_graph: Use static_call and branch to optimize entry function")
Signed-off-by: Shengming Hu <hu.shengming@zte.com.cn>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/fgraph.c