Re: [PATCH v4 2/4] ftrace: Add support for function argument to graph tracer
From: Steven Rostedt
Date: Mon Apr 14 2025 - 10:04:12 EST
On Mon, 14 Apr 2025 12:08:58 +0900
Masami Hiramatsu (Google) <mhiramat@xxxxxxxxxx> wrote:
> In this case, can we use below?
>
> TEST_STRING="$TEST_STRING "'\\'$i
Just tried it and it too still doesn't work.
What does work seems to be:
TEST_STRING="$TEST_STRING "\\\\$i
-- Steve