[PATCH v2 00/13] Python motivated fixes and cleanup

Ian Rogers posted 13 patches 2 months, 4 weeks ago
tools/perf/builtin-script.c              |   3 +-
tools/perf/builtin-stat.c                |  25 ++-
tools/perf/pmu-events/empty-pmu-events.c | 128 +++++------
tools/perf/pmu-events/jevents.py         |   3 +
tools/perf/tests/expand-cgroup.c         |  24 +--
tools/perf/tests/parse-metric.c          |  16 +-
tools/perf/tests/pmu-events.c            |  30 +--
tools/perf/util/cgroup.c                 |  23 +-
tools/perf/util/cgroup.h                 |   3 +-
tools/perf/util/evlist.c                 |   3 +
tools/perf/util/evlist.h                 |   6 +
tools/perf/util/expr.c                   |   6 +-
tools/perf/util/hwmon_pmu.c              |   2 +-
tools/perf/util/metricgroup.c            | 261 ++++-------------------
tools/perf/util/metricgroup.h            |  10 +-
tools/perf/util/parse-events.c           |  31 ++-
tools/perf/util/parse-events.h           |   2 +-
tools/perf/util/pmu.c                    |  37 +++-
tools/perf/util/print-events.c           | 133 ++++++++++++
tools/perf/util/print-events.h           |   2 +
tools/perf/util/python.c                 | 123 ++++++++++-
tools/perf/util/spark.c                  |   8 +-
tools/perf/util/spark.h                  |   1 +
tools/perf/util/stat-display.c           |  16 +-
tools/perf/util/stat-shadow.c            |  13 +-
tools/perf/util/stat.h                   |  12 +-
26 files changed, 473 insertions(+), 448 deletions(-)
[PATCH v2 00/13] Python motivated fixes and cleanup
Posted by Ian Rogers 2 months, 4 weeks ago
Various fixes and clean ups done as part of creating the ilist app,
the v4 patch series of which is posted here:
https://lore.kernel.org/lkml/20250628000929.230406-1-irogers@google.com/

These patches are separated out to give something smaller to review
before adding features. As requested by Namhyung.

v2: Additional evlist copying fixes found by testing on hybrid. Add
    fix to set the error for out of bound cpu map and thread map item
    calls.

Ian Rogers (13):
  perf hwmon_pmu: Avoid shortening hwmon PMU name
  perf parse-events: Minor tidy up of event_type helper
  perf spark: Fix includes and add SPDX
  perf pmu: Tolerate failure to read the type for wellknown PMUs
  perf metricgroup: Factor out for-each function and move out printing
  perf stat: Move metric list from config to evlist
  perf expr: Accumulate rather than replace in the context counts
  perf jevents: If the long_desc and desc are identical then drop the
    long_desc
  perf python: In str(evsel) use the evsel__pmu_name helper
  perf python: Fix thread check in pyrf_evsel__read
  perf python: Correct pyrf_evsel__read for tool PMUs
  perf python: Improve leader copying from evlist
  perf python: Set index error for invalid thread/cpu map items

 tools/perf/builtin-script.c              |   3 +-
 tools/perf/builtin-stat.c                |  25 ++-
 tools/perf/pmu-events/empty-pmu-events.c | 128 +++++------
 tools/perf/pmu-events/jevents.py         |   3 +
 tools/perf/tests/expand-cgroup.c         |  24 +--
 tools/perf/tests/parse-metric.c          |  16 +-
 tools/perf/tests/pmu-events.c            |  30 +--
 tools/perf/util/cgroup.c                 |  23 +-
 tools/perf/util/cgroup.h                 |   3 +-
 tools/perf/util/evlist.c                 |   3 +
 tools/perf/util/evlist.h                 |   6 +
 tools/perf/util/expr.c                   |   6 +-
 tools/perf/util/hwmon_pmu.c              |   2 +-
 tools/perf/util/metricgroup.c            | 261 ++++-------------------
 tools/perf/util/metricgroup.h            |  10 +-
 tools/perf/util/parse-events.c           |  31 ++-
 tools/perf/util/parse-events.h           |   2 +-
 tools/perf/util/pmu.c                    |  37 +++-
 tools/perf/util/print-events.c           | 133 ++++++++++++
 tools/perf/util/print-events.h           |   2 +
 tools/perf/util/python.c                 | 123 ++++++++++-
 tools/perf/util/spark.c                  |   8 +-
 tools/perf/util/spark.h                  |   1 +
 tools/perf/util/stat-display.c           |  16 +-
 tools/perf/util/stat-shadow.c            |  13 +-
 tools/perf/util/stat.h                   |  12 +-
 26 files changed, 473 insertions(+), 448 deletions(-)

-- 
2.50.0.727.gbf7dc18ff4-goog
Re: [PATCH v2 00/13] Python motivated fixes and cleanup
Posted by Namhyung Kim 2 months, 3 weeks ago
On Thu, 10 Jul 2025 16:51:13 -0700, Ian Rogers wrote:
> Various fixes and clean ups done as part of creating the ilist app,
> the v4 patch series of which is posted here:
> https://lore.kernel.org/lkml/20250628000929.230406-1-irogers@google.com/
> 
> These patches are separated out to give something smaller to review
> before adding features. As requested by Namhyung.
> 
> [...]
Applied to perf-tools-next, thanks!

Best regards,
Namhyung