mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-23 16:53:58 -05:00
hw-breakpoints: Improve in-kernel event creation error granularity
In fail case, perf_event_create_kernel_counter() returns NULL instead of an error, which doesn't help us to inform the user about the origin of the problem from the outer most callers. Often we can just return -EINVAL, which doesn't help anyone when it's eventually about a memory allocation failure. Then, this patch makes perf_event_create_kernel_counter() always return a detailed error code. Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Prasad <prasad@linux.vnet.ibm.com> LKML-Reference: <1259210142-5714-2-git-send-regression-fweisbec@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
d99be40aff
commit
c6567f642e
1 changed files with 11 additions and 9 deletions
|
@ -4780,14 +4780,17 @@ perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ctx = find_get_context(pid, cpu);
|
ctx = find_get_context(pid, cpu);
|
||||||
if (IS_ERR(ctx))
|
if (IS_ERR(ctx)) {
|
||||||
return NULL;
|
err = PTR_ERR(ctx);
|
||||||
|
goto err_exit;
|
||||||
|
}
|
||||||
|
|
||||||
event = perf_event_alloc(attr, cpu, ctx, NULL,
|
event = perf_event_alloc(attr, cpu, ctx, NULL,
|
||||||
NULL, callback, GFP_KERNEL);
|
NULL, callback, GFP_KERNEL);
|
||||||
err = PTR_ERR(event);
|
if (IS_ERR(event)) {
|
||||||
if (IS_ERR(event))
|
err = PTR_ERR(event);
|
||||||
goto err_put_context;
|
goto err_put_context;
|
||||||
|
}
|
||||||
|
|
||||||
event->filp = NULL;
|
event->filp = NULL;
|
||||||
WARN_ON_ONCE(ctx->parent_ctx);
|
WARN_ON_ONCE(ctx->parent_ctx);
|
||||||
|
@ -4804,11 +4807,10 @@ perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu,
|
||||||
|
|
||||||
return event;
|
return event;
|
||||||
|
|
||||||
err_put_context:
|
err_put_context:
|
||||||
if (err < 0)
|
put_ctx(ctx);
|
||||||
put_ctx(ctx);
|
err_exit:
|
||||||
|
return ERR_PTR(err);
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
|
EXPORT_SYMBOL_GPL(perf_event_create_kernel_counter);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue