X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_io.h;h=20dd3019281ab62b0aeee9de552d80d414b7a07e;hb=b06d0d0e5e57f5c4163a69efcabe6f96594ad814;hp=8db4f71f62c8a956bacf74cd0471c9b2b000461c;hpb=a6865d183eedbdf3e5510e4be89dcb5ce51b5953;p=palacios.git diff --git a/palacios/include/palacios/vmm_io.h b/palacios/include/palacios/vmm_io.h index 8db4f71..20dd301 100644 --- a/palacios/include/palacios/vmm_io.h +++ b/palacios/include/palacios/vmm_io.h @@ -49,17 +49,17 @@ int v3_unhook_io_port(struct guest_info * info, uint_t port); struct v3_io_hook { - ushort_t port; + ushort_t port; - // Reads data into the IO port (IN, INS) - int (*read)(ushort_t port, void * dst, uint_t length, void * priv_data); + // Reads data into the IO port (IN, INS) + int (*read)(ushort_t port, void * dst, uint_t length, void * priv_data); - // Writes data from the IO port (OUT, OUTS) - int (*write)(ushort_t port, void * src, uint_t length, void * priv_data); + // Writes data from the IO port (OUT, OUTS) + int (*write)(ushort_t port, void * src, uint_t length, void * priv_data); - void * priv_data; + void * priv_data; - struct rb_node tree_node; + struct rb_node tree_node; };