mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-01 20:05:30 +00:00
HV cleanup: move iobitmap ini out of loop
The initial of iobitmap pointer should be moved out of loop since address is sequentially incremented. Signed-off-by: Victor Sun <victor.sun@intel.com> Acked-by: Kevin Tian <kevin.tian@intel.com>
This commit is contained in:
parent
69628253e3
commit
aec17eed36
@ -212,8 +212,8 @@ static void deny_guest_io_access(struct vm *vm, uint32_t address, uint32_t nbyte
|
||||
uint32_t i;
|
||||
uint32_t a;
|
||||
|
||||
b = vm->arch_vm.iobitmap[0];
|
||||
for (i = 0; i < nbytes; i++) {
|
||||
b = vm->arch_vm.iobitmap[0];
|
||||
if (address & 0x8000)
|
||||
b = vm->arch_vm.iobitmap[1];
|
||||
a = address & 0x7fff;
|
||||
|
Loading…
Reference in New Issue
Block a user