Commit 108b02cf authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Ingo Molnar

perf: Per-pmu-per-cpu contexts

Allocate per-cpu contexts per pmu.
Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Cc: paulus <paulus@samba.org>
Cc: stephane eranian <eranian@googlemail.com>
Cc: Robert Richter <robert.richter@amd.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Lin Ming <ming.m.lin@intel.com>
Cc: Yanmin <yanmin_zhang@linux.intel.com>
LKML-Reference: <new-submission>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent b5ab4cd5
...@@ -570,7 +570,8 @@ struct perf_event; ...@@ -570,7 +570,8 @@ struct perf_event;
struct pmu { struct pmu {
struct list_head entry; struct list_head entry;
int *pmu_disable_count; int * __percpu pmu_disable_count;
struct perf_cpu_context * __percpu pmu_cpu_context;
/* /*
* Fully disable/enable this PMU, can be used to protect from the PMI * Fully disable/enable this PMU, can be used to protect from the PMI
...@@ -808,6 +809,7 @@ struct perf_event { ...@@ -808,6 +809,7 @@ struct perf_event {
* Used as a container for task events and CPU events as well: * Used as a container for task events and CPU events as well:
*/ */
struct perf_event_context { struct perf_event_context {
struct pmu *pmu;
/* /*
* Protect the states of the events in the list, * Protect the states of the events in the list,
* nr_active, and the list: * nr_active, and the list:
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment