diff options
| author | Steven Rostedt <srostedt@redhat.com> | 2010-02-15 22:25:37 -0500 |
|---|---|---|
| committer | Steven Rostedt <rostedt@goodmis.org> | 2010-02-15 22:25:37 -0500 |
| commit | fa6f2462ec91a70974df0221a6f005de547ef73e (patch) | |
| tree | dcddffbfa586f41b685952c8d4a5c030f4cc09b7 /Makefile | |
| parent | a419a4e2a34a24b9e7d3f91aa195beac1e8bced2 (diff) | |
parse-events: Add event filtering on event fields
Add the ability to filter on event fields. This patch implements
the filter on trace-cmd report.
Using the following:
trace-cmd report -F 'sched.sched_switch:next_prio < 100 ||
(prev_comm != "swapper" && next_comm != "swapper")'
Will return a report where prios are under 100 (Real-time)
and does not include any context switch with the swapper task.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -149,7 +149,7 @@ TRACE_VIEW_MAIN_OBJS = trace-view-main.o $(TRACE_VIEW_OBJS) | |||
| 149 | TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) | 149 | TRACE_GRAPH_MAIN_OBJS = trace-graph-main.o $(TRACE_GRAPH_OBJS) |
| 150 | KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) kernel-shark.o | 150 | KERNEL_SHARK_OBJS = $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) kernel-shark.o |
| 151 | 151 | ||
| 152 | PEVENT_LIB_OBJS = parse-events.o trace-seq.o | 152 | PEVENT_LIB_OBJS = parse-events.o trace-seq.o parse-filter.o |
| 153 | TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ | 153 | TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o trace-ftrace.o \ |
| 154 | trace-output.o trace-record.o | 154 | trace-output.o trace-record.o |
| 155 | 155 | ||
