42 lines
1.6 KiB
Diff
42 lines
1.6 KiB
Diff
|
|
From 9fd5f8ecd0bb98b6fdcfe75118b535f613226b9f Mon Sep 17 00:00:00 2001
|
||
|
|
From: "Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com>
|
||
|
|
Date: Tue, 14 Sep 2021 16:12:13 +0300
|
||
|
|
Subject: [PATCH] trace-cmd report: Fix typos in error messages
|
||
|
|
|
||
|
|
Fixed typos in "trace-cmd report" messages that report reading and
|
||
|
|
parsing errors.
|
||
|
|
|
||
|
|
Link: https://lore.kernel.org/linux-trace-devel/20210914131232.3964615-3-tz.stoyanov@gmail.com
|
||
|
|
|
||
|
|
Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
|
||
|
|
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
|
||
|
|
---
|
||
|
|
tracecmd/trace-read.c | 4 ++--
|
||
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/tracecmd/trace-read.c b/tracecmd/trace-read.c
|
||
|
|
index 6f43c1d2..31724b09 100644
|
||
|
|
--- a/tracecmd/trace-read.c
|
||
|
|
+++ b/tracecmd/trace-read.c
|
||
|
|
@@ -1290,7 +1290,7 @@ static void read_data_info(struct list_head *handle_list, enum output_type otype
|
||
|
|
die("error in reading buffer instance");
|
||
|
|
new_handle = tracecmd_buffer_instance_handle(handles->handle, i);
|
||
|
|
if (!new_handle) {
|
||
|
|
- warning("could not retreive handle %s", name);
|
||
|
|
+ warning("could not retrieve handle %s", name);
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
add_handle(new_handle, name);
|
||
|
|
@@ -1324,7 +1324,7 @@ static void read_data_info(struct list_head *handle_list, enum output_type otype
|
||
|
|
if (last_record) {
|
||
|
|
int cpu = last_record->cpu;
|
||
|
|
if (cpu >= last_handle->cpus)
|
||
|
|
- die("cpu %d creater than %d\n", cpu, last_handle->cpus);
|
||
|
|
+ die("cpu %d greater than %d\n", cpu, last_handle->cpus);
|
||
|
|
if (tscheck &&
|
||
|
|
last_handle->last_timestamp[cpu] > last_record->ts) {
|
||
|
|
errno = 0;
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|