[PATCH] xen/time: Return -ENODEV from xen_get_wallclock()

From: Boris Ostrovsky
Date: Thu Nov 02 2017 - 18:17:34 EST


For any other error sync_cmos_clock() will reschedule itself
every second or so, for no good reason.

Suggested-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@xxxxxxxxxx>
---
arch/x86/xen/time.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/xen/time.c b/arch/x86/xen/time.c
index 1ecb05d..244791f 100644
--- a/arch/x86/xen/time.c
+++ b/arch/x86/xen/time.c
@@ -74,7 +74,7 @@ static void xen_get_wallclock(struct timespec *now)

static int xen_set_wallclock(const struct timespec *now)
{
- return -1;
+ return -ENODEV;
}

static int xen_pvclock_gtod_notify(struct notifier_block *nb,
--
2.7.5