Andi, On Thu, Sep 28, 2006 at 10:05:08AM +0200, Andi Kleen wrote: > > PAPI people for instance. > > > > The P4 PMU has independent counters, i.e., enable bits. The issue is that > > to stop a counter > > requires clearing the CCCR which also contains the overflow information > > (has the counter > > overflowed?). So you need to read the CCCR, save the value somewhere, clear > > the CCCR. > > You need some save area that you can safely access without grabbing any > > lock (because you > > are in the NMI handler). > > Not sure what the lock would be needed for. It is only a per CPU variable > that doesn't > need synchronization no?
The CCCR register is by definition a per-CPU entity. However, the perfmon context where the CCCR is saved is not. Any thread with access to the file descriptor can gain access to the context. This can occur from any CPU. Of course, we do have checks in place but they run after the context lock is held. The main restriction is that a thread cannot operate on a context attached to another thread unless that thread is stopped (checked via ptrace_check_attach). Yet there are a few perfmon syscalls, for which this restriction does not apply because they do not need to touch the PMU hardware, yet they modify the context state. I think this could work on P4, if we could clear the CCCR and yet retain enough state to detect which counter(s) overflowed. On P6, where there is not overflow bit in the control register, we simply check the upper bits on the counters. We could probably do the same for P4. -- -Stephane _______________________________________________ perfmon mailing list [email protected] http://www.hpl.hp.com/hosted/linux/mail-archives/perfmon/
