summaryrefslogtreecommitdiff
path: root/scripts/trace.pl
diff options
context:
space:
mode:
authorTvrtko Ursulin <tvrtko.ursulin@intel.com>2017-05-11 12:59:54 +0100
committerTvrtko Ursulin <tvrtko.ursulin@intel.com>2017-05-11 17:47:37 +0100
commit3ecd6c7f47e3b76e3010f254af76d5f6c981b557 (patch)
treee8cc86820270ff6e52357ad08ba4e3dbd13dff90 /scripts/trace.pl
parent22f22b41962051655a72ed9cb4fac112f44080d0 (diff)
igt/trace.pl: Collect perf data in quiet mode
We are not interested in knowing the amount of perf data captures so less noise is better. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Diffstat (limited to 'scripts/trace.pl')
-rwxr-xr-xscripts/trace.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/trace.pl b/scripts/trace.pl
index 1f524aaa..86a175db 100755
--- a/scripts/trace.pl
+++ b/scripts/trace.pl
@@ -169,7 +169,7 @@ sub arg_trace
shift @_;
unshift @_, join(',', @events);
- unshift @_, ('perf', 'record', '-a', '-c', '1', '-e');
+ unshift @_, ('perf', 'record', '-a', '-c', '1', '-q', '-e');
exec @_;
}