From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1886 invoked by alias); 20 Feb 2012 22:49:25 -0000 Received: (qmail 1858 invoked by uid 9156); 20 Feb 2012 22:49:25 -0000 Date: Mon, 20 Feb 2012 22:49:00 -0000 Message-ID: <20120220224925.1847.qmail@sourceware.org> From: dsmith@sourceware.org To: systemtap-cvs@sourceware.org Subject: [SCM] systemtap: system-wide probe/trace tool branch, master, updated. release-1.7-30-g0322266 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 96f244c08929a255a65373c686e3d710e0e80dd1 X-Git-Newrev: 0322266ce3308482fb69fda69962b16d1b0d3513 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-q1/txt/msg00100.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 0322266ce3308482fb69fda69962b16d1b0d3513 (commit) via 1ed417b81ee212218bf779b301fba53f3ead5831 (commit) from 96f244c08929a255a65373c686e3d710e0e80dd1 (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 0322266ce3308482fb69fda69962b16d1b0d3513 Author: David Smith Date: Mon Feb 20 16:48:38 2012 -0600 Fix PR13646 (partial) by adding a testcase and some fixes. * tapset/ip.stp (format_ipaddr): Marked as 'pure' so that it can be optimized away. Fixed handling of IPv6 addresses. (__ip_sock_saddr): Added support for IPv6 sockets. (__ip_sock_daddr): Ditto. * tapset/tcp.stp: Added 'family' variable to tcp.recvmsg and tcp.recvmsg.return probes. * tapset/nfs_proc.stp (AF_INET): Marked as 'pure' so that it can be optimized away. (AF_INET6): New function. * testsuite/buildok/nfs_proc-embedded.stp: Added AF_INET6() compile test. * testsuite/buildok/tcp-detailed.stp: Prints 'family' variable in tcp.recvmsg and tcp.recvmsg.return probes. * testsuite/systemtap.base/ipaddr.exp: New testcase. * testsuite/systemtap.base/ipaddr.txt: Ditto. * testsuite/systemtap.base/ipaddr1.stp: Ditto. * testsuite/systemtap.base/ipaddr2.stp: Ditto. commit 1ed417b81ee212218bf779b301fba53f3ead5831 Author: David Smith Date: Thu Feb 16 10:19:00 2012 -0600 Fix PR13646 (partial) by handling IPv6 support in a module (for RHEL[56]). * tapset/ip.stp: Handle the case where IPv6 support is in a module (as it is on RHEL5 and RHEL6). ----------------------------------------------------------------------- Summary of changes: tapset/ip.stp | 73 +++++++++++----- tapset/nfs_proc.stp | 7 ++- tapset/tcp.stp | 4 + testsuite/buildok/nfs_proc-embedded.stp | 1 + testsuite/buildok/tcp-detailed.stp | 4 +- testsuite/systemtap.base/ipaddr.exp | 148 +++++++++++++++++++++++++++++++ testsuite/systemtap.base/ipaddr.txt | 10 ++ testsuite/systemtap.base/ipaddr1.stp | 46 ++++++++++ testsuite/systemtap.base/ipaddr2.stp | 47 ++++++++++ 9 files changed, 315 insertions(+), 25 deletions(-) create mode 100644 testsuite/systemtap.base/ipaddr.exp create mode 100644 testsuite/systemtap.base/ipaddr.txt create mode 100644 testsuite/systemtap.base/ipaddr1.stp create mode 100644 testsuite/systemtap.base/ipaddr2.stp hooks/post-receive -- systemtap: system-wide probe/trace tool