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.


ported packet to extension framework and fixed type in socket interface
[palacios.git] / linux_module / palacios-socket.c
index 9cf8236..e572ec9 100644 (file)
@@ -472,11 +472,13 @@ static int socket_deinit( void ) {
     if (!list_empty(&(global_sockets))) {
        printk("Error removing module with open sockets\n");
     }
+
+    return 0;
 }
 
 
 static struct linux_ext socket_ext = {
-    .name "SOCKET_INTERFACE",
+    .name = "SOCKET_INTERFACE",
     .init = socket_init,
     .deinit = socket_deinit,
     .guest_init = NULL,