aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/xen/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/i386/xen/time.c')
-rw-r--r--arch/i386/xen/time.c27
1 files changed, 26 insertions, 1 deletions
diff --git a/arch/i386/xen/time.c b/arch/i386/xen/time.c
index acbfd9969462..2aab44bec2a5 100644
--- a/arch/i386/xen/time.c
+++ b/arch/i386/xen/time.c
@@ -28,6 +28,8 @@
28#define TIMER_SLOP 100000 28#define TIMER_SLOP 100000
29#define NS_PER_TICK (1000000000LL / HZ) 29#define NS_PER_TICK (1000000000LL / HZ)
30 30
31static cycle_t xen_clocksource_read(void);
32
31/* These are perodically updated in shared_info, and then copied here. */ 33/* These are perodically updated in shared_info, and then copied here. */
32struct shadow_time_info { 34struct shadow_time_info {
33 u64 tsc_timestamp; /* TSC at last update of time vals. */ 35 u64 tsc_timestamp; /* TSC at last update of time vals. */
@@ -169,6 +171,29 @@ static void do_stolen_accounting(void)
169 account_steal_time(idle_task(smp_processor_id()), ticks); 171 account_steal_time(idle_task(smp_processor_id()), ticks);
170} 172}
171 173
174/*
175 * Xen sched_clock implementation. Returns the number of unstolen
176 * nanoseconds, which is nanoseconds the VCPU spent in RUNNING+BLOCKED
177 * states.
178 */
179unsigned long long xen_sched_clock(void)
180{
181 struct vcpu_runstate_info state;
182 cycle_t now = xen_clocksource_read();
183 s64 offset;
184
185 get_runstate_snapshot(&state);
186
187 WARN_ON(state.state != RUNSTATE_running);
188
189 offset = now - state.state_entry_time;
190 if (offset < 0)
191 offset = 0;
192
193 return state.time[RUNSTATE_blocked] +
194 state.time[RUNSTATE_running] +
195 offset;
196}
172 197
173 198
174/* Get the CPU speed from Xen */ 199/* Get the CPU speed from Xen */
@@ -261,7 +286,7 @@ static u64 get_nsec_offset(struct shadow_time_info *shadow)
261 return scale_delta(delta, shadow->tsc_to_nsec_mul, shadow->tsc_shift); 286 return scale_delta(delta, shadow->tsc_to_nsec_mul, shadow->tsc_shift);
262} 287}
263 288
264cycle_t xen_clocksource_read(void) 289static cycle_t xen_clocksource_read(void)
265{ 290{
266 struct shadow_time_info *shadow = &get_cpu_var(shadow_time); 291 struct shadow_time_info *shadow = &get_cpu_var(shadow_time);
267 cycle_t ret; 292 cycle_t ret;