summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhunt <hunt>2007-07-09 14:55:33 +0000
committerhunt <hunt>2007-07-09 14:55:33 +0000
commit7c13fcd986c179339858c29cc55bb536152d9df3 (patch)
tree53a14cdc9b34d155527ad0432524c1bb7040ea73
parent49231d5e932948cb28190eab857d27585fabb902 (diff)
downloadsystemtap-steved-7c13fcd986c179339858c29cc55bb536152d9df3.tar.gz
systemtap-steved-7c13fcd986c179339858c29cc55bb536152d9df3.tar.xz
systemtap-steved-7c13fcd986c179339858c29cc55bb536152d9df3.zip
2007-07-09 Martin Hunt <hunt@redhat.com>
* syscalls.stp (compat_sys_futimesat): Fix arg.
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/syscalls.stp4
2 files changed, 6 insertions, 2 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index bab447c2..2d64dfc3 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,7 @@
+2007-07-09 Martin Hunt <hunt@redhat.com>
+
+ * syscalls.stp (compat_sys_futimesat): Fix arg.
+
2007-07-03 Martin Hunt <hunt@redhat.com>
* syscalls.stp: Add sys_futimesat, compat_sys_futimesat.
diff --git a/tapset/syscalls.stp b/tapset/syscalls.stp
index a2a2419f..bcf7adb6 100644
--- a/tapset/syscalls.stp
+++ b/tapset/syscalls.stp
@@ -940,9 +940,9 @@ probe syscall.compat_futimesat = kernel.function("compat_sys_futimesat") ? {
dirfd = $dfd
filename_uaddr = $filename
filename = user_string($filename)
- tvp_uaddr = $utimes
+ tvp_uaddr = $t
argstr = sprintf("%d, %s, %s", $dfd, user_string_quoted($filename),
- _struct_compat_timeval2_u($utimes))
+ _struct_compat_timeval2_u($t))
}
probe syscall.futimesat.return = kernel.function("sys_futimesat").return ? {
name = "futimesat"