Skip to content

Commit ffda0d9

Browse files
committed
Initial support of isl_call
1 parent e14d5d0 commit ffda0d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vmm_kvm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ int
8585
vmm_memory_map(vmm_vm_t vm, vmm_uvaddr_t uva, vmm_gpaddr_t gpa, size_t size, int prot)
8686
{
8787
static uint32_t slot = 0;
88-
return vmm_memregion_set(vm, slot++, uva, gpa, size, prot);
88+
return vmm_memregion_set(vm, slot++, uva, gpa, size, prot | PROT_EXEC); // non-PROT_EXEC is not supported on kvm
8989
}
9090

9191
int

0 commit comments

Comments
 (0)