]> asedeno.scripts.mit.edu Git - linux.git/commit
ipmi: Change to ktime_get_ts64()
authorArnd Bergmann <arnd@arndb.de>
Mon, 18 Jun 2018 14:27:09 +0000 (16:27 +0200)
committerCorey Minyard <cminyard@mvista.com>
Tue, 18 Sep 2018 21:15:33 +0000 (16:15 -0500)
commitdd3535b937c192941daa9b966caa707fa31c2c4d
tree2626f58bb04f926d065613c6a481c9376a65e00f
parent97a103e6b584442cd848887ed8d47be2410b7e09
ipmi: Change to ktime_get_ts64()

getnstimeofday64() is deprecated because of the inconsistent naming,
it is only a wrapper around ktime_get_real_ts64() now, which could be
used as a direct replacement.

However, it is generally better to use CLOCK_MONOTONIC timestamps
where possible, to avoid glitches with a concurrent settimeofday()
or leap second.

The uses in ipmi are either for debugging prints or for comparing against
a prior timestamp, so using a monotonic ktime_get_ts64() is probably
best here.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
drivers/char/ipmi/ipmi_si_intf.c