diff options
author | Deepa Dinamani <deepa.kernel@gmail.com> | 2019-02-02 07:34:48 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-02-03 11:17:30 -0800 |
commit | 13c6ee2a921683bae4bb4ba57b1f5b82f49e6b8a (patch) | |
tree | 6603af04975126384041dacb4d094d58e6de7b6b /drivers/isdn/mISDN | |
parent | bcb3fc3247e5a7ceb467ca0cfdaa4c1b830dd8f9 (diff) | |
download | linux-13c6ee2a921683bae4bb4ba57b1f5b82f49e6b8a.tar.gz linux-13c6ee2a921683bae4bb4ba57b1f5b82f49e6b8a.tar.bz2 linux-13c6ee2a921683bae4bb4ba57b1f5b82f49e6b8a.zip |
socket: Use old_timeval types for socket timestamps
As part of y2038 solution, all internal uses of
struct timeval are replaced by struct __kernel_old_timeval
and struct compat_timeval by struct old_timeval32.
Make socket timestamps use these new types.
This is mainly to be able to verify that the kernel build
is y2038 safe when such non y2038 safe types are not
supported anymore.
Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
Acked-by: Willem de Bruijn <willemb@google.com>
Cc: isdn@linux-pingi.de
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/mISDN')
-rw-r--r-- | drivers/isdn/mISDN/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/mISDN/socket.c b/drivers/isdn/mISDN/socket.c index 15d3ca37669a..4ab8b1b6608f 100644 --- a/drivers/isdn/mISDN/socket.c +++ b/drivers/isdn/mISDN/socket.c @@ -103,7 +103,7 @@ mISDN_ctrl(struct mISDNchannel *ch, u_int cmd, void *arg) static inline void mISDN_sock_cmsg(struct sock *sk, struct msghdr *msg, struct sk_buff *skb) { - struct timeval tv; + struct __kernel_old_timeval tv; if (_pms(sk)->cmask & MISDN_TIME_STAMP) { skb_get_timestamp(skb, &tv); |