X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fpalacios.h;h=3a253ee9255ddc1bbfbd718116d249657f3c2ae4;hb=a489c2ba0f26f4be1fa98d4af2c2bfa113c28dde;hp=56d5abfbfda585c64d2c2710f7695d5d8b5b31e6;hpb=f22feaaf919bc038c43036eac0cbf4f927a49b39;p=palacios-OLD.git diff --git a/linux_module/palacios.h b/linux_module/palacios.h index 56d5abf..3a253ee 100644 --- a/linux_module/palacios.h +++ b/linux_module/palacios.h @@ -15,14 +15,20 @@ #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) #define V3_VM_HOST_DEV_CONNECT (10244+1) +#define V3_VM_KSTREAM_USER_CONNECT (11244+1) + struct v3_guest_img { unsigned long long size; @@ -35,6 +41,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);