X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fgeekos%2Fsvm_handler.c;h=e5ec493b72ea5dce1410141af2c35a5f8f0cc8f3;hb=8cb3daaded0d8c80be801aa74493006b5a06999f;hp=964aeac7c217983ccc5b369875cafa07c3df4bb3;hpb=7acd54f8c3b30d118d56186a9c6506f21f85096d;p=palacios.git diff --git a/palacios/src/geekos/svm_handler.c b/palacios/src/geekos/svm_handler.c index 964aeac..e5ec493 100644 --- a/palacios/src/geekos/svm_handler.c +++ b/palacios/src/geekos/svm_handler.c @@ -3,7 +3,7 @@ #include -int handle_svm_exit(guest_info_t * info) { +int handle_svm_exit(struct guest_info * info) { vmcb_ctrl_t * guest_ctrl = 0; vmcb_saved_state_t * guest_state = 0; ulong_t exit_code = 0; @@ -62,7 +62,7 @@ int handle_svm_exit(guest_info_t * info) { // This should package up an IO request and call vmm_handle_io -int handle_svm_io(guest_info_t * info) { +int handle_svm_io(struct guest_info * info) { vmcb_ctrl_t * ctrl_area = GET_VMCB_CTRL_AREA((vmcb_t *)(info->vmm_data)); vmcb_saved_state_t * guest_state = GET_VMCB_SAVE_STATE_AREA((vmcb_t*)(info->vmm_data)); @@ -85,7 +85,7 @@ int handle_svm_io(guest_info_t * info) { } -int handle_shadow_paging(guest_info_t * info) { +int handle_shadow_paging(struct guest_info * info) { vmcb_ctrl_t * guest_ctrl = GET_VMCB_CTRL_AREA((vmcb_t*)(info->vmm_data)); // vmcb_saved_state_t * guest_state = GET_VMCB_SAVE_STATE_AREA((vmcb_t*)(info->vmm_data));