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 palacios MACROs
Jack Lange [Fri, 21 Aug 2009 20:31:39 +0000 (15:31 -0500)]
palacios/include/palacios/vmx_assist.h

index 31b9a37..3f5ec93 100644 (file)
@@ -26,6 +26,8 @@
 #ifndef _VMX_ASSIST_H_
 #define _VMX_ASSIST_H_
 
+#ifdef __V3VEE__
+
 #include <palacios/vm_guest.h>
 
 #define VMXASSIST_BASE         0xD0000
@@ -35,8 +37,6 @@
 #define VMXASSIST_NEW_CONTEXT (VMXASSIST_BASE + 12)
 #define VMXASSIST_OLD_CONTEXT (VMXASSIST_NEW_CONTEXT + 4)
 
-#ifndef __ASSEMBLY__
-
 #define NR_EXCEPTION_HANDLER    32
 #define NR_INTERRUPT_HANDLERS   16
 #define NR_TRAPS        (NR_EXCEPTION_HANDLER+NR_INTERRUPT_HANDLERS)
@@ -107,11 +107,13 @@ struct vmx_assist_context {
 
     unsigned char rm_irqbase[2];
 };
+
 typedef struct vmx_assist_context vmx_assist_context_t;
 
 int v3_vmxassist_ctx_switch(struct guest_info * info);
 
-#endif /* __ASSEMBLY__ */
+
+#endif
 
 #endif /* _VMX_ASSIST_H_ */