]> sourceware.org Git - systemtap.git/commitdiff
Correct compat_sys_utimensat arg.
authorwcohen <wcohen>
Thu, 23 Aug 2007 15:30:38 +0000 (15:30 +0000)
committerwcohen <wcohen>
Thu, 23 Aug 2007 15:30:38 +0000 (15:30 +0000)
tapset/ChangeLog
tapset/syscalls2.stp

index 0282683abf9dc1e3937995c61522e60c00d9c1dc..e7bfcd32bb564a18f152491c19c97574c8e39c07 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-09  William Cohen  <wcohen@redhat.com>
+
+       * syscalls2.stp (compat_sys_utimensat): Correct function arg.
+
 2007-08-23  Martin Hunt  <hunt@redhat.com>
 
        * syscalls2.stp (sys_tee.return): Make optional
index be605ff72468a00fbf08652c4f284bea39ae7305..739507839d92bf9947b1e9fe4264a9b749c587f2 100644 (file)
@@ -2923,7 +2923,7 @@ probe syscall.utimensat = kernel.function("sys_utimensat") ? {
 }
 probe syscall.compat_utimensat = kernel.function("compat_sys_utimensat") ? {
        name = "utimensat"
-       argstr = sprintf("%s, %s, %s, %s", _dfd_str($dfd), user_string_quoted($filename), _struct_compat_timespec_u($utimes,2),
+       argstr = sprintf("%s, %s, %s, %s", _dfd_str($dfd), user_string_quoted($filename), _struct_compat_timespec_u($t,2),
                _at_flag_str($flags))
 }
 probe syscall.utimensat.return =  kernel.function("sys_utimensat").return ? {
This page took 0.030339 seconds and 5 git commands to generate.