From: Oscar Mondragon Date: Wed, 6 Feb 2013 18:28:30 +0000 (-0700) Subject: Commented in scheduler call previously commented out. X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=d246b438e25ec84d0c8a578bde55d19e8d9f811e;p=palacios.git Commented in scheduler call previously commented out. --- diff --git a/palacios/src/palacios/vmm.c b/palacios/src/palacios/vmm.c index 53a1508..7fced77 100644 --- a/palacios/src/palacios/vmm.c +++ b/palacios/src/palacios/vmm.c @@ -215,13 +215,13 @@ struct v3_vm_info * v3_create_vm(void * cfg, void * priv_data, char * name) { strncpy(vm->name, name, 127); /* - * Creates scheduling hash table and register default scheduler (host scheduler) + * Register this VM with the palacios scheduler. It will ask for admission + * prior to launch. */ - - //if(v3_scheduler_register_vm(vm) != -1) { + if(v3_scheduler_register_vm(vm) != -1) { - // PrintError(vm, VCORE_NONE,"Error registering VM with scheduler\n"); - // } + PrintError(vm, VCORE_NONE,"Error registering VM with scheduler\n"); + } return vm; }