linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BUG] perf: sharing of cpuctx between core and ibs PMU causes problems
@ 2012-08-09  0:51 Stephane Eranian
  2012-08-09  6:55 ` Yan, Zheng
  0 siblings, 1 reply; 9+ messages in thread
From: Stephane Eranian @ 2012-08-09  0:51 UTC (permalink / raw)
  To: LKML; +Cc: Peter Zijlstra, Robert Richter, mingo, Yan, Zheng

Hi,

I ran into a problem on my AMD box whereby I would hit the
WARN_ON_ONCE(cpuctx->cgrp) in perf_cgroup_switch().

It took me a while to track this down. It turns out that the
list_for_each_entry_rcu() loop had multiple iterations. That's
normal, we have CPU PMU and IBS PMU.  But what caused
the warning to fire is that both the core and IBS PMU were
pointing to the same cpuctx struct. Thus, the cpuctx->cgrp
was already set  in the second iteration.

Is the warning a false positive?

In perf_pmu_register(), there is a search for a matching
pmu->task_ctx_nr. Given that the field is pointing to
perf_hw_context for both cpu and IBS PMU, there is
a match and therefore the cpuctx are shared.

The question is: why do we have to share the cpuctx?

Note that the same issue probably exists with the Intel
uncore PMU.

If we need to share, then the perf_cgroup_switch() code
needs to change because, as it stands, it is doing the
switching twice in this case.

Either way something looks wrong here.

Any idea?

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2012-08-13 15:36 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-09  0:51 [BUG] perf: sharing of cpuctx between core and ibs PMU causes problems Stephane Eranian
2012-08-09  6:55 ` Yan, Zheng
2012-08-09 14:05   ` Stephane Eranian
2012-08-09 18:08     ` Peter Zijlstra
2012-08-09 19:21       ` Stephane Eranian
2012-08-13 10:28         ` Peter Zijlstra
2012-08-13 12:53           ` Stephane Eranian
2012-08-13 15:32             ` Peter Zijlstra
2012-08-13 15:36               ` Stephane Eranian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).