aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/eeh_driver.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2017-11-04 22:26:52 +0100
committerMichael Ellerman <mpe@ellerman.id.au>2017-11-06 17:40:00 +1100
commitedfd17ff39bce59886e8249e645d6ecfc3e3829c (patch)
treeb5802f2d9eb65d657f714f31329d2b07487a7834 /arch/powerpc/kernel/eeh_driver.c
parentcxl: Rework the implementation of cxl_stop_trace_psl9() (diff)
downloadlinux-dev-edfd17ff39bce59886e8249e645d6ecfc3e3829c.tar.xz
linux-dev-edfd17ff39bce59886e8249e645d6ecfc3e3829c.zip
powerpc/eeh: Stop using do_gettimeofday()
This interface is inefficient and deprecated because of the y2038 overflow. ktime_get_seconds() is an appropriate replacement here, since it has sufficient granularity but is more efficient and uses monotonic time. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com> Acked-by: Russell Currey <ruscur@russell.cc> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel/eeh_driver.c')
-rw-r--r--arch/powerpc/kernel/eeh_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/eeh_driver.c b/arch/powerpc/kernel/eeh_driver.c
index 8b840191df59..57d54163bf94 100644
--- a/arch/powerpc/kernel/eeh_driver.c
+++ b/arch/powerpc/kernel/eeh_driver.c
@@ -623,7 +623,7 @@ static int eeh_reset_device(struct eeh_pe *pe, struct pci_bus *bus,
struct eeh_rmv_data *rmv_data)
{
struct pci_bus *frozen_bus = eeh_pe_bus_get(pe);
- struct timeval tstamp;
+ time64_t tstamp;
int cnt, rc;
struct eeh_dev *edev;