aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-02-10 20:43:13 -0500
committerSteven Rostedt <rostedt@goodmis.org>2010-02-10 20:43:13 -0500
commit650478a7ae8e3b59970e7ebbed066701d09b1ea7 (patch)
tree6332d29167e8fed28693c76261dcb8b64e55bea8
parent3f06bd2b7c77f36f191fe7cb66c240bea1d9a50d (diff)
trace-cmd: Add tracecmd_set_all_cpus_to_timestamp()
Add the helper routine tracecmd_set_all_cpus_to_timestamp() to be used to initialize all CPUs to a given time. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--trace-cmd.h3
-rw-r--r--trace-input.c25
2 files changed, 28 insertions, 0 deletions
diff --git a/trace-cmd.h b/trace-cmd.h
index 7228a6d..df98fb3 100644
--- a/trace-cmd.h
+++ b/trace-cmd.h
@@ -84,6 +84,9 @@ int tracecmd_refresh_record(struct tracecmd_input *handle,
84 84
85int tracecmd_set_cpu_to_timestamp(struct tracecmd_input *handle, 85int tracecmd_set_cpu_to_timestamp(struct tracecmd_input *handle,
86 int cpu, unsigned long long ts); 86 int cpu, unsigned long long ts);
87void
88tracecmd_set_all_cpus_to_timestamp(struct tracecmd_input *handle,
89 unsigned long long time);
87 90
88int tracecmd_set_cursor(struct tracecmd_input *handle, 91int tracecmd_set_cursor(struct tracecmd_input *handle,
89 int cpu, unsigned long long offset); 92 int cpu, unsigned long long offset);
diff --git a/trace-input.c b/trace-input.c
index 279382a..3cf079d 100644
--- a/trace-input.c
+++ b/trace-input.c
@@ -1179,6 +1179,31 @@ tracecmd_set_cpu_to_timestamp(struct tracecmd_input *handle, int cpu,
1179} 1179}
1180 1180
1181/** 1181/**
1182 * tracecmd_set_all_cpus_to_timestamp - set all CPUs iterator to a given time
1183 * @handle: input handle for the trace.dat file
1184 * @cpu: the CPU pointer to set
1185 * @ts: the timestamp to set the CPU at.
1186 *
1187 * This sets the CPU iterator used by tracecmd_read_data and
1188 * tracecmd_peek_data to a location in the CPU storage near
1189 * a given timestamp. It will try to set the iterator to a time before
1190 * the time stamp and not actually at a given time.
1191 *
1192 * To use this to find a record in a time field, call this function
1193 * first, than iterate with tracecmd_read_next_data to find the records
1194 * you need.
1195 */
1196void
1197tracecmd_set_all_cpus_to_timestamp(struct tracecmd_input *handle,
1198 unsigned long long time)
1199{
1200 int cpu;
1201
1202 for (cpu = 0; cpu < handle->cpus; cpu++)
1203 tracecmd_set_cpu_to_timestamp(handle, cpu, time);
1204}
1205
1206/**
1182 * tracecmd_set_cursor - set the offset for the next tracecmd_read_data 1207 * tracecmd_set_cursor - set the offset for the next tracecmd_read_data
1183 * @handle: input handle for the trace.dat file 1208 * @handle: input handle for the trace.dat file
1184 * @cpu: the CPU pointer to set 1209 * @cpu: the CPU pointer to set