Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108373886
D37644.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D37644.diff
View Options
diff --git a/usr.sbin/bhyve/bhyverun.c b/usr.sbin/bhyve/bhyverun.c
--- a/usr.sbin/bhyve/bhyverun.c
+++ b/usr.sbin/bhyve/bhyverun.c
@@ -196,8 +196,6 @@
static void vm_loop(struct vmctx *ctx, int vcpu);
-static struct vm_exit *vmexit;
-
static struct bhyvestats {
uint64_t vmexit_bogus;
uint64_t vmexit_reqidle;
@@ -619,7 +617,7 @@
fprintf(stderr, "Unhandled %s%c 0x%04x at 0x%lx\n",
in ? "in" : "out",
bytes == 1 ? 'b' : (bytes == 2 ? 'w' : 'l'),
- port, vmexit->rip);
+ port, vme->rip);
return (VMEXIT_ABORT);
} else {
return (VMEXIT_CONTINUE);
@@ -968,6 +966,7 @@
static void
vm_loop(struct vmctx *ctx, int vcpu)
{
+ struct vm_exit vme;
int error, rc;
enum vm_exitcode exitcode;
cpuset_t active_cpus;
@@ -982,18 +981,18 @@
assert(CPU_ISSET(vcpu, &active_cpus));
while (1) {
- error = vm_run(ctx, vcpu, &vmexit[vcpu]);
+ error = vm_run(ctx, vcpu, &vme);
if (error != 0)
break;
- exitcode = vmexit[vcpu].exitcode;
+ exitcode = vme.exitcode;
if (exitcode >= VM_EXITCODE_MAX || handler[exitcode] == NULL) {
fprintf(stderr, "vm_loop: unexpected exitcode 0x%x\n",
exitcode);
exit(4);
}
- rc = (*handler[exitcode])(ctx, &vmexit[vcpu], &vcpu);
+ rc = (*handler[exitcode])(ctx, &vme, &vcpu);
switch (rc) {
case VMEXIT_CONTINUE:
@@ -1582,7 +1581,6 @@
#endif
/* Allocate per-VCPU resources. */
- vmexit = calloc(guest_ncpus, sizeof(*vmexit));
mt_vmm_info = calloc(guest_ncpus, sizeof(*mt_vmm_info));
/*
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jan 25, 6:38 AM (19 h, 17 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16128850
Default Alt Text
D37644.diff (1 KB)
Attached To
Mode
D37644: bhyve: Allocate struct vm_exit on the stack in vm_loop.
Attached
Detach File
Event Timeline
Log In to Comment