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.


minor header file reordering for clarity
Jack Lange [Tue, 5 Oct 2010 14:50:47 +0000 (09:50 -0500)]
palacios/include/palacios/vmm.h

index f37ad83..7a466a9 100644 (file)
@@ -261,7 +261,6 @@ struct v3_os_hooks {
     void *(*vaddr_to_paddr)(void *addr);
 
     int (*hook_interrupt)(struct v3_vm_info * vm, unsigned int irq);
-
     int (*ack_irq)(int irq);
 
     unsigned int (*get_cpu_khz)(void);
@@ -301,8 +300,9 @@ struct v3_interrupt {
 void Init_V3(struct v3_os_hooks * hooks,  int num_cpus);
 
 
-int v3_start_vm(struct v3_vm_info * vm, unsigned int cpu_mask);
 struct v3_vm_info * v3_create_vm(void * cfg);
+int v3_start_vm(struct v3_vm_info * vm, unsigned int cpu_mask);
+
 
 int v3_deliver_irq(struct v3_vm_info * vm, struct v3_interrupt * intr);