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.


revamped the INVLPG handler
[palacios.git] / palacios / src / palacios / vmm_shadow_paging_64.h
index 685ed61..12a21e5 100644 (file)
@@ -36,3 +36,9 @@ static int handle_shadow_pagefault_64(struct guest_info * info, addr_t fault_add
   PrintError("64 bit shadow paging not implemented\n");
   return -1;
 }
+
+
+static int handle_shadow_invlpg_64(struct guest_info * info, addr_t vaddr) {
+  PrintError("64 bit shadow paging not implemented\n");
+  return -1;
+}