X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmx_handler.c;h=67f03a4f581af919266940bf7fa3f2171e152d0a;hp=1da8a586cae9e3d05f9f947ef42ee9c42033f3c9;hb=5624c95812302f7508c13830966714dba130a4f6;hpb=ca0524fbe3facc7acc0fa57d2449dffeb48d1ef6 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);