diff options
author | Namhyung Kim <[email protected]> | 2013-03-18 18:56:34 +0900 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2013-03-18 11:02:06 +0100 |
commit | 86e213e1d901fbeaf6e57d13c5edd925fadddcbe (patch) | |
tree | 0c4b7404d1d98fb85677dfd4cd5cd60c42b99476 | |
parent | b66a2356d7108a15b8b5c9b8e6213e05ead22cd6 (diff) |
perf/cgroup: Add __percpu annotation to perf_cgroup->info
It's a per-cpu data structure but missed the __percpu annotation.
Signed-off-by: Namhyung Kim <[email protected]>
Cc: Tejun Heo <[email protected]>
Cc: Li Zefan <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: Namhyung Kim <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | kernel/events/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/events/core.c b/kernel/events/core.c index 5976a2a6b4ce..efb75b3a69ad 100644 --- a/kernel/events/core.c +++ b/kernel/events/core.c @@ -245,7 +245,7 @@ struct perf_cgroup_info { struct perf_cgroup { struct cgroup_subsys_state css; - struct perf_cgroup_info *info; + struct perf_cgroup_info __percpu *info; }; /* |