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.


added device checkpoint hooks
[palacios.git] / palacios / include / palacios / vmm_symspy.h
index 5b17b39..50209ac 100644 (file)
@@ -32,7 +32,9 @@ struct v3_symspy_global_page {
     union {
        uint32_t feature_flags;
        struct {
-           uint_t pci_map_valid      : 1;
+           uint8_t pci_map_valid      : 1;
+           uint8_t symmod_enabled     : 1;
+           uint8_t sec_symmod_enabled : 1;
        } __attribute__((packed));
     } __attribute__((packed));
     
@@ -87,6 +89,8 @@ int v3_sym_unmap_pci_passthrough(struct v3_vm_info * vm, uint_t bus, uint_t dev,
 
 
 
+struct v3_symspy_global_page * v3_sym_get_symspy_vm(struct v3_vm_info * vm);
+struct v3_symspy_local_page * v3_sym_get_symspy_core(struct guest_info * core);
 
 #endif