aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Carrillo-Cisneros <davidcc@google.com>2017-07-18 00:25:44 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-07-18 22:14:34 -0400
commita02c395cccc95e40b4c506c78857e24fdb049096 (patch)
treef26850386eb31985efd9de475441ffca47531142
parent48e5fcea386009fb2515158fdaf8586ce72d86ce (diff)
perf header: Make write_pmu_mappings pipe-mode friendly
In pipe-mode, we will operate over a buffer instead of a file descriptor but write_pmu_mappings uses lseek to move over the perf.data file. Refactor write_pmu_mappings to avoid the usage of lseek and allow reusing the same logic in pipe-mode (next patch). Signed-off-by: David Carrillo-Cisneros <davidcc@google.com> Acked-by: David Ahern <dsahern@gmail.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: He Kuang <hekuang@huawei.com> Cc: Masami Hiramatsu <mhiramat@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Turner <pjt@google.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Simon Que <sque@chromium.org> Cc: Stephane Eranian <eranian@google.com> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/r/20170718042549.145161-12-davidcc@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/util/header.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c
index 14db9f204b0a..d5359e3384e3 100644
--- a/tools/perf/util/header.c
+++ b/tools/perf/util/header.c
@@ -797,11 +797,19 @@ static int write_pmu_mappings(struct feat_fd *ff,
797 struct perf_evlist *evlist __maybe_unused) 797 struct perf_evlist *evlist __maybe_unused)
798{ 798{
799 struct perf_pmu *pmu = NULL; 799 struct perf_pmu *pmu = NULL;
800 off_t offset = lseek(ff->fd, 0, SEEK_CUR); 800 u32 pmu_num = 0;
801 __u32 pmu_num = 0;
802 int ret; 801 int ret;
803 802
804 /* write real pmu_num later */ 803 /*
804 * Do a first pass to count number of pmu to avoid lseek so this
805 * works in pipe mode as well.
806 */
807 while ((pmu = perf_pmu__scan(pmu))) {
808 if (!pmu->name)
809 continue;
810 pmu_num++;
811 }
812
805 ret = do_write(ff, &pmu_num, sizeof(pmu_num)); 813 ret = do_write(ff, &pmu_num, sizeof(pmu_num));
806 if (ret < 0) 814 if (ret < 0)
807 return ret; 815 return ret;
@@ -809,7 +817,6 @@ static int write_pmu_mappings(struct feat_fd *ff,
809 while ((pmu = perf_pmu__scan(pmu))) { 817 while ((pmu = perf_pmu__scan(pmu))) {
810 if (!pmu->name) 818 if (!pmu->name)
811 continue; 819 continue;
812 pmu_num++;
813 820
814 ret = do_write(ff, &pmu->type, sizeof(pmu->type)); 821 ret = do_write(ff, &pmu->type, sizeof(pmu->type));
815 if (ret < 0) 822 if (ret < 0)
@@ -820,12 +827,6 @@ static int write_pmu_mappings(struct feat_fd *ff,
820 return ret; 827 return ret;
821 } 828 }
822 829
823 if (pwrite(ff->fd, &pmu_num, sizeof(pmu_num), offset) != sizeof(pmu_num)) {
824 /* discard all */
825 lseek(ff->fd, offset, SEEK_SET);
826 return -1;
827 }
828
829 return 0; 830 return 0;
830} 831}
831 832