[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20191118125246.3eb768fa@oasis.local.home>
Date: Mon, 18 Nov 2019 12:52:46 -0500
From: Steven Rostedt <rostedt@...dmis.org>
To: Borislav Petkov <bp@...en8.de>
Cc: Peter Zijlstra <peterz@...radead.org>,
linux-tip-commits@...r.kernel.org,
Alexei Starovoitov <ast@...nel.org>,
Andy Lutomirski <luto@...nel.org>,
Daniel Bristot de Oliveira <bristot@...hat.com>,
"H. Peter Anvin" <hpa@...or.com>,
Josh Poimboeuf <jpoimboe@...hat.com>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...nel.org>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] x86/ftrace: Mark ftrace_modify_code_direct() __ref
On Mon, 18 Nov 2019 18:35:10 +0100
Borislav Petkov <bp@...en8.de> wrote:
> diff --git a/arch/x86/kernel/ftrace.c b/arch/x86/kernel/ftrace.c
> index 2a179fb35cd1..108ee96f8b66 100644
> --- a/arch/x86/kernel/ftrace.c
> +++ b/arch/x86/kernel/ftrace.c
> @@ -99,7 +99,12 @@ static int ftrace_verify_code(unsigned long ip, const char *old_code)
> return 0;
> }
>
> -static int
> +/*
> + * Marked __ref because it calls text_poke_early() which is .init.text. That is
> + * ok because that call will happen early, during boot, when .init sections are
> + * still present.
> + */
> +static int __ref
Acked-by: Steven Rostedt (VMware) <rostedt@...dmis.org>
-- Steve
> ftrace_modify_code_direct(unsigned long ip, const char *old_code,
> const char *new_code)
> {
Powered by blists - more mailing lists