summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorPatrick Mooney <pmooney@pfmooney.com>2021-03-17 22:33:51 +0000
committerPatrick Mooney <pmooney@oxide.computer>2021-04-02 17:21:31 +0000
commit867228adfb0b4bbab1ff33e31ec607f5671c9047 (patch)
tree44747678595517cd3e95418becbbc0e33d42b60a /usr
parent5eb35ba24893e16e4e108a951856b8d948493f28 (diff)
downloadillumos-joyent-867228adfb0b4bbab1ff33e31ec607f5671c9047.tar.gz
13645 bhyve queues wrong SIPI
Reviewed by: Yuri Pankov <yuripv@yuripv.dev> Reviewed by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org> Approved by: Robert Mustacchi <rm@fingolfin.org>
Diffstat (limited to 'usr')
-rw-r--r--usr/src/uts/i86pc/io/vmm/vmm.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/usr/src/uts/i86pc/io/vmm/vmm.c b/usr/src/uts/i86pc/io/vmm/vmm.c
index 1cd0b23a1c..047c6e0887 100644
--- a/usr/src/uts/i86pc/io/vmm/vmm.c
+++ b/usr/src/uts/i86pc/io/vmm/vmm.c
@@ -39,7 +39,7 @@
*
* Copyright 2015 Pluribus Networks Inc.
* Copyright 2018 Joyent, Inc.
- * Copyright 2020 Oxide Computer Company
+ * Copyright 2021 Oxide Computer Company
*/
#include <sys/cdefs.h>
@@ -2922,7 +2922,15 @@ vm_inject_init(struct vm *vm, int vcpuid)
vcpu = &vm->vcpu[vcpuid];
vcpu_lock(vcpu);
vcpu->run_state |= VRS_PEND_INIT;
+ /*
+ * As part of queuing the INIT request, clear any pending SIPI. It
+ * would not otherwise survive across the reset of the vCPU when it
+ * undergoes the requested INIT. We would not want it to linger when it
+ * could be mistaken as a subsequent (after the INIT) SIPI request.
+ */
+ vcpu->run_state &= ~VRS_PEND_SIPI;
vcpu_notify_event_locked(vcpu, VCPU_NOTIFY_EXIT);
+
vcpu_unlock(vcpu);
return (0);
}