lkml.org 
[lkml]   [2023]   [Mar]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH 1/2] perf/ibs: Fix interface via core pmu events
From
Hi Namhyung,

>> diff --git a/kernel/events/core.c b/kernel/events/core.c
>> index a5a51dfdd622..c3f59d937280 100644
>> --- a/kernel/events/core.c
>> +++ b/kernel/events/core.c
>> @@ -11633,9 +11633,13 @@ static struct pmu *perf_init_event(struct perf_event *event)
>> goto fail;
>>
>> ret = perf_try_init_event(pmu, event);
>> - if (ret == -ENOENT && event->attr.type != type && !extended_type) {
>> - type = event->attr.type;
>> - goto again;
>> + if (ret == -ENOENT) {
>> + if (event->attr.type != type && !extended_type) {
>> + type = event->attr.type;
>> + goto again;
>> + }
>> + if (pmu->capabilities & PERF_PMU_CAP_FORWARD_EVENT)
>> + goto try_all;
>
> Wouldn't it be better to use a different error code to indicate
> it's about precise_ip (or forwarding in general)? Otherwise
> other invalid config might cause the forwarding unnecessarily..

That would make things easier and we might not need this new capability.
Most appropriate error codes seems ENOENT, EOPNOTSUPP and EINVAL but all
are already used for other purposes. Any other suggestions?

Thanks,
Ravi

\
 
 \ /
  Last update: 2023-03-27 00:42    [W:0.118 / U:0.972 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site