diff options
author | fche <fche> | 2007-07-31 14:35:51 +0000 |
---|---|---|
committer | fche <fche> | 2007-07-31 14:35:51 +0000 |
commit | a75514be497aff02594e32753fec71fb0bb00d3c (patch) | |
tree | 9f37cd1450499e7003ab088e5b7de901c9628fd7 /tapset | |
parent | e6e233c657a0336c1a621ff513820383e2c41c2f (diff) | |
download | systemtap-steved-a75514be497aff02594e32753fec71fb0bb00d3c.tar.gz systemtap-steved-a75514be497aff02594e32753fec71fb0bb00d3c.tar.xz systemtap-steved-a75514be497aff02594e32753fec71fb0bb00d3c.zip |
2007-07-31 Frank Ch. Eigler <fche@elastic.org>
* ppc64/syscalls.stp: Remove duplicate sys_request_key{,.return}
aliases.
Diffstat (limited to 'tapset')
-rw-r--r-- | tapset/ChangeLog | 5 | ||||
-rw-r--r-- | tapset/ppc64/syscalls.stp | 22 |
2 files changed, 5 insertions, 22 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index b9462633..cf2c4d9d 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,8 @@ +2007-07-31 Frank Ch. Eigler <fche@elastic.org> + + * ppc64/syscalls.stp: Remove duplicate sys_request_key{,.return} + aliases. + 2007-07-30 Dave Wilder <dwilder@us.ibm.com> PR 4794 * syscalls2.stp (syscall.pread and syscall.pread32) diff --git a/tapset/ppc64/syscalls.stp b/tapset/ppc64/syscalls.stp index ac4f4dc5..8d614fa5 100644 --- a/tapset/ppc64/syscalls.stp +++ b/tapset/ppc64/syscalls.stp @@ -635,28 +635,6 @@ probe syscall.ppc_rtas.return = kernel.function("ppc_rtas").return { retstr = returnstr(1) } -# request_key ________________________________________________ -# -# asmlinkage long -# sys_request_key(const char __user *_type, -# const char __user *_description, -# const char __user *_callout_info, -# key_serial_t destringid) -# -probe syscall.request_key = kernel.function("sys_request_key") ? { - name = "request_key" - type_uaddr = $_type - description_uaddr = $_description - callout_info_uaddr = $_callout_info - destringid = $destringid - argstr = sprintf("%p, %p, %p, %p", type_uaddr, - description_uaddr, callout_info_uaddr, destringid) -} -probe syscall.request_key.return = kernel.function("sys_request_key").return ? { - name = "request_key" - retstr = returnstr(1) -} - # sys32_execve ________________________________________ # # long sys32_execve(unsigned long a0, unsigned long a1, unsigned long a2, |