mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 05:04:09 +08:00
perf/marvell_cn10k: Fix tad_pmu_event_init() to check pmu type first
Make sure to check the pmu type first and then check event->attr.disabled. Doing so would avoid reading the disabled attribute of an event that is not handled by TAD PMU. Signed-off-by: Tanmay Jagdale <tanmay@marvell.com> Link: https://lore.kernel.org/r/20220510102657.487539-1-tanmay@marvell.com Signed-off-by: Will Deacon <will@kernel.org>
This commit is contained in:
parent
6b79738b6e
commit
33835e8dfb
@ -146,12 +146,12 @@ static int tad_pmu_event_init(struct perf_event *event)
|
||||
{
|
||||
struct tad_pmu *tad_pmu = to_tad_pmu(event->pmu);
|
||||
|
||||
if (!event->attr.disabled)
|
||||
return -EINVAL;
|
||||
|
||||
if (event->attr.type != event->pmu->type)
|
||||
return -ENOENT;
|
||||
|
||||
if (!event->attr.disabled)
|
||||
return -EINVAL;
|
||||
|
||||
if (event->state != PERF_EVENT_STATE_OFF)
|
||||
return -EINVAL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user