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.


aa1b05f00815a30beaf0ba91722fc55a33ade4e6
[palacios.git] / palacios / include / palacios / vmm_config.h
1 /* Northwestern University */
2 /* (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> */
3
4 #ifndef __VMM_CONFIG_H__
5 #define __VMM_CONFIG_H__
6
7
8
9 #ifdef __V3VEE__
10 #include <palacios/vm_guest.h>
11
12
13
14
15 #define MAGIC_CODE 0xf1e2d3c4
16
17 struct layout_region {
18   ulong_t length;
19   ulong_t final_addr;
20 };
21
22 struct guest_mem_layout {
23   ulong_t magic;
24   ulong_t num_regions;
25   struct layout_region regions[0];
26 };
27
28
29
30 int config_guest(struct guest_info * info, void * config_ptr);
31
32
33
34
35
36 #endif // ! __V3VEE__
37
38
39
40 #endif