X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_time.c;h=fc2e37e812a019428717ef1929b4be6e0480b93f;hb=a7690ac16734100d2c570dd744bbc87ddc6d72a3;hp=357bae426fd635a4c40c72b9c8afd0bb22236546;hpb=f18097c35ddc13572ab41e03ad7a14430cff11ac;p=palacios-OLD.git diff --git a/palacios/src/palacios/vmm_time.c b/palacios/src/palacios/vmm_time.c index 357bae4..fc2e37e 100644 --- a/palacios/src/palacios/vmm_time.c +++ b/palacios/src/palacios/vmm_time.c @@ -22,7 +22,7 @@ #include #include -#ifndef CONFIG_DEBUG_TIME +#ifndef V3_CONFIG_DEBUG_TIME #undef PrintDebug #define PrintDebug(fmt, args...) #endif @@ -399,8 +399,8 @@ void v3_init_time_core(struct guest_info * info) { if (khz) { time_state->guest_cpu_freq = atoi(khz); - PrintDebug("Core %d CPU frequency requested at %d khz.\n", - info->cpu_id, time_state->guest_cpu_freq); + PrintDebug("Logical Core %d (vcpu=%d) CPU frequency requested at %d khz.\n", + info->pcpu_id, info->vcpu_id, time_state->guest_cpu_freq); } if ( (khz == NULL) || @@ -410,8 +410,8 @@ void v3_init_time_core(struct guest_info * info) { time_state->guest_cpu_freq = time_state->host_cpu_freq; } - PrintDebug("Core %d CPU frequency set to %d KHz (host CPU frequency = %d KHz).\n", - info->cpu_id, + PrintDebug("Logical Core %d (vcpu=%d) CPU frequency set to %d KHz (host CPU frequency = %d KHz).\n", + info->pcpu_id, info->vcpu_id, time_state->guest_cpu_freq, time_state->host_cpu_freq);