From: Patrick G. Bridges Date: Fri, 1 Oct 2010 18:32:27 +0000 (-0600) Subject: Added initialization of yield_start_cycle to start_time() X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=ccd9ddb5d9279fe8fcdacfc3bcd466eb3da70791;p=palacios.git Added initialization of yield_start_cycle to start_time() --- diff --git a/palacios/src/palacios/vmm_time.c b/palacios/src/palacios/vmm_time.c index 874f6ea..7814acb 100644 --- a/palacios/src/palacios/vmm_time.c +++ b/palacios/src/palacios/vmm_time.c @@ -61,6 +61,7 @@ int v3_start_time(struct guest_info * info) { PrintDebug("Starting initial guest time as %llu\n", t); info->time_state.last_update = t; info->time_state.pause_time = t; + info->yield_start_cycle = t; return 0; }