diff options
author | Wang Nan <wangnan0@huawei.com> | 2016-06-24 11:22:07 +0000 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-06-28 10:54:55 -0300 |
commit | 3275f68e50290acd04612c6af41173fe83fdf4b0 (patch) | |
tree | 400cc48e0a9cb697f90bbd2399045639c00fc5ec /tools/perf/util/data-convert-bt.h | |
parent | 069ee5c488d161f539bb897b1bc64b83f9773221 (diff) | |
download | op-kernel-dev-3275f68e50290acd04612c6af41173fe83fdf4b0.zip op-kernel-dev-3275f68e50290acd04612c6af41173fe83fdf4b0.tar.gz |
perf data ctf: Pass convert options through opts structure
Following commits will add new option to 'perf data convert'. All options
should be grouped into a structure and passed to low level converter
(currently there's only one converter).
Introduce data-convert.h and define 'struct perf_data_convert_opts' in
it. Pass 'force' through opts.
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1466767332-114472-3-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/data-convert-bt.h')
-rw-r--r-- | tools/perf/util/data-convert-bt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/util/data-convert-bt.h b/tools/perf/util/data-convert-bt.h index 4c20434..9a3b587 100644 --- a/tools/perf/util/data-convert-bt.h +++ b/tools/perf/util/data-convert-bt.h @@ -1,8 +1,10 @@ #ifndef __DATA_CONVERT_BT_H #define __DATA_CONVERT_BT_H +#include "data-convert.h" #ifdef HAVE_LIBBABELTRACE_SUPPORT -int bt_convert__perf2ctf(const char *input_name, const char *to_ctf, bool force); +int bt_convert__perf2ctf(const char *input_name, const char *to_ctf, + struct perf_data_convert_opts *opts); #endif /* HAVE_LIBBABELTRACE_SUPPORT */ #endif /* __DATA_CONVERT_BT_H */ |