Commit-ID: 86e213e1d901fbeaf6e57d13c5edd925fadddcbe Gitweb: http://git.kernel.org/tip/86e213e1d901fbeaf6e57d13c5edd925fadddcbe Author: Namhyung Kim <namhyung....@lge.com> AuthorDate: Mon, 18 Mar 2013 18:56:34 +0900 Committer: Ingo Molnar <mi...@kernel.org> CommitDate: Mon, 18 Mar 2013 11:02:06 +0100
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 <namhy...@kernel.org> Cc: Tejun Heo <t...@kernel.org> Cc: Li Zefan <lize...@huawei.com> Cc: Peter Zijlstra <a.p.zijls...@chello.nl> Cc: Arnaldo Carvalho de Melo <a...@ghostprotocols.net> Cc: Namhyung Kim <namhyung....@lge.com> Link: http://lkml.kernel.org/r/1363600594-11453-1-git-send-email-namhy...@kernel.org Signed-off-by: Ingo Molnar <mi...@kernel.org> --- kernel/events/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/events/core.c b/kernel/events/core.c index 5976a2a..efb75b3 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; }; /* -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/