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.


new translation irq handler for new interrupt hooking mechanism
Peter Dinda [Mon, 21 Jul 2008 15:30:06 +0000 (15:30 +0000)]
palacios/include/geekos/vmm_stubs.h

index 396e614..3688ba9 100644 (file)
@@ -8,6 +8,9 @@
 
 struct guest_info;
 
+
+
+
 void * Allocate_VMM_Pages(int num_pages);
 void Free_VMM_Page(void * page);
 
@@ -17,10 +20,16 @@ void VMM_Free(void * addr);
 void * Identity(void *addr);
 
 
+
+
 int hook_irq_stub(struct guest_info * info, int irq);
 int ack_irq(int irq);
 
 
+
+int geekos_hook_interrupt_new(uint_t irq, void *opaque);
+
+
 unsigned int get_cpu_khz();
 
 void Init_Stubs();
@@ -33,6 +42,7 @@ void Init_Stubs();
 
 
 
+
 #if 0
 
 # define do_div(n,base) ({                                     \