|
@@ -843,8 +843,9 @@ const struct option record_options[] = {
|
|
|
OPT_U64('c', "count", &record.opts.user_interval, "event period to sample"),
|
|
|
OPT_STRING('o', "output", &record.file.path, "file",
|
|
|
"output file name"),
|
|
|
- OPT_BOOLEAN('i', "no-inherit", &record.opts.no_inherit,
|
|
|
- "child tasks do not inherit counters"),
|
|
|
+ OPT_BOOLEAN_SET('i', "no-inherit", &record.opts.no_inherit,
|
|
|
+ &record.opts.no_inherit_set,
|
|
|
+ "child tasks do not inherit counters"),
|
|
|
OPT_UINTEGER('F', "freq", &record.opts.user_freq, "profile at this frequency"),
|
|
|
OPT_CALLBACK('m', "mmap-pages", &record.opts.mmap_pages, "pages",
|
|
|
"number of mmap data pages",
|
|
@@ -939,6 +940,9 @@ int cmd_record(int argc, const char **argv, const char *prefix __maybe_unused)
|
|
|
goto out_symbol_exit;
|
|
|
}
|
|
|
|
|
|
+ if (rec->opts.target.tid && !rec->opts.no_inherit_set)
|
|
|
+ rec->opts.no_inherit = true;
|
|
|
+
|
|
|
err = target__validate(&rec->opts.target);
|
|
|
if (err) {
|
|
|
target__strerror(&rec->opts.target, err, errbuf, BUFSIZ);
|