This is the mail archive of the systemtap-cvs@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-0.9-102-g89f3a12


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "systemtap: system-wide probe/trace tool".

The branch, master has been updated
       via  89f3a1254ccf16a6828671c6e5bc407bc061f040 (commit)
       via  e2086848b3b1e010249f68857ec10d6b9382446e (commit)
      from  f400d6e427cb7494d072ad124e7996925015bdf4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 89f3a1254ccf16a6828671c6e5bc407bc061f040
Author: Wenji Huang <wenji.huang@oracle.com>
Date:   Mon Mar 9 10:05:42 2009 -0400

    Make marker probe support listing mode -L
    
    This patch is to enable displaying the arguments of
    marker probe for listing mode -L. The output is like,
    
    $stap -L 'kernel.mark("*")'
    kernel.mark("core_marker_format").format("name %s format %s") $arg1:string $arg2:string
    kernel.mark("jbd2_checkpoint").format("dev %s need_checkpoint %d") $arg1:string
    $arg2:long
    kernel.mark("jbd2_end_commit").format("dev %s transaction %d head %d") $arg1:string $arg2:long $arg3:long
    kernel.mark("jbd2_start_commit").format("dev %s transaction %d") $arg1:string $arg2:long
    
    Note: It's also possible to figure out the arguments according to the format.
    
    Signed-off-by: Wenji Huang <wenji.huang@oracle.com>

commit e2086848b3b1e010249f68857ec10d6b9382446e
Author: Wenji Huang <wenji.huang@oracle.com>
Date:   Mon Mar 9 08:17:27 2009 -0400

    Make tracepoint probe support listing mode -L
    
    This patch is to enable displaying arguments of tracepoint
    probe in listing mode -L. The example output is like
    
    $stap -L 'kernel.trace("block_bio*")'
    kernel.trace("block_bio_bounce") $q:struct request_queue* $bio:struct bio*
    kernel.trace("block_bio_backmerge") $q:struct request_queue* $bio:struct bio*
    kernel.trace("block_bio_complete") $q:struct request_queue* $bio:struct bio*
    kernel.trace("block_bio_queue") $q:struct request_queue* $bio:struct bio*
    kernel.trace("block_bio_frontmerge") $q:struct request_queue* $bio:struct bio*
    
    Signed-off-by: Wenji Huang <wenji.huang@oracle.com>

-----------------------------------------------------------------------

Summary of changes:
 elaborate.h |    2 ++
 main.cxx    |    5 ++++-
 tapsets.cxx |   29 +++++++++++++++++++++++++++++
 3 files changed, 35 insertions(+), 1 deletions(-)


hooks/post-receive
--
systemtap: system-wide probe/trace tool


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]