vmm: Remove an unneeded initialization of "retu"

vm_handle_ipi() unconditionally initializes "retu".  No functional
change intended.

Reviewed by:	jhb, corvink
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D38446
This commit is contained in:
Mark Johnston 2023-02-09 15:51:11 -05:00
parent f3bbd0e818
commit ba34de1b3b

View File

@ -1930,10 +1930,8 @@ restart:
* VM_EXITCODE_INST_EMUL could access the apic which could transform the
* exit code into VM_EXITCODE_IPI.
*/
if (error == 0 && vme->exitcode == VM_EXITCODE_IPI) {
retu = false;
if (error == 0 && vme->exitcode == VM_EXITCODE_IPI)
error = vm_handle_ipi(vcpu, vme, &retu);
}
if (error == 0 && retu == false)
goto restart;