]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
perf/x86/mbm: Implement RMID recycling
authorVikas Shivappa <vikas.shivappa@linux.intel.com>
Thu, 10 Mar 2016 23:32:11 +0000 (15:32 -0800)
committerIngo Molnar <mingo@kernel.org>
Mon, 21 Mar 2016 08:08:20 +0000 (09:08 +0100)
RMID could be allocated or deallocated as part of RMID recycling.

When an RMID is allocated for MBM event, the MBM counter needs to be
initialized because next time we read the counter we need the previous
value to account for total bytes that went to the memory controller.

Similarly, when RMID is deallocated we need to update the ->count
variable.

Signed-off-by: Vikas Shivappa <vikas.shivappa@linux.intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Tony Luck <tony.luck@intel.com>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Matt Fleming <matt@codeblueprint.co.uk>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Vince Weaver <vincent.weaver@maine.edu>
Cc: fenghua.yu@intel.com
Cc: h.peter.anvin@intel.com
Cc: ravi.v.shankar@intel.com
Cc: vikas.shivappa@intel.com
Link: http://lkml.kernel.org/r/1457652732-4499-6-git-send-email-vikas.shivappa@linux.intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/events/intel/cqm.c

index 610bd8ab37e4c0561e9b73bae06c1f2766f41d5e..a98f472bf6b237784c7f4f680510de577a4c3fe4 100644 (file)
@@ -450,6 +450,7 @@ struct rmid_read {
 
 static void __intel_cqm_event_count(void *info);
 static void init_mbm_sample(u32 rmid, u32 evt_type);
+static void __intel_mbm_event_count(void *info);
 
 static bool is_mbm_event(int e)
 {
@@ -476,8 +477,14 @@ static u32 intel_cqm_xchg_rmid(struct perf_event *group, u32 rmid)
                        .rmid = old_rmid,
                };
 
-               on_each_cpu_mask(&cqm_cpumask, __intel_cqm_event_count,
-                                &rr, 1);
+               if (is_mbm_event(group->attr.config)) {
+                       rr.evt_type = group->attr.config;
+                       on_each_cpu_mask(&cqm_cpumask, __intel_mbm_event_count,
+                                        &rr, 1);
+               } else {
+                       on_each_cpu_mask(&cqm_cpumask, __intel_cqm_event_count,
+                                        &rr, 1);
+               }
                local64_set(&group->count, atomic64_read(&rr.value));
        }
 
@@ -489,6 +496,22 @@ static u32 intel_cqm_xchg_rmid(struct perf_event *group, u32 rmid)
 
        raw_spin_unlock_irq(&cache_lock);
 
+       /*
+        * If the allocation is for mbm, init the mbm stats.
+        * Need to check if each event in the group is mbm event
+        * because there could be multiple type of events in the same group.
+        */
+       if (__rmid_valid(rmid)) {
+               event = group;
+               if (is_mbm_event(event->attr.config))
+                       init_mbm_sample(rmid, event->attr.config);
+
+               list_for_each_entry(event, head, hw.cqm_group_entry) {
+                       if (is_mbm_event(event->attr.config))
+                               init_mbm_sample(rmid, event->attr.config);
+               }
+       }
+
        return old_rmid;
 }
 
@@ -978,7 +1001,7 @@ static void intel_cqm_setup_event(struct perf_event *event,
                        /* All tasks in a group share an RMID */
                        event->hw.cqm_rmid = rmid;
                        *group = iter;
-                       if (is_mbm_event(event->attr.config))
+                       if (is_mbm_event(event->attr.config) && __rmid_valid(rmid))
                                init_mbm_sample(rmid, event->attr.config);
                        return;
                }
@@ -996,7 +1019,7 @@ static void intel_cqm_setup_event(struct perf_event *event,
        else
                rmid = __get_rmid();
 
-       if (is_mbm_event(event->attr.config))
+       if (is_mbm_event(event->attr.config) && __rmid_valid(rmid))
                init_mbm_sample(rmid, event->attr.config);
 
        event->hw.cqm_rmid = rmid;