From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751953Ab0AGKjB (ORCPT ); Thu, 7 Jan 2010 05:39:01 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751659Ab0AGKi7 (ORCPT ); Thu, 7 Jan 2010 05:38:59 -0500 Received: from ns.dcl.info.waseda.ac.jp ([133.9.216.194]:52130 "EHLO ns.dcl.info.waseda.ac.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751537Ab0AGKi6 (ORCPT ); Thu, 7 Jan 2010 05:38:58 -0500 Message-ID: <4B45B9C1.2040900@dcl.info.waseda.ac.jp> Date: Thu, 07 Jan 2010 19:38:57 +0900 From: Hitoshi Mitake User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.5) Gecko/20091211 Shredder/3.0 MIME-Version: 1.0 To: Peter Zijlstra CC: mingo@elte.hu, linux-kernel@vger.kernel.org, Paul Mackerras , Frederic Weisbecker Subject: Re: [PATCH 2/2] perf lock: Fix output of tracing lock events References: <1260934105-4472-1-git-send-email-mitake@dcl.info.waseda.ac.jp> <1260934105-4472-2-git-send-email-mitake@dcl.info.waseda.ac.jp> <1261041885.27920.110.camel@laptop> <1261994502.7135.51.camel@laptop> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2009年12月31日 22:24, Hitoshi Mitake wrote: > On Mon, Dec 28, 2009 at 19:01, Peter Zijlstra wrote: >> On Sat, 2009-12-26 at 22:43 +0900, Hitoshi Mitake wrote: >> >>>> As to removing the waittime, I'm not sure, in this case, yes, but if you >>>> want some other processing that hooks straight into the tracepoints >>>> instead of using a logging structure, it might be useful. >>>> >>>> Removing that do_div() from there and exposing waittime as u64 in nsec, >>>> for sure, that do_div() is just silly. >>>> >>>> >>>> >>> >>> I was too egoist. perf lock is not an only one user of lock events. >>> >>> And I have a suggestion. Adding name of source files and lines of >>> lock instances may be good thing for human's readability. >>> How do you think? >> >> file:line might be interesting indeed, but I worry about the size of the >> event entry.. But lets see how that goes. >> >>>> Why do we need to have instance resolution? >> >> You forgot to answer this question. >> >> Is it purely because the waittime computation as done by lockstat is not >> good enough for you -- should we not fix that instead, that'd benefit >> more people. >> >> >> > > Ah, sorry, let me answer to the question. > > Yes, I need instance resolution. Name is not enough thing. > Because there are locks which use name which is used by other locks. > For example, at least 5 lock instances use the name "port_lock". > > This is copied from output of cscope. > > *** drivers/infiniband/core/user_mad.c: > [138] static DEFINE_SPINLOCK(port_lock); > > *** drivers/net/ehea/ehea.h: > [473] struct mutex port_lock; > > *** drivers/pcmcia/i82092.c: > [202] static DEFINE_SPINLOCK(port_lock); > > *** drivers/pcmcia/pd6729.c: > [69] static DEFINE_SPINLOCK(port_lock); > > *** drivers/usb/gadget/u_serial.c: > [94] spinlock_t port_lock; > > port_lock of ehea.h and u_serial.c is a member of struct, > so number of instances with this name is more than 5. > > So we cannot distinguish between each lock instances by their name. > > And waittime caliculated by lockstat is valuable information, > but we can also use timestamp. > waittime is not equal to hold time, and every events have their timestamps. > I think exploiting information from timestamps > (which already be providec) is worthful. > -- Sorry, I felt that I misunderstood intention of your question. If you told about /proc/lock_stat, yes, it is very useful information. But this provides all information from system boot. perf lock can provide lock statistics between two arbitrarily points. This is valuable thing for analyzing behavior of specific applications.