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 non-contiguous memory region support.
[palacios.git] / linux_module / mm.c
index 83c69ae..3edbd23 100644 (file)
@@ -109,7 +109,7 @@ static uintptr_t alloc_contig_pgs(u64 num_pages, u32 alignment) {
 
 
 // alignment is in bytes
-uintptr_t alloc_palacios_pgs(u64 num_pages, u32 alignment) {
+uintptr_t alloc_palacios_pgs(u64 num_pages, u32 alignment, int node) {
     uintptr_t addr = 0; 
 
     if (num_pages < OFFLINE_POOL_THRESHOLD) {