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.


return type fix
Jack Lange [Thu, 9 Jun 2011 18:05:02 +0000 (13:05 -0500)]
linux_module/palacios-vnet.c

index d81fb80..1584ab1 100644 (file)
@@ -289,13 +289,15 @@ static int vnet_init( void ) {
 }
 
 
-static void vnet_deinit( void ) {
+static int vnet_deinit( void ) {
     deinit_vnet();
 
     vnet_bridge_deinit();
     vnet_ctrl_deinit();
 
     printk("V3 VNET Deinited\n");
+
+    return 0;
 }
 
 static struct linux_ext vnet_ext = {