Re: [PATCH 02/12] net: stmmac: avoid using timespec

2015-10-01 Thread Richard Cochran
On Wed, Sep 30, 2015 at 01:26:32PM +0200, Arnd Bergmann wrote: > We want to deprecate the use of 'struct timespec' on 32-bit > architectures, as it is will overflow in 2038. The stmmac > driver uses it to read the current time, and can simply > be changed to use ktime_get_real_ts64() instead. > >

Re: [PATCH 02/12] net: stmmac: avoid using timespec

2015-10-01 Thread Richard Cochran
On Wed, Sep 30, 2015 at 01:26:32PM +0200, Arnd Bergmann wrote: > We want to deprecate the use of 'struct timespec' on 32-bit > architectures, as it is will overflow in 2038. The stmmac > driver uses it to read the current time, and can simply > be changed to use ktime_get_real_ts64() instead. > >

[PATCH 02/12] net: stmmac: avoid using timespec

2015-09-30 Thread Arnd Bergmann
We want to deprecate the use of 'struct timespec' on 32-bit architectures, as it is will overflow in 2038. The stmmac driver uses it to read the current time, and can simply be changed to use ktime_get_real_ts64() instead. Because of hardware limitations, there is still an overflow in year 2106,

[PATCH 02/12] net: stmmac: avoid using timespec

2015-09-30 Thread Arnd Bergmann
We want to deprecate the use of 'struct timespec' on 32-bit architectures, as it is will overflow in 2038. The stmmac driver uses it to read the current time, and can simply be changed to use ktime_get_real_ts64() instead. Because of hardware limitations, there is still an overflow in year 2106,