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.


Expose swapping and pinning to host + add visibility to linux module
[palacios.git] / linux_module / mcheck.c
index 9cdc04b..cbb06d7 100644 (file)
@@ -50,11 +50,17 @@ static int guest_deinit(struct v3_guest * guest, void * vm_data) {
     return 0;
 }
 
+static int all_deinit(void)
+{
+    // nothing to do
+    return 0;
+}
+
 
 struct linux_ext mcheck_ext = {
     .name = "MACHINE CHECK",
     .init = NULL,
-    .deinit = NULL,
+    .deinit = all_deinit,
     .guest_init = guest_init, 
     .guest_deinit = guest_deinit
 };