commit | 9a3d2dc583a5d58da00b25d0610972c62cadf81a | [log] [tgz] |
---|---|---|
author | Vineeth Pillai <vineethrp@google.com> | Fri Feb 18 14:10:16 2022 +0000 |
committer | Commit Bot <commit-bot@chromium.org> | Mon Feb 28 23:02:45 2022 +0000 |
tree | 70744f0eefcf99fea8f6f3181df7f9cd22db4af8 | |
parent | d6de319f7b8b04cd6d21f7342f52f6ac94eb9074 [diff] |
devices: pci: pvpanic: pvpanic virtual device initial implementation pvpanic is a simulated device through which a guest panic event could be sent to the VMM. More details here: https://github.com/qemu/qemu/blob/master/docs/specs/pvpanic.txt Implement pvpanic device emulation and its pci interface. BUG=None TEST=Built crosvm. Ran a minimal vm to crash and verified that crosvm receives the panic event. cargo test on devices. Change-Id: I766fcc08f07760ad5f64f440a577705efd82e32a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3480575 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Vineeth Pillai <vineethrp@google.com>
crosvm is a virtual machine monitor (VMM) based on Linux’s KVM hypervisor, with a focus on simplicity, security, and speed. crosvm is intended to run Linux guests, originally as a security boundary for running native applications on the Chrome OS platform. Compared to QEMU, crosvm doesn’t emulate architectures or real hardware, instead concentrating on paravirtualized devices, such as the virtio standard.
crosvm is currently used to run Linux/Android guests on Chrome OS devices.