diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2019-07-10 11:57:51 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-07-10 12:10:27 -0300 |
commit | 208032fef13b68cf1eefc945dafb82efc88c6b8f (patch) | |
tree | b6706e90347ae34f49b61aae1b30649f58ff1ddd /tools/perf/util/db-export.h | |
parent | fead24e52383c3f8eb25b5426d52b430b84a8194 (diff) | |
download | linux-208032fef13b68cf1eefc945dafb82efc88c6b8f.tar.gz linux-208032fef13b68cf1eefc945dafb82efc88c6b8f.tar.bz2 linux-208032fef13b68cf1eefc945dafb82efc88c6b8f.zip |
perf db-export: Rename db_export__comm() to db_export__exec_comm()
Rename db_export__comm() to db_export__exec_comm() to better reflect
what it does and add explanatory comments.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: http://lkml.kernel.org/r/20190710085810.1650-3-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/db-export.h')
-rw-r--r-- | tools/perf/util/db-export.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/db-export.h b/tools/perf/util/db-export.h index 261cfece8dee..148a657b1887 100644 --- a/tools/perf/util/db-export.h +++ b/tools/perf/util/db-export.h @@ -76,8 +76,8 @@ int db_export__evsel(struct db_export *dbe, struct perf_evsel *evsel); int db_export__machine(struct db_export *dbe, struct machine *machine); int db_export__thread(struct db_export *dbe, struct thread *thread, struct machine *machine, struct comm *comm); -int db_export__comm(struct db_export *dbe, struct comm *comm, - struct thread *main_thread); +int db_export__exec_comm(struct db_export *dbe, struct comm *comm, + struct thread *main_thread); int db_export__comm_thread(struct db_export *dbe, struct comm *comm, struct thread *thread); int db_export__dso(struct db_export *dbe, struct dso *dso, |