blob: 0293375c182aa3e95270be515cbaa479a8155ecb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, so I need to classify this bug report: "stable-5.0 crashes with SIGSEV while checking for kvm extension". Let's break it down.
First, the crash happens in QEMU, which is a hypervisor, right? So that's already pointing towards one of the categories.
The error is a SIGSEGV, which means there's a segmentation violation—some kind of memory access issue. The context is while checking for the KVM extension. Since KVM is involved, it's related to the kernel module that allows QEMU to run virtual machines as a userspace application with kernel support.
Looking at the possible categories: hypervisor seems like the most fitting because the crash is directly tied to KVM functionality within QEMU, which operates in the hypervisor mode. Other options like 'kernel' or 'device' don't fit as well because the issue isn't with general kernel operations or hardware devices but specifically the KVM extension handling.
So, I think the category should be 'hypervisor'.
</think>
hypervisor
|