4 #include <linux/cdev.h>
5 #include <linux/list.h>
6 #include <linux/sched.h>
7 #include <linux/slab.h>
10 /* Global Control IOCTLs */
11 #define V3_START_GUEST 10
12 #define V3_ADD_MEMORY 50
14 /* VM Specific IOCTLs */
15 #define V3_VM_CONSOLE_CONNECT 20
19 #define V3_VM_INSPECT 30
21 #define V3_VM_FB_INPUT (256+1)
22 #define V3_VM_FB_QUERY (256+2)
24 #define V3_VM_HOST_DEV_CONNECT (10244+1)
28 unsigned long long size;
33 struct v3_mem_region {
34 unsigned long long base_addr;
35 unsigned long long num_pages;
39 void * trace_malloc(size_t size, gfp_t flags);
40 void trace_free(const void * objp);
52 struct rb_root vm_ctrls;
53 struct list_head exts;
55 struct completion start_done;
56 struct completion thread_done;
62 // For now MAX_VMS must be a multiple of 8
63 // This is due to the minor number bitmap
68 int palacios_vmm_init( void );
69 int palacios_vmm_exit( void );