diff options
author | Tina Ruchandani <ruchandani.tina@gmail.com> | 2016-03-19 11:21:14 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-20 16:47:13 -0400 |
commit | ebf918cf9922748b9d4d9bf6a2620530cdc5a1d0 (patch) | |
tree | 815830cb374a7c8d945af83d1ed00ff89930a269 /include/linux/mISDNif.h | |
parent | 4320f21935534dad44e8d112fc085d13c29e7f66 (diff) | |
download | linux-stable-ebf918cf9922748b9d4d9bf6a2620530cdc5a1d0.tar.gz linux-stable-ebf918cf9922748b9d4d9bf6a2620530cdc5a1d0.tar.bz2 linux-stable-ebf918cf9922748b9d4d9bf6a2620530cdc5a1d0.zip |
isdn: Use ktime_t instead of 'struct timeval'
'struct timeval' uses 32-bit representation for seconds which will
overflow in year 2038 and beyond. mISDN/clock.c needs to compute and
store elapsed time in intervals of 125 microseconds. This patch replaces
the usage of 'struct timeval' with 64-bit ktime_t which is y2038 safe.
The patch also replaces do_gettimeofday() (wall-clock time) with
ktime_get() (monotonic time) since we only care about elapsed time here.
Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com>
Suggested-by: Arnd Bergmnann <arnd@arndb.de>
Suggested-by: David Miller <davem@davemloft.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/mISDNif.h')
-rw-r--r-- | include/linux/mISDNif.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mISDNif.h b/include/linux/mISDNif.h index 246a3529ecf6..ac02c54520e9 100644 --- a/include/linux/mISDNif.h +++ b/include/linux/mISDNif.h @@ -596,7 +596,7 @@ static inline struct mISDNdevice *dev_to_mISDN(struct device *dev) } extern void set_channel_address(struct mISDNchannel *, u_int, u_int); -extern void mISDN_clock_update(struct mISDNclock *, int, struct timeval *); +extern void mISDN_clock_update(struct mISDNclock *, int, ktime_t *); extern unsigned short mISDN_clock_get(void); extern const char *mISDNDevName4ch(struct mISDNchannel *); |