mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
f02a6489d1
If 'all' option is selected, 'perf data convert' should convert not only samples, but non-sample events such as comm and fork. Add this option in perf_data_convert_opts. Following commits will add cmdline option to select it. 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-4-git-send-email-wangnan0@huawei.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
10 lines
141 B
C
10 lines
141 B
C
#ifndef __DATA_CONVERT_H
|
|
#define __DATA_CONVERT_H
|
|
|
|
struct perf_data_convert_opts {
|
|
bool force;
|
|
bool all;
|
|
};
|
|
|
|
#endif /* __DATA_CONVERT_H */
|