Re: [PATCH] [DCCP]: Use 64-bit timekeeping

2015-11-01 Thread David Miller
From: Tina Ruchandani Date: Fri, 30 Oct 2015 01:24:56 -0700 > This patch changes the use of struct timespec in > dccp_probe to use struct timespec64 instead. timespec uses a 32-bit > seconds field which will overflow in the year 2038 and beyond. timespec64 > uses a 64-bit seconds field. Note that

[PATCH] [DCCP]: Use 64-bit timekeeping

2015-10-30 Thread Tina Ruchandani
This patch changes the use of struct timespec in dccp_probe to use struct timespec64 instead. timespec uses a 32-bit seconds field which will overflow in the year 2038 and beyond. timespec64 uses a 64-bit seconds field. Note that the correctness of the code isn't changed, since the original code on