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.


slight modifications to the shadow paging handlers
[palacios.git] / palacios / src / palacios / vmm_shadow_paging_32pae.h
index 42570de..625552e 100644 (file)
@@ -1,7 +1,7 @@
 
 
 
-static int activate_shadow_pt_32pae(struct guest_info * info) {
+static inline int activate_shadow_pt_32pae(struct guest_info * info) {
   PrintError("Activating 32 bit PAE page tables not implemented\n");
   return -1;
 }
@@ -19,13 +19,13 @@ static int activate_shadow_pt_32pae(struct guest_info * info) {
  * *
  */
 
-static int handle_shadow_pagefault_32pae(struct guest_info * info, addr_t fault_addr, pf_error_t error_code) {
+static inline int handle_shadow_pagefault_32pae(struct guest_info * info, addr_t fault_addr, pf_error_t error_code) {
   PrintError("32 bit PAE shadow paging not implemented\n");
   return -1;
 }
 
 
-static int handle_shadow_invlpg_32pae(struct guest_info * info, addr_t vaddr) {
+static inline int handle_shadow_invlpg_32pae(struct guest_info * info, addr_t vaddr) {
   PrintError("32 bit PAE shadow paging not implemented\n");
   return -1;
 }