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.


removed a lot of pointless stuff from the device manager
[palacios.git] / palacios / include / palacios / vmm_dev_mgr.h
1 /*
2  * This file is part of the Palacios Virtual Machine Monitor developed
3  * by the V3VEE Project with funding from the United States National 
4  * Science Foundation and the Department of Energy.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
10  * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
11  * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
12  * All rights reserved.
13  *
14  * Author: Jack Lange <jarusl@cs.northwestern.edu>
15  *
16  * This is free software.  You are permitted to use,
17  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
18  */
19
20 #ifndef _VMM_DEV_MGR
21 #define _VMM_DEV_MGR
22
23 #ifdef __V3VEE__
24
25 #include <palacios/vmm_types.h>
26 #include <palacios/vmm_list.h>
27 #include <palacios/vmm_string.h>
28 #include <palacios/vmm_hashtable.h>
29
30 struct vm_device;
31 struct guest_info;
32
33 struct vmm_dev_mgr {
34     uint_t num_devs;
35     struct list_head dev_list;
36
37     struct hashtable * dev_table;
38 };
39
40
41
42 // Registration of devices
43
44 //
45 // The following device manager functions should only be called
46 // when the guest is stopped
47 //
48
49 int v3_attach_device(struct guest_info * vm, struct vm_device * dev);
50 int v3_detach_device(struct vm_device * dev);
51
52
53 int v3_init_dev_mgr(struct guest_info * info);
54 int v3_dev_mgr_deinit(struct guest_info * info);
55
56 void PrintDebugDevMgr(struct guest_info * info);
57 void PrintDebugDev(struct vm_device * dev);
58
59 #endif // ! __V3VEE__
60
61 #endif