X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fpalacios.h;h=cece0805cafd8f3989039b766791ae094303d330;hb=a78284b06acb02600e70abe4bb5288b8c2fbf253;hp=633ede17ea49756f7123cbb981a0c597f5321f5a;hpb=9a9c14099c09e9ed86d8ac2f73f7406d0ac8a90b;p=palacios.releases.git diff --git a/linux_module/palacios.h b/linux_module/palacios.h index 633ede1..cece080 100644 --- a/linux_module/palacios.h +++ b/linux_module/palacios.h @@ -9,18 +9,20 @@ /* Global Control IOCTLs */ #define V3_START_GUEST 10 +#define V3_STOP_GUEST 11 #define V3_ADD_MEMORY 50 /* VM Specific IOCTLs */ #define V3_VM_CONSOLE_CONNECT 20 -#define V3_VM_STOP 22 + #define V3_VM_PAUSE 23 #define V3_VM_CONTINUE 24 - #define V3_VM_INSPECT 30 +#define V3_VM_MOVE_CORE 33 + #define V3_VM_FB_INPUT (256+1) #define V3_VM_FB_QUERY (256+2) @@ -40,6 +42,11 @@ struct v3_mem_region { unsigned long long num_pages; }; +struct v3_core_move_cmd{ + uint16_t vcore_id; + uint16_t pcore_id; +}; + void * trace_malloc(size_t size, gfp_t flags); void trace_free(const void * objp);