aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/timex.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2019-12-16 15:48:53 +0100
committerDavid S. Miller <davem@davemloft.net>2020-01-30 11:14:28 +0100
commitd68712ee35069455ea4043d443c8d4fb9a1ee956 (patch)
tree7b4f6aea79a4d264d2861a596c063c1a94dfbab4 /include/uapi/linux/timex.h
parentsparc64: add support for folded p4d page tables (diff)
downloadlinux-dev-d68712ee35069455ea4043d443c8d4fb9a1ee956.tar.xz
linux-dev-d68712ee35069455ea4043d443c8d4fb9a1ee956.zip
y2038: sparc: remove use of struct timex
'struct timex' is one of the last users of 'struct timeval' and is only referenced in one place in the kernel any more, to convert the user space timex into the kernel-internal version on sparc64, with a different tv_usec member type. As a preparation for hiding the time_t definition and everything using that in the kernel, change the implementation once more to only convert the timeval member, and then enclose the struct definition in an #ifdef. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Julian Calaby <julian.calaby@gmail.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--include/uapi/linux/timex.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/timex.h b/include/uapi/linux/timex.h
index 9f517f9010bb..bd627c368d09 100644
--- a/include/uapi/linux/timex.h
+++ b/include/uapi/linux/timex.h
@@ -57,6 +57,7 @@
#define NTP_API 4 /* NTP API version */
+#ifndef __KERNEL__
/*
* syscall interface - used (mainly by NTP daemon)
* to discipline kernel clock oscillator
@@ -91,6 +92,7 @@ struct timex {
int :32; int :32; int :32; int :32;
int :32; int :32; int :32;
};
+#endif
struct __kernel_timex_timeval {
__kernel_time64_t tv_sec;