aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/trace/beauty
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2018-12-27 16:19:33 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2018-12-28 16:33:05 -0300
commit2d473389f87ace284bda35a5254bc66e24d0caa9 (patch)
treea857d73e991b91de98d2391339ca4f3f8ba4e11f /tools/perf/trace/beauty
parentperf trace: Wire up ioctl's USBDEBFS_ cmd table generator (diff)
downloadlinux-dev-2d473389f87ace284bda35a5254bc66e24d0caa9.tar.xz
linux-dev-2d473389f87ace284bda35a5254bc66e24d0caa9.zip
perf trace beauty: Export function to get the files for a thread
So that beautifiers can access things like dev_maj. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Luis Cláudio Gonçalves <lclaudio@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: https://lkml.kernel.org/n/tip-wm5o51f206c5pi063dsaeraq@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/trace/beauty')
-rw-r--r--tools/perf/trace/beauty/beauty.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/perf/trace/beauty/beauty.h b/tools/perf/trace/beauty/beauty.h
index 83c5b202e00e..139d485a6f16 100644
--- a/tools/perf/trace/beauty/beauty.h
+++ b/tools/perf/trace/beauty/beauty.h
@@ -32,6 +32,13 @@ size_t strarray__scnprintf_flags(struct strarray *sa, char *bf, size_t size, boo
struct trace;
struct thread;
+struct file {
+ char *pathname;
+ int dev_maj;
+};
+
+struct file *thread__files_entry(struct thread *thread, int fd);
+
struct strarrays {
int nr_entries;
struct strarray **entries;