Commit 17244623 authored by Vitaly Kuznetsov's avatar Vitaly Kuznetsov Committed by Greg Kroah-Hartman
Browse files

hv_util: switch to using timespec64



do_settimeofday() is deprecated, use do_settimeofday64() instead.

Signed-off-by: default avatarVitaly Kuznetsov <vkuznets@redhat.com>
Acked-by: default avatarJohn Stultz <john.stultz@linaro.org>
Acked-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f2d69760
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -185,7 +185,7 @@ static void hv_set_host_time(struct work_struct *work)
	struct adj_time_work	*wrk;
	struct adj_time_work	*wrk;
	s64 host_tns;
	s64 host_tns;
	u64 newtime;
	u64 newtime;
	struct timespec host_ts;
	struct timespec64 host_ts;


	wrk = container_of(work, struct adj_time_work, work);
	wrk = container_of(work, struct adj_time_work, work);


@@ -204,9 +204,9 @@ static void hv_set_host_time(struct work_struct *work)
		newtime += (current_tick - wrk->ref_time);
		newtime += (current_tick - wrk->ref_time);
	}
	}
	host_tns = (newtime - WLTIMEDELTA) * 100;
	host_tns = (newtime - WLTIMEDELTA) * 100;
	host_ts = ns_to_timespec(host_tns);
	host_ts = ns_to_timespec64(host_tns);


	do_settimeofday(&host_ts);
	do_settimeofday64(&host_ts);
}
}


/*
/*