From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22931 invoked by alias); 29 Jun 2008 22:25:07 -0000 Received: (qmail 22813 invoked by uid 426); 29 Jun 2008 22:25:06 -0000 Date: Sun, 29 Jun 2008 22:25:00 -0000 Message-ID: <20080629222506.22794.qmail@sourceware.org> From: fche@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, pr6429-comp-unwindsyms, updated. rhel52-ga-470-g3c02e16 X-Git-Refname: refs/heads/pr6429-comp-unwindsyms X-Git-Reftype: branch X-Git-Oldrev: 4494bb1367876f3067d0e7c90b1466b9bd88633f X-Git-Newrev: 3c02e16c39aa0fd5b291faf610d9d71023392a2e Mailing-List: contact systemtap-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-cvs-owner@sourceware.org List-Archive: X-SW-Source: 2008-q2/txt/msg00157.txt.bz2 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, pr6429-comp-unwindsyms has been updated via 3c02e16c39aa0fd5b291faf610d9d71023392a2e (commit) via 37ddf6e5fa1530adc3a7236379a3a88dfef33d53 (commit) via 53ca410a6a6032c2cde6aac6e95b57c68585e48a (commit) via cfa2ca3cbf2da7bbabcdf35c3085a969bd2370e4 (commit) via 5e86a4eef7e29d89849d522bcdbe96e7a1e4b6b8 (commit) via 40d7937063ee4d01c3f28ff785557ef080b08ca1 (commit) via 471ca45b8e46177b5ee2f1f7eb4bf7d7881793df (commit) via 93126f9efcd0511e2034a44fe8e5dfdcb80095af (commit) via 2ffc79584b10e3e8a9d88f9f86b4fde074a22076 (commit) via 7ff47c2c671a4e8a6c80bc0af0b3c04f4e8034b5 (commit) via 4bb5f191165a7e3ca8942e19d19bd97d0cddefc7 (commit) via 2e67a43b11d5b44f962f1c6a0ad89d96e5645a44 (commit) via 8548f326bbbc5c99d692757618f4a7260b552de9 (commit) via 57286c7da57d75173149c733b00474d256af6b36 (commit) via ae95b1546c45578e0ab56c1842050cd731ec0508 (commit) via b84f3753b06258c02b768beb586bba3213890fff (commit) from 4494bb1367876f3067d0e7c90b1466b9bd88633f (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 3c02e16c39aa0fd5b291faf610d9d71023392a2e Author: Frank Ch. Eigler Date: Sun Jun 29 15:59:28 2008 -0400 transport/symbol rework: kernel-only probes working commit 37ddf6e5fa1530adc3a7236379a3a88dfef33d53 Author: Frank Ch. Eigler Date: Sun Jun 29 10:14:19 2008 -0400 STP_RELOCATE message for kernel relocatability (re)adaption, starting implementation commit 53ca410a6a6032c2cde6aac6e95b57c68585e48a Merge: 4494bb1367876f3067d0e7c90b1466b9bd88633f cfa2ca3cbf2da7bbabcdf35c3085a969bd2370e4 Author: Frank Ch. Eigler Date: Fri Jun 27 21:45:37 2008 -0400 Merge commit 'origin/master' into pr6429-comp-unwindsyms * commit 'origin/master': Always include libdw using link groups. Fix bug in handling process(PID) probes. Added tests for 'process(PID)' variants. This commit makes changes to the VFS tapset. The changes include deprecation of syscalls2.stp: Add sys_renameat. Only probe lines once for the :* wildcard line pattern. Revert checking address in runtime bz451707: fix conversions.exp test $name Cleanup in tapsets.cxx Added powerpc support to runtime/syscall.h. Remove validating _stext due to many aliased symbols PR6646: Add checking address in runtime Fixed offset argument to vm_callback. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 38 +++ auto_free.h | 40 +++ configure | 256 +--------------- configure.ac | 29 +-- runtime/ChangeLog | 10 + runtime/staprun/common.c | 30 ++ runtime/staprun/mainloop.c | 25 +-- runtime/staprun/staprun.c | 107 +++++++ runtime/staprun/staprun.h | 1 - runtime/sym.c | 11 +- runtime/syscall.h | 48 +++- runtime/task_finder.c | 12 +- runtime/transport/ChangeLog | 10 + runtime/transport/control.c | 10 +- runtime/transport/procfs.c | 2 + runtime/transport/symbols.c | 63 +++-- runtime/transport/transport.c | 5 + runtime/transport/transport_msgs.h | 17 +- tapset/ChangeLog | 4 + tapset/syscalls2.stp | 23 ++ tapset/vfs.stp | 303 ++++++++++++++++++- tapsets.cxx | 173 +++++------ testsuite/ChangeLog | 11 + testsuite/buildok/vfs_testcase.stp | 461 ++++++++++++++++++++++++++++ testsuite/systemtap.base/utrace_p4.exp | 68 ++++- testsuite/systemtap.stress/conversions.exp | 4 +- translate.cxx | 15 +- 27 files changed, 1331 insertions(+), 445 deletions(-) create mode 100644 auto_free.h create mode 100644 testsuite/buildok/vfs_testcase.stp hooks/post-receive -- systemtap: system-wide probe/trace tool