scsi: esas2r: use ktime_get_real_seconds()
authorArnd Bergmann <arnd@arndb.de>
Fri, 20 Apr 2018 16:02:09 +0000 (18:02 +0200)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 20 Apr 2018 23:40:16 +0000 (19:40 -0400)
commitfeeeca4ce2942b92db90e12a8e2baf0e6e3f0191
tree5102d3cd2b81e0952564dc94de23fa408d3069df
parentf9c25ccfc173dff6de4d68bd998e1a9fa93c5cab
scsi: esas2r: use ktime_get_real_seconds()

do_gettimeofday() is deprecated because of the y2038 overflow.  Here, we
use the result to pass into a 32-bit field in the firmware, which still
risks an overflow, but if the firmware is written to expect unsigned
values, it can at least last until y2106, and there is not much we can
do about it.

This changes do_gettimeofday() to ktime_get_real_seconds(), which at
least simplifies the code a bit, and avoids the deprecated
interface. I'm adding a comment about the overflow to document what
happens.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/esas2r/esas2r_init.c