aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/xen')
-rw-r--r--arch/x86/xen/time.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/arch/x86/xen/time.c b/arch/x86/xen/time.c
index 163b4679556e..0296a9522501 100644
--- a/arch/x86/xen/time.c
+++ b/arch/x86/xen/time.c
@@ -201,8 +201,22 @@ static unsigned long xen_get_wallclock(void)
201 201
202static int xen_set_wallclock(unsigned long now) 202static int xen_set_wallclock(unsigned long now)
203{ 203{
204 struct xen_platform_op op;
205 int rc;
206
204 /* do nothing for domU */ 207 /* do nothing for domU */
205 return -1; 208 if (!xen_initial_domain())
209 return -1;
210
211 op.cmd = XENPF_settime;
212 op.u.settime.secs = now;
213 op.u.settime.nsecs = 0;
214 op.u.settime.system_time = xen_clocksource_read();
215
216 rc = HYPERVISOR_dom0_op(&op);
217 WARN(rc != 0, "XENPF_settime failed: now=%ld\n", now);
218
219 return rc;
206} 220}
207 221
208static struct clocksource xen_clocksource __read_mostly = { 222static struct clocksource xen_clocksource __read_mostly = {