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.


61539ced062704b81bbb39fbfa8e340a23cd21a2
[palacios.git] / palacios / include / palacios / vmm_scheduler.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) 2013, Oscar Mondragon <omondrag@cs.unm.edu>
11  * Copyright (c) 2013, Patrick G. Bridges <bridges@cs.unm.edu>
12  * Copyright (c) 2013, The V3VEE Project <http://www.v3vee.org> 
13  * All rights reserved.
14  *
15  * Author: Oscar Mondragon <omondrag@cs.unm.edu>
16  *         Patrick G. Bridges <bridges@cs.unm.edu>
17  *
18  * This is free software.  You are permitted to use,
19  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
20  */
21
22 #ifndef __VMM_SCHEDULER_H__
23 #define __VMM_SCHEDULER_H__
24
25 struct vm_scheduler_impl {
26         char *name;
27         int (*init)();
28         int (*deinit)();
29         int (*vm_init)(struct v3_vm_info *vm);
30         int (*vm_deinit)(struct v3_vm_info *vm);
31         int (*core_init)(struct guest_info *vm);
32         int (*core_deinit)(struct guest_info *vm);
33         void (*schedule)(struct guest_info *vm);
34         void (*yield)(struct guest_info *vm, int usec);
35         int (*admit)(struct v3_vm_info *vm);
36         int (*remap)(struct v3_vm_info *vm);
37         int (*dvfs)(struct v3_vm_info *vm);
38 };
39
40 void v3_schedule(struct guest_info *core);
41 void v3_yield(struct guest_info *core, int usec);
42
43 int v3_scheduler_register_vm(struct v3_vm_info *vm);
44 int v3_scheduler_register_core(struct guest_info *vm); /* ? */
45 int v3_scheduler_admit_vm(struct v3_vm_info *vm);
46
47 void v3_scheduler_remap_notify(struct v3_vm_info *vm);
48 void v3_scheduler_dvfs_notify(struct v3_vm_info *vm);
49
50 int V3_init_scheduling();
51 int v3_register_scheduler(struct vm_scheduler_impl *vm);
52 struct vm_scheduler_impl *v3_scheduler_lookup(char *name);
53 int V3_enable_scheduler();
54
55 #endif /* __VMM_SCHEDULER_H__ */