X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fsvm_io.c;h=47068178e2fb3e816c4b82c665d9a8f681efe74d;hb=ace8f0532fa5650c6642a3a7174f3aa19b09095a;hp=824936245f180cc4ab3670e0b2ab7e77f0fe43b2;hpb=a109eb919a162bd7de58d62020801bc2e633be50;p=palacios.git diff --git a/palacios/src/palacios/svm_io.c b/palacios/src/palacios/svm_io.c index 8249362..4706817 100644 --- a/palacios/src/palacios/svm_io.c +++ b/palacios/src/palacios/svm_io.c @@ -15,6 +15,7 @@ int handle_svm_io_in(struct guest_info * info) { uint_t read_size = 0; if (hook == NULL) { + PrintDebug("Hook Not present for in on port %x\n", io_info->port); // error, we should not have exited on this port return -1; } @@ -30,8 +31,9 @@ int handle_svm_io_in(struct guest_info * info) { } - if (hook->read(io_info->port, &(info->vm_regs.rax), read_size) != read_size) { + if (hook->read(io_info->port, &(info->vm_regs.rax), read_size, hook->priv_data) != read_size) { // not sure how we handle errors..... + PrintDebug("Read Failure for in on port %x\n", io_info->port); return -1; } @@ -73,6 +75,7 @@ int handle_svm_io_ins(struct guest_info * info) { if (hook == NULL) { + PrintDebug("Hook Not present for ins on port %x\n", io_info->port); // error, we should not have exited on this port return -1; } @@ -113,8 +116,9 @@ int handle_svm_io_ins(struct guest_info * info) { // either page fault or gpf... } - if (hook->read(io_info->port, (char*)host_addr, read_size) != read_size) { + if (hook->read(io_info->port, (char*)host_addr, read_size, hook->priv_data) != read_size) { // not sure how we handle errors..... + PrintDebug("Read Failure for ins on port %x\n", io_info->port); return -1; } @@ -141,6 +145,7 @@ int handle_svm_io_out(struct guest_info * info) { uint_t write_size = 0; if (hook == NULL) { + PrintDebug("Hook Not present for out on port %x\n", io_info->port); // error, we should not have exited on this port return -1; } @@ -156,8 +161,9 @@ int handle_svm_io_out(struct guest_info * info) { } - if (hook->write(io_info->port, &(info->vm_regs.rax), write_size) != write_size) { + if (hook->write(io_info->port, &(info->vm_regs.rax), write_size, hook->priv_data) != write_size) { // not sure how we handle errors..... + PrintDebug("Write Failure for out on port %x\n", io_info->port); return -1; } @@ -197,6 +203,7 @@ int handle_svm_io_outs(struct guest_info * info) { if (hook == NULL) { + PrintDebug("Hook Not present for outs on port %x\n", io_info->port); // error, we should not have exited on this port return -1; } @@ -236,8 +243,9 @@ int handle_svm_io_outs(struct guest_info * info) { // either page fault or gpf... } - if (hook->write(io_info->port, (char*)host_addr, write_size) != write_size) { + if (hook->write(io_info->port, (char*)host_addr, write_size, hook->priv_data) != write_size) { // not sure how we handle errors..... + PrintDebug("Write Failure for outs on port %x\n", io_info->port); return -1; }