X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm.h;h=9fae52eb1f7cb1419303a7a2801ac98ff24cb3d5;hb=3a47eb153e415d718e5d5601b79767b7335a149f;hp=f7a612d73069d65cff71a2e8e43c279d9cba20c3;hpb=8f73ff87ab96b79b87854a2135c16b81cff879a3;p=palacios.git diff --git a/palacios/include/palacios/vmm.h b/palacios/include/palacios/vmm.h index f7a612d..9fae52e 100644 --- a/palacios/include/palacios/vmm.h +++ b/palacios/include/palacios/vmm.h @@ -24,6 +24,7 @@ #include #include + #ifdef __V3VEE__ //#include @@ -34,7 +35,7 @@ /* utility definitions */ -#ifdef VMM_DEBUG + #define PrintDebug(fmt, args...) \ do { \ extern struct v3_os_hooks * os_hooks; \ @@ -42,6 +43,8 @@ (os_hooks)->print_debug((fmt), ##args); \ } \ } while (0) + +#if 1 #else #define PrintDebug(fmt,args ...) #endif @@ -211,12 +214,12 @@ struct guest_info; /* This will contain function pointers that provide OS services */ struct v3_os_hooks { - void (*print_info)(const char * format, ...); - // __attribute__ ((format (printf, 1, 2))); - void (*print_debug)(const char * format, ...); - // __attribute__ ((format (printf, 1, 2))); - void (*print_trace)(const char * format, ...); - // __attribute__ ((format (printf, 1, 2))); + void (*print_info)(const char * format, ...) + __attribute__ ((format (printf, 1, 2))); + void (*print_debug)(const char * format, ...) + __attribute__ ((format (printf, 1, 2))); + void (*print_trace)(const char * format, ...) + __attribute__ ((format (printf, 1, 2))); void *(*allocate_pages)(int numPages); void (*free_page)(void * page); @@ -251,6 +254,13 @@ struct v3_vm_config { void * vgabios; int vgabios_size; + unsigned long mem_size; // in bytes, var should be natural size of cpu + // so we can specify maximum physical address size + // (We're screwed if we want to do 32 bit host/64 bit guest) + + + int enable_profiling; + int use_ramdisk; void * ramdisk; int ramdisk_size;