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.


Added support for the wbinvd instruction exit
Peter Dinda [Thu, 7 Aug 2008 22:50:16 +0000 (22:50 +0000)]
palacios/include/palacios/svm_handler.h
palacios/include/palacios/svm_wbinvd.h [new file with mode: 0644]

index bd3aae4..8fee2b1 100644 (file)
@@ -70,7 +70,7 @@
 #define VMEXIT_DR15_READ  0x0000002f
 
 #define VMEXIT_DR_WRITE_MASK     0xffffffc0
-#define VMEXIT_DR0_WRITE   0x0000003f
+#define VMEXIT_DR0_WRITE   0x00000030 // ? this was previously 3f
 #define VMEXIT_DR1_WRITE   0x00000031
 #define VMEXIT_DR2_WRITE   0x00000032
 #define VMEXIT_DR3_WRITE   0x00000033
diff --git a/palacios/include/palacios/svm_wbinvd.h b/palacios/include/palacios/svm_wbinvd.h
new file mode 100644 (file)
index 0000000..1260386
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef __SVM_WBINVD_H
+#define __SVM_WBINVD_H
+
+#ifdef __V3VEE__
+
+#include <palacios/vm_guest.h>
+#include <palacios/vmcb.h>
+#include <palacios/vmm.h>
+
+
+int handle_svm_wbinvd(struct guest_info * info);
+
+
+#endif // ! __V3VEE__
+
+#endif