From: Masami Hiramatsu (Google) <mhiramat@kernel.org>
To: Song Chen <chensong_2000@189.cn>
Cc: rostedt@goodmis.org, arnd@arndb.de, linux-kernel@vger.kernel.org,
linux-trace-kernel@vger.kernel.org, linux-arch@vger.kernel.org
Subject: Re: [PATCH v3 4/4] kernel/trace: remove calling regs_* when compiling HEXAGON
Date: Fri, 23 Dec 2022 23:15:45 +0900 [thread overview]
Message-ID: <20221223231545.e619f35b321192fbaa2f4cf9@kernel.org> (raw)
In-Reply-To: <1670229017-4106-1-git-send-email-chensong_2000@189.cn>
On Mon, 5 Dec 2022 16:30:17 +0800
Song Chen <chensong_2000@189.cn> wrote:
> kernel test robot reports below errors:
>
> In file included from kernel/trace/trace_events_synth.c:22:
> >> kernel/trace/trace_probe_kernel.h:203:9: error: call to
> undeclared function 'regs_get_register'; ISO C99 and later
> do not support implicit function declarations
> [-Wimplicit-function-declaration]
> val = regs_get_register(regs, code->param);
>
> HEXAGON doesn't define and implement those reg_* functions
> underneath arch/hexagon as well as other archs. To remove
> those errors, i have to include those function calls in
> "CONFIG_HEXAGON"
>
> It looks ugly, but i don't know any other way to fix it,
> this patch can be reverted after reg_* have been in place
> in arch/hexagon.
>
Sorry, NACK. This is too add-hoc patch and this is introduced
by your patch. Do not introduce an issue and fix it later in
the same series.
Please fix it in your first patch. Maybe you should make another
header file for those APIs.
Thank you,
> Signed-off-by: Song Chen <chensong_2000@189.cn>
> Reported-by: kernel test robot <lkp@intel.com>
> ---
> kernel/trace/trace_probe_kernel.h | 21 +++++++++++++++++++--
> 1 file changed, 19 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/trace/trace_probe_kernel.h b/kernel/trace/trace_probe_kernel.h
> index 8c42abe0dacf..7e958b7f07e5 100644
> --- a/kernel/trace/trace_probe_kernel.h
> +++ b/kernel/trace/trace_probe_kernel.h
> @@ -130,8 +130,7 @@ probe_mem_read(void *dest, void *src, size_t size)
> return copy_from_kernel_nofault(dest, src, size);
> }
>
> -static nokprobe_inline unsigned long
> -get_event_field(struct fetch_insn *code, void *rec)
> +static unsigned long get_event_field(struct fetch_insn *code, void *rec)
> {
> struct ftrace_event_field *field = code->data;
> unsigned long val;
> @@ -194,23 +193,41 @@ static int
> process_fetch_insn(struct fetch_insn *code, void *rec, void *dest,
> void *base)
> {
> +#ifndef CONFIG_HEXAGON
> struct pt_regs *regs = rec;
> +#endif
> unsigned long val;
>
> retry:
> /* 1st stage: get value from context */
> switch (code->op) {
> case FETCH_OP_REG:
> +#ifdef CONFIG_HEXAGON
> + val = 0;
> +#else
> val = regs_get_register(regs, code->param);
> +#endif
> break;
> case FETCH_OP_STACK:
> +#ifdef CONFIG_HEXAGON
> + val = 0;
> +#else
> val = regs_get_kernel_stack_nth(regs, code->param);
> +#endif
> break;
> case FETCH_OP_STACKP:
> +#ifdef CONFIG_HEXAGON
> + val = 0;
> +#else
> val = kernel_stack_pointer(regs);
> +#endif
> break;
> case FETCH_OP_RETVAL:
> +#ifdef CONFIG_HEXAGON
> + val = 0;
> +#else
> val = regs_return_value(regs);
> +#endif
> break;
> case FETCH_OP_IMM:
> val = code->immediate;
> --
> 2.25.1
>
--
Masami Hiramatsu (Google) <mhiramat@kernel.org>
next prev parent reply other threads:[~2022-12-23 14:15 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-05 8:30 [PATCH v3 4/4] kernel/trace: remove calling regs_* when compiling HEXAGON Song Chen
2022-12-23 14:15 ` Masami Hiramatsu [this message]
2022-12-27 9:49 ` Song Chen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221223231545.e619f35b321192fbaa2f4cf9@kernel.org \
--to=mhiramat@kernel.org \
--cc=arnd@arndb.de \
--cc=chensong_2000@189.cn \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).