aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2011-02-25 16:03:26 -0500
committerSteven Rostedt <rostedt@goodmis.org>2011-02-25 16:03:26 -0500
commit47715da982c0198a59e4bf9ec978772dc388abbd (patch)
tree1d093e6aaa2f0c6f1d288099a34c48b5fbd1facb
parentf549556eb0c6bb7388e93cfd9b919b839e52a882 (diff)
trace-cmd: Limit amount of events to send over the network
Limit the events sent out over the network the same way they are limited when being recorded locally to a file. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--trace-record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/trace-record.c b/trace-record.c
index 9343822..2611bfa 100644
--- a/trace-record.c
+++ b/trace-record.c
@@ -1391,7 +1391,7 @@ static void setup_network(void)
1391 } 1391 }
1392 1392
1393 /* Now create the handle through this socket */ 1393 /* Now create the handle through this socket */
1394 handle = tracecmd_create_init_fd(sfd); 1394 handle = tracecmd_create_init_fd_glob(sfd, listed_events);
1395 1395
1396 /* OK, we are all set, let'r rip! */ 1396 /* OK, we are all set, let'r rip! */
1397} 1397}