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.


Device File Virtualization Proof of Concept (Kernel+Preload)
authorAkhil Guliani and William Gross <AkhilGuliani2016@u.northwestern.edu>
Tue, 23 Jun 2015 00:12:32 +0000 (19:12 -0500)
committerroot <root@v-test-r415-3.localdomain>
Tue, 23 Jun 2015 00:12:32 +0000 (19:12 -0500)
commitde0aa03dbd9812a48cab6d899ab41b7f2cc593b5
tree62093a292e4c65f50254b350198347e623cd4b00
parentf460aeead9da6649a7a75e0f7df3149e62b48f15
Device File Virtualization Proof of Concept (Kernel+Preload)

This is an implementation of device file virtualization in Palacios
for a Linux Host.   Please consult palacios/gears/services/devfile/README
for more information.
28 files changed:
gears/services/devfile/Makefile [new file with mode: 0644]
gears/services/devfile/README [new file with mode: 0644]
gears/services/devfile/devfile_guest_fd_tracker.h [new file with mode: 0644]
gears/services/devfile/devfile_hc.c [new file with mode: 0644]
gears/services/devfile/devfile_hc.h [new file with mode: 0644]
gears/services/devfile/devfile_host.c [new file with mode: 0644]
gears/services/devfile/devfile_preload.c [new file with mode: 0644]
gears/services/devfile/guest_device_setup.py [new file with mode: 0644]
gears/services/devfile/guest_devices.txt [new file with mode: 0644]
gears/services/devfile/hcall.h [new file with mode: 0644]
gears/services/devfile/scripts/close_guest [new file with mode: 0755]
gears/services/devfile/scripts/copy_to_guest [new file with mode: 0755]
gears/services/devfile/scripts/insert_hypercall [new file with mode: 0755]
gears/services/devfile/scripts/load_lib_in_guest [new file with mode: 0644]
gears/services/devfile/scripts/mem_script [new file with mode: 0755]
gears/services/devfile/scripts/patched_close_guest [new file with mode: 0755]
gears/services/devfile/scripts/patched_copy_to_guest [new file with mode: 0755]
gears/services/devfile/scripts/patched_insert_hypercall [new file with mode: 0755]
gears/services/devfile/scripts/patched_mem_script [new file with mode: 0755]
gears/services/devfile/scripts/patched_start_guest [new file with mode: 0755]
gears/services/devfile/scripts/start_guest [new file with mode: 0755]
gears/services/devfile/scripts/start_guest_persistent [new file with mode: 0755]
gears/services/devfile/scripts/sys_fd_arr.h [new file with mode: 0644]
gears/services/devfile/scripts/syscall_arr.py [new file with mode: 0644]
gears/services/devfile/scripts/syscalltable.txt [new file with mode: 0644]
gears/services/devfile/sys_point_arr.h [new file with mode: 0644]
gears/services/devfile/syscall_ref.h [new file with mode: 0644]
gears/services/devfile/test_preload.c [new file with mode: 0644]