|
@@ -31,6 +31,7 @@
|
|
|
#include <linux/kernel_stat.h>
|
|
|
#include <linux/perf_event.h>
|
|
|
#include <linux/ftrace_event.h>
|
|
|
+#include <linux/hw_breakpoint.h>
|
|
|
|
|
|
#include <asm/irq_regs.h>
|
|
|
|
|
@@ -6295,6 +6296,8 @@ perf_cpu_notify(struct notifier_block *self, unsigned long action, void *hcpu)
|
|
|
|
|
|
void __init perf_event_init(void)
|
|
|
{
|
|
|
+ int ret;
|
|
|
+
|
|
|
perf_event_init_all_cpus();
|
|
|
init_srcu_struct(&pmus_srcu);
|
|
|
perf_pmu_register(&perf_swevent);
|
|
@@ -6302,4 +6305,7 @@ void __init perf_event_init(void)
|
|
|
perf_pmu_register(&perf_task_clock);
|
|
|
perf_tp_register();
|
|
|
perf_cpu_notifier(perf_cpu_notify);
|
|
|
+
|
|
|
+ ret = init_hw_breakpoint();
|
|
|
+ WARN(ret, "hw_breakpoint initialization failed with: %d", ret);
|
|
|
}
|