From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Adrian Hunter <adrian.hunter@intel.com>
Cc: Leo Yan <leo.yan@arm.com>, Namhyung Kim <namhyung@kernel.org>,
Ian Rogers <irogers@google.com>,
James Clark <james.clark@linaro.org>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Mike Leach <mike.leach@linaro.org>,
coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, "Liang,
Kan" <kan.liang@linux.intel.com>
Subject: Re: [PATCH v1 2/9] perf auxtrace: Remove unused 'pmu' pointer from struct auxtrace_record
Date: Wed, 28 Aug 2024 18:16:02 -0300 [thread overview]
Message-ID: <Zs-Tkl0D44fQmMHT@x1> (raw)
In-Reply-To: <53c51dfc-9727-4e11-8846-6f37bc64744a@intel.com>
On Fri, Aug 09, 2024 at 11:02:16AM +0300, Adrian Hunter wrote:
> On 6/08/24 23:41, Leo Yan wrote:
> > The 'pmu' pointer in the auxtrace_record structure is not used after
> > support multiple AUX events, remove it.
> >
> > Signed-off-by: Leo Yan <leo.yan@arm.com>
>
> Reviewed-by: Adrian Hunter <adrian.hunter@intel.com>
Applied the first reviewed two patches.
- Arnaldo
> > ---
> > tools/perf/arch/arm/util/cs-etm.c | 1 -
> > tools/perf/arch/arm64/util/arm-spe.c | 1 -
> > tools/perf/arch/arm64/util/hisi-ptt.c | 1 -
> > tools/perf/arch/x86/util/intel-bts.c | 1 -
> > tools/perf/arch/x86/util/intel-pt.c | 1 -
> > tools/perf/util/auxtrace.h | 1 -
> > 6 files changed, 6 deletions(-)
> >
> > diff --git a/tools/perf/arch/arm/util/cs-etm.c b/tools/perf/arch/arm/util/cs-etm.c
> > index da6231367993..96aeb7cdbee1 100644
> > --- a/tools/perf/arch/arm/util/cs-etm.c
> > +++ b/tools/perf/arch/arm/util/cs-etm.c
> > @@ -888,7 +888,6 @@ struct auxtrace_record *cs_etm_record_init(int *err)
> > }
> >
> > ptr->cs_etm_pmu = cs_etm_pmu;
> > - ptr->itr.pmu = cs_etm_pmu;
> > ptr->itr.parse_snapshot_options = cs_etm_parse_snapshot_options;
> > ptr->itr.recording_options = cs_etm_recording_options;
> > ptr->itr.info_priv_size = cs_etm_info_priv_size;
> > diff --git a/tools/perf/arch/arm64/util/arm-spe.c b/tools/perf/arch/arm64/util/arm-spe.c
> > index d59f6ca499f2..2be99fdf997d 100644
> > --- a/tools/perf/arch/arm64/util/arm-spe.c
> > +++ b/tools/perf/arch/arm64/util/arm-spe.c
> > @@ -514,7 +514,6 @@ struct auxtrace_record *arm_spe_recording_init(int *err,
> > }
> >
> > sper->arm_spe_pmu = arm_spe_pmu;
> > - sper->itr.pmu = arm_spe_pmu;
> > sper->itr.snapshot_start = arm_spe_snapshot_start;
> > sper->itr.snapshot_finish = arm_spe_snapshot_finish;
> > sper->itr.find_snapshot = arm_spe_find_snapshot;
> > diff --git a/tools/perf/arch/arm64/util/hisi-ptt.c b/tools/perf/arch/arm64/util/hisi-ptt.c
> > index ba97c8a562a0..eac9739c87e6 100644
> > --- a/tools/perf/arch/arm64/util/hisi-ptt.c
> > +++ b/tools/perf/arch/arm64/util/hisi-ptt.c
> > @@ -174,7 +174,6 @@ struct auxtrace_record *hisi_ptt_recording_init(int *err,
> > }
> >
> > pttr->hisi_ptt_pmu = hisi_ptt_pmu;
> > - pttr->itr.pmu = hisi_ptt_pmu;
> > pttr->itr.recording_options = hisi_ptt_recording_options;
> > pttr->itr.info_priv_size = hisi_ptt_info_priv_size;
> > pttr->itr.info_fill = hisi_ptt_info_fill;
> > diff --git a/tools/perf/arch/x86/util/intel-bts.c b/tools/perf/arch/x86/util/intel-bts.c
> > index 34696f3d3d5d..85c8186300c8 100644
> > --- a/tools/perf/arch/x86/util/intel-bts.c
> > +++ b/tools/perf/arch/x86/util/intel-bts.c
> > @@ -434,7 +434,6 @@ struct auxtrace_record *intel_bts_recording_init(int *err)
> > }
> >
> > btsr->intel_bts_pmu = intel_bts_pmu;
> > - btsr->itr.pmu = intel_bts_pmu;
> > btsr->itr.recording_options = intel_bts_recording_options;
> > btsr->itr.info_priv_size = intel_bts_info_priv_size;
> > btsr->itr.info_fill = intel_bts_info_fill;
> > diff --git a/tools/perf/arch/x86/util/intel-pt.c b/tools/perf/arch/x86/util/intel-pt.c
> > index 4b710e875953..ea510a7486b1 100644
> > --- a/tools/perf/arch/x86/util/intel-pt.c
> > +++ b/tools/perf/arch/x86/util/intel-pt.c
> > @@ -1197,7 +1197,6 @@ struct auxtrace_record *intel_pt_recording_init(int *err)
> > }
> >
> > ptr->intel_pt_pmu = intel_pt_pmu;
> > - ptr->itr.pmu = intel_pt_pmu;
> > ptr->itr.recording_options = intel_pt_recording_options;
> > ptr->itr.info_priv_size = intel_pt_info_priv_size;
> > ptr->itr.info_fill = intel_pt_info_fill;
> > diff --git a/tools/perf/util/auxtrace.h b/tools/perf/util/auxtrace.h
> > index 8a6ec9565835..95304368103b 100644
> > --- a/tools/perf/util/auxtrace.h
> > +++ b/tools/perf/util/auxtrace.h
> > @@ -411,7 +411,6 @@ struct auxtrace_record {
> > int (*read_finish)(struct auxtrace_record *itr, int idx);
> > unsigned int alignment;
> > unsigned int default_aux_sample_size;
> > - struct perf_pmu *pmu;
> > struct evlist *evlist;
> > };
> >
next prev parent reply other threads:[~2024-08-28 21:17 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-06 20:41 [PATCH v1 0/9] perf auxtrace: Refactor with evsel__is_aux_event() Leo Yan
2024-08-06 20:41 ` [PATCH v1 1/9] perf auxtrace: Use evsel__is_aux_event() for checking AUX event Leo Yan
2024-08-09 7:55 ` Adrian Hunter
2024-08-06 20:41 ` [PATCH v1 2/9] perf auxtrace: Remove unused 'pmu' pointer from struct auxtrace_record Leo Yan
2024-08-09 8:02 ` Adrian Hunter
2024-08-28 21:16 ` Arnaldo Carvalho de Melo [this message]
2024-08-30 7:32 ` Leo Yan
2024-08-06 20:41 ` [PATCH v1 3/9] perf auxtrace: Refactor auxtrace__evsel_is_auxtrace() Leo Yan
2024-08-08 12:58 ` Adrian Hunter
2024-08-09 10:08 ` James Clark
2024-08-09 10:57 ` Leo Yan
2024-08-06 20:41 ` [PATCH v1 4/9] perf arm-spe: Remove the 'pmu_type' field Leo Yan
2024-08-06 20:41 ` [PATCH v1 5/9] perf cs-etm: " Leo Yan
2024-08-06 20:41 ` [PATCH v1 6/9] perf hisi-ptt: Remove the unused " Leo Yan
2024-08-06 20:41 ` [PATCH v1 7/9] perf intel-bts: Remove the " Leo Yan
2024-08-06 20:41 ` [PATCH v1 8/9] perf intel-pt: " Leo Yan
2024-08-06 20:41 ` [PATCH v1 9/9] perf s390-cpumsf: Remove the unused " Leo Yan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Zs-Tkl0D44fQmMHT@x1 \
--to=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=coresight@lists.linaro.org \
--cc=irogers@google.com \
--cc=james.clark@linaro.org \
--cc=kan.liang@linux.intel.com \
--cc=leo.yan@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mike.leach@linaro.org \
--cc=namhyung@kernel.org \
--cc=suzuki.poulose@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).