[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1234989235.7991.2.camel@alok-dev1>
Date: Wed, 18 Feb 2009 12:33:55 -0800
From: Alok Kataria <akataria@...are.com>
To: Ingo Molnar <mingo@...e.hu>,
the arch/x86 maintainers <x86@...nel.org>
Cc: LKML <linux-kernel@...r.kernel.org>,
Zachary Amsden <zach@...are.com>
Subject: x86, vmi: TSC going backwards check in vmi clocksource
From: Alok N Kataria <akataria@...are.com>
Similar to the check for TSC going backwards in the TSC clocksource, we also
need this check for VMI clocksource.
Signed-off-by: Alok N Kataria <akataria@...are.com>
Cc: stable@...nel.org
---
arch/x86/kernel/vmiclock_32.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/arch/x86/kernel/vmiclock_32.c b/arch/x86/kernel/vmiclock_32.c
index c4c1f9e..bde106c 100644
--- a/arch/x86/kernel/vmiclock_32.c
+++ b/arch/x86/kernel/vmiclock_32.c
@@ -283,10 +283,13 @@ void __devinit vmi_time_ap_init(void)
#endif
/** vmi clocksource */
+static struct clocksource clocksource_vmi;
static cycle_t read_real_cycles(void)
{
- return vmi_timer_ops.get_cycle_counter(VMI_CYCLES_REAL);
+ cycle_t ret = (cycle_t)vmi_timer_ops.get_cycle_counter(VMI_CYCLES_REAL);
+ return ret >= clocksource_vmi.cycle_last ?
+ ret : clocksource_vmi.cycle_last;
}
static struct clocksource clocksource_vmi = {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists