From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1700 invoked by alias); 28 Jun 2012 21:24:01 -0000 Received: (qmail 1632 invoked by uid 9945); 28 Jun 2012 21:24:00 -0000 Date: Thu, 28 Jun 2012 21:24:00 -0000 Message-ID: <20120628212400.1621.qmail@sourceware.org> From: serhei@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.8-31-g2f5bbff X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 33631d57fcf18c3981b83d786b01573cf1a7cf9c X-Git-Newrev: 2f5bbffa204e086143db19241c46be0c06277944 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: Reply-To: systemtap@sourceware.org X-SW-Source: 2012-q2/txt/msg00189.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, master has been updated via 2f5bbffa204e086143db19241c46be0c06277944 (commit) via 80c18fb07e4c0024ff14f699026a33aa89fb05c5 (commit) via 8eb6206cd38c487171bbbbd1bb9117891d2d6978 (commit) from 33631d57fcf18c3981b83d786b01573cf1a7cf9c (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 2f5bbffa204e086143db19241c46be0c06277944 Author: Serguei Makarov Date: Thu Jun 28 17:23:34 2012 -0400 PR12210: documentation and examples for alias suffix enhancement. commit 80c18fb07e4c0024ff14f699026a33aa89fb05c5 Author: Serguei Makarov Date: Thu Jun 28 17:18:41 2012 -0400 PR12210: testsuite for alias suffix enhancement. commit 8eb6206cd38c487171bbbbd1bb9117891d2d6978 Author: Serguei Makarov Date: Thu Jun 28 17:07:01 2012 -0400 PR12210: Basic implementation of alias suffixes. This enhancement permits the script writer to attach a suffix when invoking a probe alias. The components in the suffix are passed on to the underlying probe point. e.g. syscall.read.maxactive(10) expands to something like kernel.function("sys_read").return.maxactive(10); the maxactive(10) part is a suffix that is attached to the alias expansion of syscall.read.return. At this stage, the interaction of the feature with wildcards is somewhat limited. Namely, alias suffixes appear in wildcard expansions only when the old implementation would signal an error due to lack of expansions (see documentation in the next commit for details). This minimizes the impact on existing code, but the restriction should be removed as soon as we figure out a way to make the available suffixes reliably discoverable in error messages, features such as stap -l, etc. ----------------------------------------------------------------------- Summary of changes: doc/langref.tex | 44 ++++ elaborate.cxx | 228 +++++++++++++++++--- elaborate.h | 35 +++- main.cxx | 8 +- stapprobes.3stap | 19 ++- staptree.h | 1 + testsuite/buildok/alias_suffixes01.stp | 7 + testsuite/buildok/alias_suffixes02.stp | 3 + testsuite/buildok/alias_suffixes03.stp | 7 + testsuite/buildok/alias_suffixes04.stp | 8 + testsuite/buildok/alias_suffixes05.stp | 7 + testsuite/buildok/alias_suffixes06.stp | 7 + testsuite/semko/alias_suffixes01.stp | 11 + testsuite/semko/alias_suffixes02.stp | 8 + testsuite/semko/alias_suffixes03.stp | 11 + testsuite/semko/alias_suffixes04.stp | 5 + testsuite/semko/alias_suffixes05.stp | 5 + testsuite/semko/alias_suffixes06.stp | 10 + testsuite/semko/alias_suffixes07.stp | 7 + testsuite/systemtap.base/alias_suffixes.exp | 5 + testsuite/systemtap.base/alias_suffixes01.stp | 13 ++ testsuite/systemtap.base/alias_suffixes02.stp | 19 ++ testsuite/systemtap.base/alias_suffixes03.stp | 18 ++ testsuite/systemtap.base/alias_suffixes04.stp | 13 ++ testsuite/systemtap.base/alias_suffixes05.stp | 17 ++ .../systemtap.examples/general/alias_suffixes.meta | 10 + .../systemtap.examples/general/alias_suffixes.stp | 29 +++ 27 files changed, 521 insertions(+), 34 deletions(-) create mode 100755 testsuite/buildok/alias_suffixes01.stp create mode 100755 testsuite/buildok/alias_suffixes02.stp create mode 100755 testsuite/buildok/alias_suffixes03.stp create mode 100755 testsuite/buildok/alias_suffixes04.stp create mode 100755 testsuite/buildok/alias_suffixes05.stp create mode 100755 testsuite/buildok/alias_suffixes06.stp create mode 100755 testsuite/semko/alias_suffixes01.stp create mode 100755 testsuite/semko/alias_suffixes02.stp create mode 100755 testsuite/semko/alias_suffixes03.stp create mode 100755 testsuite/semko/alias_suffixes04.stp create mode 100755 testsuite/semko/alias_suffixes05.stp create mode 100755 testsuite/semko/alias_suffixes06.stp create mode 100755 testsuite/semko/alias_suffixes07.stp create mode 100644 testsuite/systemtap.base/alias_suffixes.exp create mode 100644 testsuite/systemtap.base/alias_suffixes01.stp create mode 100644 testsuite/systemtap.base/alias_suffixes02.stp create mode 100644 testsuite/systemtap.base/alias_suffixes03.stp create mode 100644 testsuite/systemtap.base/alias_suffixes04.stp create mode 100644 testsuite/systemtap.base/alias_suffixes05.stp create mode 100644 testsuite/systemtap.examples/general/alias_suffixes.meta create mode 100644 testsuite/systemtap.examples/general/alias_suffixes.stp hooks/post-receive -- systemtap: system-wide probe/trace tool