* [PATCH] trace-cmd split: Do not append '.1' to single file if output specified
@ 2023-07-10 16:39 Steven Rostedt
0 siblings, 0 replies; only message in thread
From: Steven Rostedt @ 2023-07-10 16:39 UTC (permalink / raw)
To: Linux Trace Devel; +Cc: Sharon Gabay
From: "Steven Rostedt (Google)" <rostedt@goodmis.org>
If the user specifies an output file, and it is not the same as the input
file, and the '-r' (repeat) option is not specified, there's no reason to
append the '.1' to the output file name. Just use what the user specified.
Link: https://lore.kernel.org/linux-trace-users/VE1PR09MB3535FFA94A0481583EF7992CF230A@VE1PR09MB3535.eurprd09.prod.outlook.com/
Suggested-by: Sharon Gabay <Sharon.Gabay@mobileye.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
tracecmd/trace-split.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tracecmd/trace-split.c b/tracecmd/trace-split.c
index 1daa847d9775..59df1d02b345 100644
--- a/tracecmd/trace-split.c
+++ b/tracecmd/trace-split.c
@@ -545,7 +545,7 @@ void trace_split (int argc, char **argv)
if (!output)
output = strdup(input_file);
- if (!repeat) {
+ if (!repeat && strcmp(output, input_file) == 0) {
output = realloc(output, strlen(output) + 3);
strcat(output, ".1");
}
--
2.39.2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2023-07-10 16:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-10 16:39 [PATCH] trace-cmd split: Do not append '.1' to single file if output specified Steven Rostedt
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).