Skip to content

Commit 69d113b

Browse files
khayash1ctmarinas
authored andcommitted
arm64: entry-ftrace.S: Fix missing argument for CONFIG_FUNCTION_GRAPH_TRACER=y
Missing argument of another SYM_INNER_LABEL() breaks build for CONFIG_FUNCTION_GRAPH_TRACER=y. Fixes: e2d591d ("arm64: entry-ftrace.S: Convert to modern annotations for assembly functions") Signed-off-by: Kunihiko Hayashi <[email protected]> Signed-off-by: Catalin Marinas <[email protected]> Acked-by: Mark Brown <[email protected]>
1 parent 1157eb8 commit 69d113b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm64/kernel/entry-ftrace.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ SYM_INNER_LABEL(ftrace_call, SYM_L_GLOBAL) // tracer(pc, lr);
279279
// where xxx can be any kind of tracer.
280280

281281
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
282-
SYM_INNER_LABEL(ftrace_graph_call) // ftrace_graph_caller();
282+
SYM_INNER_LABEL(ftrace_graph_call, SYM_L_GLOBAL) // ftrace_graph_caller();
283283
nop // If enabled, this will be replaced
284284
// "b ftrace_graph_caller"
285285
#endif

0 commit comments

Comments
 (0)