]> sourceware.org Git - systemtap.git/commitdiff
2007-07-09 Martin Hunt <hunt@redhat.com>
authorhunt <hunt>
Mon, 9 Jul 2007 14:55:33 +0000 (14:55 +0000)
committerhunt <hunt>
Mon, 9 Jul 2007 14:55:33 +0000 (14:55 +0000)
* syscalls.stp (compat_sys_futimesat): Fix arg.

tapset/ChangeLog
tapset/syscalls.stp

index bab447c2a70a380cc8e2a956a275c58cbfb609a9..2d64dfc32c92af5795bb8a0ad8f6fc70cacece05 100644 (file)
@@ -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.
index a2a2419f41fef25428b0403400c3cd027f538338..bcf7adb60524d28dbe4fe33a8405e87ff4a4f29b 100644 (file)
@@ -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"
This page took 0.033189 seconds and 5 git commands to generate.