X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_config.h;h=78a16c29bbc60868bfc112f27f52e381b495e488;hb=495d40c7d02054399e118be6a10b0096c938d232;hp=02b6d03e0e2c65dcbf430814c9fe1e5ec34fb4c3;hpb=3e5e5a12e64630d7a37ed32b8d7e2d993c79f7e0;p=palacios.git diff --git a/palacios/include/palacios/vmm_config.h b/palacios/include/palacios/vmm_config.h index 02b6d03..78a16c2 100644 --- a/palacios/include/palacios/vmm_config.h +++ b/palacios/include/palacios/vmm_config.h @@ -32,15 +32,19 @@ //#include +#define V3_MAX_TAG_LEN 256 + struct v3_vm_info; -struct v3_vm_info * v3_config_guest( void * cfg_blob); +struct v3_vm_info * v3_config_guest( void * cfg_blob, void * priv_data); +int v3_free_config(struct v3_vm_info * vm); struct v3_cfg_file { void * data; uint64_t size; + ulong_t hash; // used only in version 1+ - char tag[256]; + char tag[V3_MAX_TAG_LEN]; struct list_head file_node; };