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.


minor fix
Jack Lange [Tue, 9 Nov 2010 21:04:37 +0000 (15:04 -0600)]
palacios/src/devices/stream.c

index 8c5d61e..66ee74f 100644 (file)
@@ -38,8 +38,7 @@ struct stream_state {
 
 static int stream_write(uint8_t * buf, uint64_t length, void * private_data) 
 {
-    struct vm_device *dev = (struct vm_device *) private_data;
-    struct stream_state *state = (struct stream_state *) dev->private_data;
+    struct stream_state *state = (struct stream_state *)private_data;
     
     return v3_stream_write(state->stream, buf, length);
 }