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-1.1-279-ga1ecf9f


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  a1ecf9ff0f6fc6ef0bcdaf231ed2d395ee979b4b (commit)
       via  6c8598ca45b8c0910fc0f45352b31711164e4d1c (commit)
       via  c01a52256bfbd9a3d2873b2d48f7f94177d14641 (commit)
       via  9d2d9895621fdfe5c73034039183fc2fc31a1495 (commit)
       via  af872fe279a52fb19d5483db7d29cdaa1814ccdc (commit)
       via  816395d6f1c433cddc1eaecba2248168c1dd4a5a (commit)
       via  92ef533e0241eb1a39ef7ceef8dce52e4ae9d820 (commit)
       via  99578461999c233e49190ccf9ad9dee889b17d12 (commit)
       via  41877d526c4c864aa851bed5d405d6d197c0b39b (commit)
      from  08ee70c354131edccb0d1a73aa67abb9c65870fc (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 a1ecf9ff0f6fc6ef0bcdaf231ed2d395ee979b4b
Author: Mark Wielaard <mjw@redhat.com>
Date:   Sun Mar 21 17:23:17 2010 +0100

    Support signalfd4 in syscalls2.stp tapset.
    
    * tapset/aux_syscalls.stp (_signalfd4_flags_str): New utility function.
    * tapset/syscalls2.stp (syscall.signalfd[.return]): Handle signalfd4 variant
      when available.
    * testsuite/systemtap.syscall/signalfd.c: New test.

commit 6c8598ca45b8c0910fc0f45352b31711164e4d1c
Author: Mark Wielaard <mjw@redhat.com>
Date:   Sun Mar 21 09:55:10 2010 +0100

    Add inotify_init1() and inotify_add_watch() mask string support.
    
    * tapset/aux_syscalls.stp (_inotify_watch_mask_str): New helper function.
      (_inotify_init1_flag_str): Likewise.
    * tapset/syscalls.stp (inotify_add_watch): Stringify watch mask.
      (syscall.inotify_init[.return]): Add inotify_init1() support.
    * testsuite/systemtap.syscall/inotify.c: New test.

commit c01a52256bfbd9a3d2873b2d48f7f94177d14641
Author: Mark Wielaard <mjw@redhat.com>
Date:   Sat Mar 20 22:43:51 2010 +0100

    Add support for eventfd2 to syscall.stp tapset.
    
    * tapset/aux_syscalls.stp (_eventfd2_flag_str): New utility function.
    * tapset/syscalls.stp (syscall.eventfd[.return]): Add alternatives to
      handle eventfd2.
    * testsuite/systemtap.syscall/eventfd.c: New test.

commit 9d2d9895621fdfe5c73034039183fc2fc31a1495
Author: Mark Wielaard <mjw@redhat.com>
Date:   Sat Mar 20 20:53:18 2010 +0100

    Explicitly test first kernel version in utimensat syscall test.
    
    * testsuite/systemtap.syscall/futimes.c: utimensat was only available since
      2.6.22, but libc headers might already define __NR_utimensat.

commit af872fe279a52fb19d5483db7d29cdaa1814ccdc
Author: Mark Wielaard <mjw@redhat.com>
Date:   Sat Mar 20 20:20:39 2010 +0100

    Match syscall.pipe32 with regular syscall.pipe[2] output.
    
    * tapset/x86_64/syscalls.stp (syscall.pipe32[.return]): Define same
      variables and match argstr with regular syscall.pipe.

commit 816395d6f1c433cddc1eaecba2248168c1dd4a5a
Author: Mark Wielaard <mjw@redhat.com>
Date:   Sat Mar 20 19:58:29 2010 +0100

    Add support for dup3 to syscall.stp tapset.
    
    * tapset/aux_syscalls.stp (_dup3_flag_str): New helper function.
    * tapset/syscalls.stp (syscall.dup2): Add alternatives to handle dup3 also.
    * testsuite/systemtap.syscall/dup.c: New testcase.

commit 92ef533e0241eb1a39ef7ceef8dce52e4ae9d820
Author: Mark Wielaard <mjw@redhat.com>
Date:   Sat Mar 20 14:59:11 2010 +0100

    Add F_DUPFD_CLOEXEC to _fcntl_cmd_str().

commit 99578461999c233e49190ccf9ad9dee889b17d12
Author: Mark Wielaard <mjw@redhat.com>
Date:   Sat Mar 20 14:49:05 2010 +0100

    Add MSG_CMSG_CLOEXEC to _recvflags_str.

commit 41877d526c4c864aa851bed5d405d6d197c0b39b
Author: Mark Wielaard <mjw@redhat.com>
Date:   Fri Mar 19 23:19:19 2010 +0100

    Support epoll_create1 syscall.
    
    * tapset/aux_syscalls.stp (_epoll_create1_flag_str): New helper function.
    * tapset/syscalls.stp (syscall.epoll_create[.return]): Match epoll_creat1
      if available.

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

Summary of changes:
 tapset/aux_syscalls.stp                |  105 ++++++++++++++++++++++++++++
 tapset/syscalls.stp                    |  119 ++++++++++++++++++++++++++-----
 tapset/syscalls2.stp                   |   22 +++++--
 tapset/x86_64/syscalls.stp             |   35 +++++++++-
 testsuite/systemtap.syscall/dup.c      |   43 ++++++++++++
 testsuite/systemtap.syscall/eventfd.c  |   21 ++++++
 testsuite/systemtap.syscall/futimes.c  |    3 +-
 testsuite/systemtap.syscall/inotify.c  |   28 ++++++++
 testsuite/systemtap.syscall/poll.c     |    5 ++
 testsuite/systemtap.syscall/signalfd.c |   35 +++++++++
 10 files changed, 389 insertions(+), 27 deletions(-)
 create mode 100644 testsuite/systemtap.syscall/dup.c
 create mode 100644 testsuite/systemtap.syscall/eventfd.c
 create mode 100644 testsuite/systemtap.syscall/inotify.c
 create mode 100644 testsuite/systemtap.syscall/signalfd.c


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]