[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250826140329.0000146c@huawei.com>
Date: Tue, 26 Aug 2025 14:03:29 +0100
From: Jonathan Cameron <Jonathan.Cameron@...wei.com>
To: Yushan Wang <wangyushan12@...wei.com>
CC: <will@...nel.org>, <mark.rutland@....com>,
<linux-arm-kernel@...ts.infradead.org>, <linux-kernel@...r.kernel.org>,
<robin.murphy@....com>, <yangyicong@...wei.com>, <liuyonglong@...wei.com>,
<wanghuiqiang@...wei.com>, <prime.zeng@...ilicon.com>,
<hejunhao3@...artners.com>
Subject: Re: [PATCH v2 1/9] drivers/perf: hisi: Relax the event ID check in
the framework
On Thu, 21 Aug 2025 21:50:41 +0800
Yushan Wang <wangyushan12@...wei.com> wrote:
> From: Yicong Yang <yangyicong@...ilicon.com>
>
> Event ID is only using the attr::config bit [7, 0] but we check the
> event range using the whole 64bit field. It blocks the usage of the
> rest field of attr::config. Relax the check by only using the
> bit [7, 0].
>
> Signed-off-by: Yicong Yang <yangyicong@...ilicon.com>
> Signed-off-by: Yushan Wang <wangyushan12@...wei.com>
Acked-by: Jonathan Cameron <jonathan.cameron@...wei.com>
One comment inline but up to you whether you act on it.
> ---
> drivers/perf/hisilicon/hisi_uncore_pmu.c | 2 +-
> drivers/perf/hisilicon/hisi_uncore_pmu.h | 3 ++-
> 2 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/perf/hisilicon/hisi_uncore_pmu.c b/drivers/perf/hisilicon/hisi_uncore_pmu.c
> index a449651f79c9..6594d64b03a9 100644
> --- a/drivers/perf/hisilicon/hisi_uncore_pmu.c
> +++ b/drivers/perf/hisilicon/hisi_uncore_pmu.c
> @@ -234,7 +234,7 @@ int hisi_uncore_pmu_event_init(struct perf_event *event)
> return -EINVAL;
>
> hisi_pmu = to_hisi_pmu(event->pmu);
> - if (event->attr.config > hisi_pmu->check_event)
> + if ((event->attr.config & HISI_EVENTID_MASK) > hisi_pmu->check_event)
> return -EINVAL;
>
> if (hisi_pmu->on_cpu == -1)
> diff --git a/drivers/perf/hisilicon/hisi_uncore_pmu.h b/drivers/perf/hisilicon/hisi_uncore_pmu.h
> index 777675838b80..6186b232f454 100644
> --- a/drivers/perf/hisilicon/hisi_uncore_pmu.h
> +++ b/drivers/perf/hisilicon/hisi_uncore_pmu.h
> @@ -43,7 +43,8 @@
> return FIELD_GET(GENMASK_ULL(hi, lo), event->attr.config); \
> }
>
> -#define HISI_GET_EVENTID(ev) (ev->hw.config_base & 0xff)
> +#define HISI_EVENTID_MASK 0xff
I'd use GENMASK(7, 0) here but this one is obvious enough that it's not important
and clearly you are just moving the definition.
> +#define HISI_GET_EVENTID(ev) ((ev)->hw.config_base & HISI_EVENTID_MASK)
>
> #define HISI_PMU_EVTYPE_BITS 8
> #define HISI_PMU_EVTYPE_SHIFT(idx) ((idx) % 4 * HISI_PMU_EVTYPE_BITS)
Powered by blists - more mailing lists