mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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:
parent
f3bbd0e818
commit
ba34de1b3b
1 changed files with 1 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue