Page MenuHomeFreeBSD

bhyve: Sleep briefly in the VMEXIT_DEBUG handler
ClosedPublic

Authored by markj on Mar 20 2023, 2:57 PM.
Tags
None
Referenced Files
Unknown Object (File)
Dec 20 2023, 6:58 AM
Unknown Object (File)
Dec 15 2023, 1:04 PM
Unknown Object (File)
Dec 12 2023, 9:25 AM
Unknown Object (File)
Sep 6 2023, 4:17 AM
Unknown Object (File)
Aug 14 2023, 3:54 PM
Unknown Object (File)
Aug 14 2023, 3:29 AM
Unknown Object (File)
Jul 24 2023, 1:09 AM
Unknown Object (File)
May 19 2023, 6:54 PM
Subscribers

Details

Summary

As of commit 0bda8d3e9f7a ("vmm: permit some IPIs to be handled by
userspace") and commit 9cc9abf409cc ("bhyve: create all vcpus on
startup"), we have a misbehaviour where AP vCPU threads spin until they
receive a SIPI. In particular, since they are "suspended", they simply
call the VMEXIT_DEBUG handler in a loop, but the handler is a no-op by
default.

This is tricky to fix since the gdb stub isn't aware of whether a given
vCPU is supposed to be running. For 13.2's sake, introduce a simple
workaround wherein the VMEXIT_DEBUG handler sleeps for a short period.
This ensures that host CPU usage remains sane when VMs are starting.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable