Re: [PATCH v3] [media] dvb-frontend: Replace timeval with ktime_t

2015-06-01 Thread Arnd Bergmann
On Sunday 31 May 2015 12:47:06 Tina Ruchandani wrote: > struct timeval uses a 32-bit seconds representation which will > overflow in the year 2038 and beyond. This patch replaces > the usage of struct timeval with ktime_t which is a 64-bit > timestamp and is year 2038 safe. > This patch is part of

[PATCH v3] [media] dvb-frontend: Replace timeval with ktime_t

2015-05-31 Thread Tina Ruchandani
struct timeval uses a 32-bit seconds representation which will overflow in the year 2038 and beyond. This patch replaces the usage of struct timeval with ktime_t which is a 64-bit timestamp and is year 2038 safe. This patch is part of a larger attempt to remove all instances of 32-bit timekeeping v