* [PATCH] fgraph: Remove unused value
@ 2024-10-21 15:54 Amit Vadhavana
0 siblings, 0 replies; only message in thread
From: Amit Vadhavana @ 2024-10-21 15:54 UTC (permalink / raw)
To: rostedt, mathieu.desnoyers, mark.rutland, mhiramat, ricardo,
skhan
Cc: av2082000, linux-kernel-mentees, linux-kernel, linux-trace-kernel
The variable `ret` is assigned a value which is unused.
Fix this by removing the redundant `ret = 0;` assignment.
This issue was reported by Coverity Scan.
Report:
CID 1600916: (#1 of 1): Unused value (UNUSED_VALUE)
assigned_value: Assigning value 0 to ret here,
but that stored value is overwritten before it can be used.
Signed-off-by: Amit Vadhavana <av2082000@gmail.com>
---
kernel/trace/fgraph.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/kernel/trace/fgraph.c b/kernel/trace/fgraph.c
index 06d254edaed7..306f1cb7bba3 100644
--- a/kernel/trace/fgraph.c
+++ b/kernel/trace/fgraph.c
@@ -1302,7 +1302,6 @@ int register_ftrace_graph(struct fgraph_ops *gops)
return ret;
}
fgraph_initialized = true;
- ret = 0;
}
if (!fgraph_array[0]) {
--
2.25.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2024-10-21 15:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-21 15:54 [PATCH] fgraph: Remove unused value Amit Vadhavana
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox