kprobes: support kretprobe and jprobe per-probe disabling
[safe/jmp/linux-2.6] / include / linux / utime.h
index c6bf27b..5cdf673 100644 (file)
@@ -1,9 +1,11 @@
 #ifndef _LINUX_UTIME_H
 #define _LINUX_UTIME_H
 
+#include <linux/types.h>
+
 struct utimbuf {
-       time_t actime;
-       time_t modtime;
+       __kernel_time_t actime;
+       __kernel_time_t modtime;
 };
 
 #endif