X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fvm.h;h=fbf171372e5748f1aa8f8b7a5752be507d8de9db;hb=a20c07e3428f9aa55997befebca7a30721a71145;hp=f8df6c706191e118112c4b7f7ff6d469496f88e8;hpb=b1128b2a9d269fefc786c60c26878b372d5e39c1;p=palacios.git diff --git a/linux_module/vm.h b/linux_module/vm.h index f8df6c7..fbf1713 100644 --- a/linux_module/vm.h +++ b/linux_module/vm.h @@ -8,8 +8,8 @@ #include "palacios.h" -int start_palacios_vm(struct v3_guest * guest); -int stop_palacios_vm(struct v3_guest * guest); +int create_palacios_vm(struct v3_guest * guest); +int free_palacios_vm(struct v3_guest * guest); int add_guest_ctrl(struct v3_guest * guest, unsigned int cmd, @@ -18,6 +18,8 @@ int add_guest_ctrl(struct v3_guest * guest, unsigned int cmd, void * priv_data), void * priv_data); +int remove_guest_ctrl(struct v3_guest * guest, unsigned int cmd); + #endif