X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmx_handler.c;h=67f03a4f581af919266940bf7fa3f2171e152d0a;hb=e210da1eb30297beaab70e9a0d6f7607044ea558;hp=1da8a586cae9e3d05f9f947ef42ee9c42033f3c9;hpb=5c5dfe422e57ac9833dd3ed3a7d0f5c39557b86c;p=palacios.releases.git diff --git a/palacios/src/palacios/vmx_handler.c b/palacios/src/palacios/vmx_handler.c index 1da8a58..67f03a4 100644 --- a/palacios/src/palacios/vmx_handler.c +++ b/palacios/src/palacios/vmx_handler.c @@ -37,6 +37,10 @@ #endif +#ifdef CONFIG_VNET +#include +#endif + /* At this point the GPRs are already copied into the guest_info state */ @@ -222,6 +226,10 @@ int v3_handle_vmx_exit(struct guest_info * info, struct vmx_exit_info * exit_inf return -1; } +#ifdef CONFIG_VNET + v3_vnet_pkt_process(info); +#endif + #ifdef CONFIG_TELEMETRY if (info->enable_telemetry) { v3_telemetry_end_exit(info, exit_info->exit_reason);