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 char device operations to device manager
[palacios.git] / palacios / src / palacios / vmm_stream.c
index f9fe479..c7a2e51 100644 (file)
@@ -23,6 +23,7 @@
 #include <palacios/vmm_types.h>
 
 #include <palacios/vmm_stream.h>
+#include <palacios/vm_guest.h>
 
 static struct v3_stream_hooks * stream_hooks = NULL;
 
@@ -31,7 +32,7 @@ v3_stream_t v3_stream_open(struct v3_vm_info * vm, const char * name) {
     V3_ASSERT(stream_hooks != NULL);
     V3_ASSERT(stream_hooks->open != NULL);
 
-    return stream_hooks->open(name, vm->host_private_data);
+    return stream_hooks->open(name, vm->host_priv_data);
 }
 
 int v3_stream_write(v3_stream_t stream, uint8_t * buf, uint32_t len) {