commit | 1b8d044740d392cb571dacfe91b9a81f4ea19c47 | [log] [tgz] |
---|---|---|
author | Andrew Scull <ascull@google.com> | Mon Aug 06 15:47:04 2018 +0100 |
committer | Andrew Scull <ascull@google.com> | Mon Aug 06 15:49:04 2018 +0100 |
tree | df906b89bc5b5af1302ab5c40155e7693ad69d7c | |
parent | 8dce498fe98eb18dcdaef20f9db238df2cf16989 [diff] [blame] |
The entry address for a VM is an IPA. Change-Id: I9b447796789082c031c8a342a283d3050cf15ccb
diff --git a/src/vm.c b/src/vm.c index 66be66e..d2da22e 100644 --- a/src/vm.c +++ b/src/vm.c
@@ -22,7 +22,7 @@ } /* TODO: Shall we use index or id here? */ -void vm_start_vcpu(struct vm *vm, size_t index, size_t entry, size_t arg, +void vm_start_vcpu(struct vm *vm, size_t index, ipaddr_t entry, size_t arg, bool is_primary) { struct vcpu *vcpu = vm->vcpus + index;