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.


telemetry updates
[palacios.git] / palacios / include / palacios / vmm_telemetry.h
index 80ac874..084d90b 100644 (file)
@@ -41,6 +41,7 @@ struct v3_telemetry_state {
     uint32_t invoke_cnt;
     uint64_t granularity;
 
+
     struct list_head cb_list;
 };
 
@@ -54,8 +55,8 @@ void v3_print_telemetry(struct guest_info * info);
 
 
 void v3_add_telemetry_cb(struct guest_info * info, 
-                       void (*telemetry_fn)(struct guest_info * info, void * private_data),
-                       void * private_data);
+                        void (*telemetry_fn)(struct guest_info * info, void * private_data, char * hdr),
+                        void * private_data);
 
 #endif