diff options
author | fche <fche> | 2007-08-10 15:43:03 +0000 |
---|---|---|
committer | fche <fche> | 2007-08-10 15:43:03 +0000 |
commit | 7bccd5b6f9778a91a1e66a52689d690bf2228131 (patch) | |
tree | bcfc848addee5beb8b8dbec9b889764be7fea32d /tapset | |
parent | 199f43f63cafc331d1834f86f0fee8e7b0d03b1a (diff) | |
download | systemtap-steved-7bccd5b6f9778a91a1e66a52689d690bf2228131.tar.gz systemtap-steved-7bccd5b6f9778a91a1e66a52689d690bf2228131.tar.xz systemtap-steved-7bccd5b6f9778a91a1e66a52689d690bf2228131.zip |
2007-08-10 Frank Ch. Eigler <fche@elastic.org>
From "Zhaolei" zhaolei@cn.fujitsu.com:
* syscalls.stp (msync.return): Correct name variable.
Diffstat (limited to 'tapset')
-rw-r--r-- | tapset/ChangeLog | 5 | ||||
-rw-r--r-- | tapset/syscalls.stp | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index 17d9a358..f4d20344 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,6 +1,11 @@ 2007-08-10 Frank Ch. Eigler <fche@elastic.org> From "Zhaolei" zhaolei@cn.fujitsu.com: + * syscalls.stp (msync.return): Correct name variable. + +2007-08-10 Frank Ch. Eigler <fche@elastic.org> + + From "Zhaolei" zhaolei@cn.fujitsu.com: * aux_syscalls.stp (_sockopt_optname_str): Add SO_SND/RCVBUFFORCE. 2007-08-09 Frank Ch. Eigler <fche@elastic.org> diff --git a/tapset/syscalls.stp b/tapset/syscalls.stp index 7299956f..d92cde83 100644 --- a/tapset/syscalls.stp +++ b/tapset/syscalls.stp @@ -1,6 +1,6 @@ // syscalls tapset part 1 [A-M] // Copyright (C) 2005 IBM Corp. -// Copyright (C) 2005, 2006 Red Hat Inc. +// Copyright (C) 2005-2007 Red Hat Inc. // Copyright (C) 2007 Quentin Barnes. // // This file is part of systemtap, and is free software. You can @@ -2515,7 +2515,7 @@ probe syscall.msync = kernel.function("sys_msync") { argstr = sprintf("%p, %d, %s",start, length, _msync_flag_str(flags)) } probe syscall.msync.return = kernel.function("sys_msync").return { - name = "msync.return" + name = "msync" retstr = returnstr(1) } |