Skip to content

Commit a743f26

Browse files
bebarinoctmarinas
authored andcommitted
arm64: ftrace: Don't forbid CALL_OPS+CC_OPTIMIZE_FOR_SIZE with Clang
Per commit b3f11af ("arm64: ftrace: forbid CALL_OPS with CC_OPTIMIZE_FOR_SIZE"), GCC is silently ignoring `-falign-functions=N` when passed `-Os`, causing functions to be improperly aligned. This doesn't seem to be a problem with Clang though, where enabling CALL_OPS with CC_OPTIMIZE_FOR_SIZE doesn't spit out any warnings at boot about misaligned patch-sites. Only forbid CALL_OPS if GCC is used and we're optimizing for size so that CALL_OPS can be used with clang optimizing for size. Cc: Jason Ling <[email protected]> Cc: Florian Fainelli <[email protected]> Cc: Mark Rutland <[email protected]> Cc: Nathan Chancellor <[email protected]> Cc: Nick Desaulniers <[email protected]> Cc: Bill Wendling <[email protected]> Cc: Justin Stitt <[email protected]> Cc: [email protected] Fixes: b3f11af ("arm64: ftrace: forbid CALL_OPS with CC_OPTIMIZE_FOR_SIZE") Signed-off-by: Stephen Boyd <[email protected]> Reviewed-by: Nathan Chancellor <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Catalin Marinas <[email protected]>
1 parent 93576e3 commit a743f26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm64/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ config ARM64
198198
if DYNAMIC_FTRACE_WITH_ARGS && DYNAMIC_FTRACE_WITH_CALL_OPS
199199
select HAVE_DYNAMIC_FTRACE_WITH_CALL_OPS \
200200
if (DYNAMIC_FTRACE_WITH_ARGS && !CFI_CLANG && \
201-
!CC_OPTIMIZE_FOR_SIZE)
201+
(CC_IS_CLANG || !CC_OPTIMIZE_FOR_SIZE))
202202
select FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY \
203203
if DYNAMIC_FTRACE_WITH_ARGS
204204
select HAVE_SAMPLE_FTRACE_DIRECT

0 commit comments

Comments
 (0)