summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tapset/ChangeLog4
-rw-r--r--tapset/syscalls2.stp2
2 files changed, 5 insertions, 1 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 0282683a..e7bfcd32 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -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
diff --git a/tapset/syscalls2.stp b/tapset/syscalls2.stp
index be605ff7..73950783 100644
--- a/tapset/syscalls2.stp
+++ b/tapset/syscalls2.stp
@@ -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 ? {