diff options
-rw-r--r-- | tapset/ChangeLog | 4 | ||||
-rw-r--r-- | tapset/syscalls.stp | 4 |
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" |