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.


Merge branch 'devel' of palacios@newskysaw.cs.northwestern.edu:/home/palacios/palacio...
Lei Xia [Mon, 8 Nov 2010 19:43:41 +0000 (13:43 -0600)]
Conflicts:

palacios/include/palacios/vmm.h
palacios/src/devices/serial.c

1  2 
palacios/include/palacios/vmm.h
palacios/src/palacios/vmm.c

@@@ -202,21 -217,12 +217,16 @@@ struct guest_info
        })
  
  
- #define V3_ACK_IRQ(irq)                                               \
-     do {                                                      \
-       extern struct v3_os_hooks * os_hooks;                   \
-       if ((os_hooks) && (os_hooks)->ack_irq) {                \
-           (os_hooks)->ack_irq(irq);                           \
-       }                                                       \
-     } while (0)
+ #endif
  
  
 -
 -
 +#define V3_Reparent_Threadd()                                 \
 +    do {                                                      \
 +      if((os_hooks) && (os_hooks)->reparent_threaded) {       \
 +          (os_hooks)->reparent_threaded();                    \
 +      }                                                       \
 +    } while(0)
  
  /* ** */
  
@@@ -98,9 -98,11 +98,11 @@@ void Init_V3(struct v3_os_hooks * hooks
  
  
  #ifdef CONFIG_VNET
 -    V3_init_vnet();
 +    v3_init_vnet();
  #endif
  
+ #ifdef CONFIG_MULTITHREAD_OS
      if ((hooks) && (hooks->call_on_cpu)) {
  
        for (i = 0; i < num_cpus; i++) {