New flag parameter has been added to tracecmd_open_head() to control how the trace file is opened and parsed. A corresponding change at the caller side is needed as well. Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@xxxxxxxxx> --- src/libkshark-tepdata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libkshark-tepdata.c b/src/libkshark-tepdata.c index d4be052..d29e98b 100644 --- a/src/libkshark-tepdata.c +++ b/src/libkshark-tepdata.c @@ -1587,7 +1587,7 @@ int kshark_tep_init_input(struct kshark_data_stream *stream) tep_plugin_add_option("ftrace:parent", "1"); tep_plugin_add_option("ftrace:indent", "0"); - input = tracecmd_open_head(stream->file); + input = tracecmd_open_head(stream->file, 0); if (!input) return -EEXIST; -- 2.25.1