1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, let's try to figure out which category this bug report falls into. The user mentioned that their OpenSUSE guest VM hangs after live migration when using clocksource=kvm-clock, but it works fine when they set it to acpi_pm. They provided a backtrace showing where the problem occurs in the QEMU code.
Looking at the categories given: mistranslation, assembly, device, graphic, socket, network, KVM, boot, vnc, debug, files, permissions, performance, kernel, peripherals, hypervisor.
The issue is related to live migration and clocksource settings. Since it's hanging during VM operation after migration, and changing the clocksource affects this, it points towards a timing or synchronization problem. The function kvm_run in qemu-kvm.c suggests that it's part of the KVM module.
So, the category should be 'KVM' because the bug is related to how QEMU interacts with the hypervisor (KVM) during live migration and timekeeping.
</think>
The bug report involves issues with live migration under QEMU/KVM when using a specific clocksource setting. The problem occurs in the KVM module's interaction, particularly around timing or synchronization during migration.
**KVM**
|