Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759961AbZCSRl6 (ORCPT ); Thu, 19 Mar 2009 13:41:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754158AbZCSRlt (ORCPT ); Thu, 19 Mar 2009 13:41:49 -0400 Received: from viefep17-int.chello.at ([62.179.121.37]:17519 "EHLO viefep17-int.chello.at" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753081AbZCSRls (ORCPT ); Thu, 19 Mar 2009 13:41:48 -0400 X-SourceIP: 213.93.53.227 Subject: Re: Test program for counters in groups From: Peter Zijlstra To: Paul Mackerras Cc: Ingo Molnar , Thomas Gleixner , linux-kernel@vger.kernel.org In-Reply-To: <18880.12797.758764.128252@cargo.ozlabs.ibm.com> References: <18880.12797.758764.128252@cargo.ozlabs.ibm.com> Content-Type: text/plain Date: Thu, 19 Mar 2009 18:41:35 +0100 Message-Id: <1237484495.24626.24.camel@twins> Mime-Version: 1.0 X-Mailer: Evolution 2.24.3 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2258 Lines: 49 On Wed, 2009-03-18 at 10:27 +1100, Paul Mackerras wrote: > Here's a little test program that checks whether software counters > (specifically, the task clock counter) work correctly when they're in > a group with hardware counters. > > What it does is to create several groups, each with one hardware > counter, counting instructions, plus a task clock counter. It needs > to know an upper bound N on the number of hardware counters you have > (N defaults to 8), and it creates N+4 groups to force them to be > multiplexed. It also creates an overall task clock counter. > > Then it spins for a while, and then stops all the counters and reads > them. It takes the total of the task clock counters in the groups and > computes the ratio of that total to the overall execution time from > the overall task clock counter. > > That ratio should be equal to the number of actual hardware counters > that can count instructions. If the task clock counters in the groups > don't stop when their group gets taken off the PMU, the ratio will > instead be close to N+4. The program will declare that the test fails > if the ratio is greater than N (actually, N + 0.0001 to allow for FP > rounding errors). > > Could someone run this on x86 on the latest PCL tree and let me know > what happens? I don't have an x86 crash box easily to hand. On > powerpc, it passes, but I think that is because I am missing setting > counter->prev_count in arch/powerpc/kernel/perf_counter.c, and I think > that means that enabling/disabling a group with a task clock counter > in it won't work correctly (I'll do a test program for that next). > > Usage is: swsched-test [-c num-hw-counters] [-v] > > Use -c N if you have more than 8 hardware counters. The -v flag makes > it print out the values of each counter. Adapted the thing a little for the latest ABI, but it seems to work: [root@opteron ~]# ./swsched-test overall task clock: 3211403572 hw sum: 12150279972, task clock sum: 12845614288 ratio: 4.00 test passed -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/