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.


Generalization of constraints on page allocation and implementation/use
authorPeter Dinda <pdinda@northwestern.edu>
Fri, 17 Apr 2015 17:11:43 +0000 (12:11 -0500)
committerroot <root@v-test-r415-3.localdomain>
Fri, 17 Apr 2015 17:11:43 +0000 (12:11 -0500)
commitb58fe2254858e3ecc94be5d86f2a93f2cfe0a0d5
tree558a43779825c2c9f084b9766742058a2a4cc901
parent659151a0b655c619f3acbb98a45e9eeb8002a4b3
Generalization of constraints on page allocation and implementation/use

The idea here is to allow Palacios code to request pages that satisfy some
filter function.  For example, a filter function might reject allocations
above the 4GB line, or it might reject allocations that map to undesirable
cache lines.

- it removes the notion of a constraint mask in page allocation
- eliminates the < 4GB flag
- adds the notion of constraints in page allocation as filter
  functions
- modifies the implementation and uses to match
linux_module/buddy.c
linux_module/buddy.h
linux_module/mm.c
linux_module/mm.h
linux_module/palacios-stubs.c
linux_module/palacios.h
palacios/include/palacios/vmm.h
palacios/src/palacios/mmu/vmm_shdw_pg_tlb.c
palacios/src/palacios/vmm.c
palacios/src/palacios/vmm_direct_paging.c
palacios/src/palacios/vmm_mem.c