From: Masami Hiramatsu (Google) Date: Sun, 4 Jun 2023 02:29:00 +0000 (+0900) Subject: tracing/probes: Fix to return NULL and keep using current argc X-Git-Tag: v6.6.7~2491^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed5f297802fca41d88fbfa6f9c13b218e7c6f5cb;p=platform%2Fkernel%2Flinux-starfive.git tracing/probes: Fix to return NULL and keep using current argc Fix to return NULL and keep using current argc when there is $argN and the BTF is not available. Link: https://lore.kernel.org/all/168584574094.2056209.2694238431743782342.stgit@mhiramat.roam.corp.google.com/ Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202306030940.Cej2JoUx-lkp@intel.com/ Reviewed-by: Steven Rostedt (Google) Signed-off-by: Masami Hiramatsu (Google) --- diff --git a/kernel/trace/trace_probe.c b/kernel/trace/trace_probe.c index ba1c6e0..473e1c4 100644 --- a/kernel/trace/trace_probe.c +++ b/kernel/trace/trace_probe.c @@ -1273,7 +1273,8 @@ const char **traceprobe_expand_meta_args(int argc, const char *argv[], trace_probe_log_err(0, NOSUP_BTFARG); return (const char **)params; } - return 0; + *new_argc = argc; + return NULL; } ctx->params = params; ctx->nr_params = nr_params;