aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhang Rui <rui.zhang@intel.com>2020-08-11 23:31:47 +0800
committerIngo Molnar <mingo@kernel.org>2020-08-14 12:35:11 +0200
commit4bb5fcb97a5df0bbc0a27e0252b1e7ce140a8431 (patch)
tree8c674b338a7dd5c408e13814ea6a2ea6f17d43b3
parentb55b3fdce3e554a6bbe8f8ca6a01a892d720e64e (diff)
downloadlinux-4bb5fcb97a5df0bbc0a27e0252b1e7ce140a8431.tar.gz
perf/x86/rapl: Fix missing psys sysfs attributes
This fixes a problem introduced by commit: 5fb5273a905c ("perf/x86/rapl: Use new MSR detection interface") that perf event sysfs attributes for psys RAPL domain are missing. Fixes: 5fb5273a905c ("perf/x86/rapl: Use new MSR detection interface") Signed-off-by: Zhang Rui <rui.zhang@intel.com> Signed-off-by: Ingo Molnar <mingo@kernel.org> Reviewed-by: Kan Liang <kan.liang@linux.intel.com> Reviewed-by: Len Brown <len.brown@intel.com> Acked-by: Jiri Olsa <jolsa@redhat.com> Link: https://lore.kernel.org/r/20200811153149.12242-2-rui.zhang@intel.com
-rw-r--r--arch/x86/events/rapl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/events/rapl.c b/arch/x86/events/rapl.c
index 68b38820b10e8e..e9723833551f1f 100644
--- a/arch/x86/events/rapl.c
+++ b/arch/x86/events/rapl.c
@@ -665,7 +665,7 @@ static const struct attribute_group *rapl_attr_update[] = {
&rapl_events_pkg_group,
&rapl_events_ram_group,
&rapl_events_gpu_group,
- &rapl_events_gpu_group,
+ &rapl_events_psys_group,
NULL,
};