summaryrefslogtreecommitdiffstats
path: root/tapset/syscalls2.stp
diff options
context:
space:
mode:
Diffstat (limited to 'tapset/syscalls2.stp')
-rw-r--r--tapset/syscalls2.stp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tapset/syscalls2.stp b/tapset/syscalls2.stp
index 60a3b842..b2a929f0 100644
--- a/tapset/syscalls2.stp
+++ b/tapset/syscalls2.stp
@@ -533,7 +533,8 @@ probe syscall.quotactl = kernel.function("sys_quotactl") ? {
name = "quotactl"
cmd = $cmd
cmd_str = _quotactl_cmd_str($cmd)
- special = user_string($special)
+ special = $special
+ special_str = user_string($special)
id = $id
addr_uaddr = $addr
argstr = sprintf("%s, %s, %d, %p", cmd_str, special_str, $id, $addr)
@@ -967,7 +968,7 @@ probe syscall.rt_sigqueueinfo = kernel.function("sys_rt_sigqueueinfo") {
pid = $pid
sig = $sig
uinfo_uaddr = $uinfo
- argstr = sprintf("%p, %s, %p", $pid, _signal_name($sig), $uinfo)
+ argstr = sprintf("%d, %s, %p", $pid, _signal_name($sig), $uinfo)
}
probe syscall.rt_sigqueueinfo.return =
kernel.function("sys_rt_sigqueueinfo").return {