summaryrefslogtreecommitdiff
path: root/include/uapi/linux/time_types.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2019-11-05 13:10:01 +0300
committerArnd Bergmann <arnd@arndb.de>2019-11-15 16:38:29 +0300
commit2a785996cc5e2fc1d1d29d196f530905f68d2dc2 (patch)
tree554fb14f12fba31cdc7a39b80ccc63ab1efdfed1 /include/uapi/linux/time_types.h
parent1bf883c1a9cf88a60234039356aac8f23479dce9 (diff)
downloadlinux-2a785996cc5e2fc1d1d29d196f530905f68d2dc2.tar.xz
y2038: uapi: change __kernel_time_t to __kernel_old_time_t
This is mainly a patch for clarification, and to let us remove the time_t definition from the kernel to prevent new users from creeping in that might not be y2038-safe. All remaining uses of 'time_t' or '__kernel_time_t' are part of the user API that cannot be changed by that either have a replacement or that do not suffer from the y2038 overflow. Acked-by: Deepa Dinamani <deepa.kernel@gmail.com> Acked-by: Christian Brauner <christian.brauner@ubuntu.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/uapi/linux/time_types.h')
-rw-r--r--include/uapi/linux/time_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/time_types.h b/include/uapi/linux/time_types.h
index 60b37f29842d..074e391d73a1 100644
--- a/include/uapi/linux/time_types.h
+++ b/include/uapi/linux/time_types.h
@@ -29,8 +29,8 @@ struct __kernel_old_timeval {
#endif
struct __kernel_old_timespec {
- __kernel_time_t tv_sec; /* seconds */
- long tv_nsec; /* nanoseconds */
+ __kernel_old_time_t tv_sec; /* seconds */
+ long tv_nsec; /* nanoseconds */
};
struct __kernel_sock_timeval {