Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


free up telemetry state and free backend state for the virtio devices
[palacios-OLD.git] / palacios / include / palacios / vmm_shadow_paging.h
index a88270b..4c191df 100644 (file)
@@ -39,6 +39,7 @@ struct v3_shdw_pg_impl {
     int (*init)(struct v3_vm_info * vm, v3_cfg_tree_t * cfg);
     int (*deinit)(struct v3_vm_info * vm);
     int (*local_init)(struct guest_info * core);
+    int (*local_deinit)(struct guest_info * core);
     int (*handle_pagefault)(struct guest_info * core, addr_t fault_addr, pf_error_t error_code);
     int (*handle_invlpg)(struct guest_info * core, addr_t vaddr);
     int (*activate_shdw_pt)(struct guest_info * core);
@@ -74,7 +75,10 @@ struct v3_shdw_pg_state {
 
 
 int v3_init_shdw_impl(struct v3_vm_info * vm);
-int v3_init_shdw_pg_state(struct guest_info * info);
+int v3_deinit_shdw_impl(struct v3_vm_info * vm);
+
+int v3_init_shdw_pg_state(struct guest_info * core);
+int v3_deinit_shdw_pg_state(struct guest_info * core);
 
 
 /* Handler implementations */