mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 20:54:03 +02:00
tracing/fprobe: Remove redundant snprintf in trace_fprobe_match_command_head()
trace_fprobe_match_command_head() copies trace_fprobe_symbol(tf) into a local buffer 'buf' of size MAX_COMMON_HEAD_LEN + 1 using snprintf before comparing with argv[0]. Since trace_fprobe_symbol(tf) already returns a null-terminated string, comparing it directly with argv[0] via strcmp() avoids stack buffer usage and potential symbol truncation at MAX_COMMON_HEAD_LEN. Link: https://lore.kernel.org/all/178454427449.296567.12336315661120939938.stgit@devnote2/ Assisted-by: Antigravity:gemini-3.5-flash Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
This commit is contained in:
parent
0fb6fd1eb3
commit
36db65d0e5
|
|
@ -238,13 +238,10 @@ static bool trace_fprobe_is_busy(struct dyn_event *ev)
|
|||
static bool trace_fprobe_match_command_head(struct trace_fprobe *tf,
|
||||
int argc, const char **argv)
|
||||
{
|
||||
char buf[MAX_COMMON_HEAD_LEN + 1];
|
||||
|
||||
if (!argc)
|
||||
return true;
|
||||
|
||||
snprintf(buf, sizeof(buf), "%s", trace_fprobe_symbol(tf));
|
||||
if (strcmp(buf, argv[0]))
|
||||
if (strcmp(trace_fprobe_symbol(tf), argv[0]))
|
||||
return false;
|
||||
argc--; argv++;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user