Re: [PATCH] drm/exynos/ipp: Replace struct timeval usage

2015-06-01 Thread Arnd Bergmann
On Monday 01 June 2015 09:09:00 Tina Ruchandani wrote: > @@ -1518,10 +1519,11 @@ static int ipp_send_event(struct exynos_drm_ippdrv > *ippdrv, > e = list_first_entry(&c_node->event_list, > struct drm_exynos_ipp_send_event, base.link); > > - do_gettimeofday(&now); >

[PATCH] drm/exynos/ipp: Replace struct timeval usage

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 use of struct timeval with struct timespec64 which uses a 64-bit seconds representation and is y2038 safe. The patch is part of a larger effort to remove all 32-bit timeke

Re: [PATCH] drm/exynos/ipp: Replace struct timeval usage

2015-05-31 Thread Baruch Siach
Hi Tina, On Mon, Jun 01, 2015 at 08:43:08AM +0530, Tina Ruchandani wrote: > 'struct timeval' uses a 32-bit seconds representation which > will overflow in the year 2038 and beyond. This patch > replaces the use of struct timeval with struct timespec64 > which uses a 64-bit seconds representation a

[PATCH] drm/exynos/ipp: Replace struct timeval usage

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 use of struct timeval with struct timespec64 which uses a 64-bit seconds representation and is y2038 safe. The patch is part of a larger effort to remove all 32-bit timeke