diff options
-rw-r--r-- | Documentation/trace-cmd-record.1.txt | 5 | ||||
-rw-r--r-- | trace-usage.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/trace-cmd-record.1.txt b/Documentation/trace-cmd-record.1.txt index 9a51f91..a8c9b98 100644 --- a/Documentation/trace-cmd-record.1.txt +++ b/Documentation/trace-cmd-record.1.txt | |||
@@ -147,6 +147,11 @@ OPTIONS | |||
147 | Note: usually trace-cmd will set the "tracing_on" file back to what it | 147 | Note: usually trace-cmd will set the "tracing_on" file back to what it |
148 | was before it was called. This option will leave that file set to zero. | 148 | was before it was called. This option will leave that file set to zero. |
149 | 149 | ||
150 | *-i*:: | ||
151 | By default, if an event is listed that trace-cmd does not find, it | ||
152 | will exit with an error. This option will just ignore events that are | ||
153 | listed on the command line but are not found on the system. | ||
154 | |||
150 | *-N* 'host:port':: | 155 | *-N* 'host:port':: |
151 | If another machine is running "trace-cmd listen", this option is used to | 156 | If another machine is running "trace-cmd listen", this option is used to |
152 | have the data sent to that machine with UDP packets. Instead of writing | 157 | have the data sent to that machine with UDP packets. Instead of writing |
diff --git a/trace-usage.c b/trace-usage.c index 2d7b668..8f70f29 100644 --- a/trace-usage.c +++ b/trace-usage.c | |||
@@ -37,6 +37,7 @@ static struct usage_help usage_help[] = { | |||
37 | " -t used with -N, forces use of tcp in live trace\n" | 37 | " -t used with -N, forces use of tcp in live trace\n" |
38 | " -b change kernel buffersize (in kilobytes per CPU)\n" | 38 | " -b change kernel buffersize (in kilobytes per CPU)\n" |
39 | " -k do not reset the buffers after tracing.\n" | 39 | " -k do not reset the buffers after tracing.\n" |
40 | " -i do not fail if an event is not found\n" | ||
40 | }, | 41 | }, |
41 | { | 42 | { |
42 | "start", | 43 | "start", |