提交 453f19ee 编写于 作者: P Peter Zijlstra 提交者: Ingo Molnar

perf: Allow for custom overflow handlers

in-kernel perf users might wish to have custom actions on the
sample interrupt.
Signed-off-by: NPeter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <20091120212508.222339539@chello.nl>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 ef6ae724
...@@ -567,6 +567,8 @@ struct perf_pending_entry { ...@@ -567,6 +567,8 @@ struct perf_pending_entry {
typedef void (*perf_callback_t)(struct perf_event *, void *); typedef void (*perf_callback_t)(struct perf_event *, void *);
struct perf_sample_data;
/** /**
* struct perf_event - performance event kernel representation: * struct perf_event - performance event kernel representation:
*/ */
...@@ -658,6 +660,10 @@ struct perf_event { ...@@ -658,6 +660,10 @@ struct perf_event {
struct pid_namespace *ns; struct pid_namespace *ns;
u64 id; u64 id;
void (*overflow_handler)(struct perf_event *event,
int nmi, struct perf_sample_data *data,
struct pt_regs *regs);
#ifdef CONFIG_EVENT_PROFILE #ifdef CONFIG_EVENT_PROFILE
struct event_filter *filter; struct event_filter *filter;
#endif #endif
......
...@@ -3710,7 +3710,11 @@ static int __perf_event_overflow(struct perf_event *event, int nmi, ...@@ -3710,7 +3710,11 @@ static int __perf_event_overflow(struct perf_event *event, int nmi,
perf_event_disable(event); perf_event_disable(event);
} }
if (event->overflow_handler)
event->overflow_handler(event, nmi, data, regs);
else
perf_event_output(event, nmi, data, regs); perf_event_output(event, nmi, data, regs);
return ret; return ret;
} }
...@@ -4836,6 +4840,8 @@ inherit_event(struct perf_event *parent_event, ...@@ -4836,6 +4840,8 @@ inherit_event(struct perf_event *parent_event,
if (parent_event->attr.freq) if (parent_event->attr.freq)
child_event->hw.sample_period = parent_event->hw.sample_period; child_event->hw.sample_period = parent_event->hw.sample_period;
child_event->overflow_handler = parent_event->overflow_handler;
/* /*
* Link it up in the child's context: * Link it up in the child's context:
*/ */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册