Re: [PATCH] [RESEND] scsi: fnic: use 64-bit timestamps

2018-01-17 Thread Martin K. Petersen
Arnd, > struct timespec is deprecated since it overflows in 2038 on 32-bit > architectures, so we should use timespec64 consistently. > > I'm slightly adapting the format strings here, to make sure we > print the nanoseconds with the correct number of leading zeroes. Applied to 4.16/scsi-queue.

RE: [PATCH] [RESEND] scsi: fnic: use 64-bit timestamps

2018-01-17 Thread Satish Kharat (satishkh)
: Arnd Bergmann ; Vasyl Gomonovych ; linux-scsi@vger.kernel.org; linux-ker...@vger.kernel.org Subject: [PATCH] [RESEND] scsi: fnic: use 64-bit timestamps struct timespec is deprecated since it overflows in 2038 on 32-bit architectures, so we should use timespec64 consistently. I'm sli

[PATCH] [RESEND] scsi: fnic: use 64-bit timestamps

2018-01-17 Thread Arnd Bergmann
struct timespec is deprecated since it overflows in 2038 on 32-bit architectures, so we should use timespec64 consistently. I'm slightly adapting the format strings here, to make sure we print the nanoseconds with the correct number of leading zeroes. Signed-off-by: Arnd Bergmann --- Originally