Re: [PATCH v2] coredump: Use 64bit time for unix time of coredump

2015-01-28 Thread Arnd Bergmann
On Wednesday 28 January 2015 10:46:06 Tina Ruchandani wrote: > struct timeval on 32-bit systems will have its tv_sec > value overflow in year 2038 and beyond. > Use a 64 bit value to print time of the coredump in seconds. > ktime_get_real_seconds is chosen here for efficiency reasons. > > Suggeste

[PATCH v2] coredump: Use 64bit time for unix time of coredump

2015-01-27 Thread Tina Ruchandani
struct timeval on 32-bit systems will have its tv_sec value overflow in year 2038 and beyond. Use a 64 bit value to print time of the coredump in seconds. ktime_get_real_seconds is chosen here for efficiency reasons. Suggested by: Arnd Bergmann Signed-off-by: Tina Ruchandani --- Changes in v2: