diff mbox series

x86/ftrace: Include <asm/ptrace.h>

Message ID 20240916221557.846853-2-samitolvanen@google.com (mailing list archive)
State Accepted
Commit ad686707ea16099a791bcdcd5372764c5059aecc
Headers show
Series x86/ftrace: Include <asm/ptrace.h> | expand

Commit Message

Sami Tolvanen Sept. 16, 2024, 10:15 p.m. UTC
<asm/ftrace.h> uses struct pt_regs in several places. Include
<asm/ptrace.h> to ensure it's visible. This is needed to make sure
object files that only include <asm/asm-prototypes.h> compile.

Suggested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
---
 arch/x86/include/asm/ftrace.h | 2 ++
 1 file changed, 2 insertions(+)


base-commit: ad060dbbcfcfcba624ef1a75e1d71365a98b86d8

Comments

Masami Hiramatsu (Google) Sept. 17, 2024, 5:17 a.m. UTC | #1
On Mon, 16 Sep 2024 22:15:57 +0000
Sami Tolvanen <samitolvanen@google.com> wrote:

> <asm/ftrace.h> uses struct pt_regs in several places. Include
> <asm/ptrace.h> to ensure it's visible. This is needed to make sure
> object files that only include <asm/asm-prototypes.h> compile.

Looks good to me.

Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>

Thanks!

> 
> Suggested-by: Masahiro Yamada <masahiroy@kernel.org>
> Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
> ---
>  arch/x86/include/asm/ftrace.h | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/x86/include/asm/ftrace.h b/arch/x86/include/asm/ftrace.h
> index 0152a81d9b4a..b4d719de2c84 100644
> --- a/arch/x86/include/asm/ftrace.h
> +++ b/arch/x86/include/asm/ftrace.h
> @@ -2,6 +2,8 @@
>  #ifndef _ASM_X86_FTRACE_H
>  #define _ASM_X86_FTRACE_H
>  
> +#include <asm/ptrace.h>
> +
>  #ifdef CONFIG_FUNCTION_TRACER
>  #ifndef CC_USING_FENTRY
>  # error Compiler does not support fentry?
> 
> base-commit: ad060dbbcfcfcba624ef1a75e1d71365a98b86d8
> -- 
> 2.46.0.662.g92d0881bb0-goog
>
diff mbox series

Patch

diff --git a/arch/x86/include/asm/ftrace.h b/arch/x86/include/asm/ftrace.h
index 0152a81d9b4a..b4d719de2c84 100644
--- a/arch/x86/include/asm/ftrace.h
+++ b/arch/x86/include/asm/ftrace.h
@@ -2,6 +2,8 @@ 
 #ifndef _ASM_X86_FTRACE_H
 #define _ASM_X86_FTRACE_H
 
+#include <asm/ptrace.h>
+
 #ifdef CONFIG_FUNCTION_TRACER
 #ifndef CC_USING_FENTRY
 # error Compiler does not support fentry?