blob: 338ec4e0f37ef0d64e38f44e8e51441af1ea182e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I'm trying to classify this bug report as either user-mode or system-mode related. Let's break it down.
The issue is about the delvm command not deleting snapshots across multiple block devices in QEMU. From what I understand, delvm removes virtual machine snapshots. The problem occurs when using more than one block device—delvm deletes the snapshot on the first device but fails to do so on others, complaining that it can't find the snapshot on the first device again.
So, this is about how QEMU handles storage devices and their snapshots. Since it involves disk operations and multiple block devices, which are part of the system's hardware management, I think it relates to lower-level functions rather than user applications.
System-mode issues typically involve higher privileges because they interact with hardware, peripherals, or the operating system itself. Delvm is a tool used in managing virtual machines, which probably requires interacting with these low-level components.
Therefore, this bug report seems to be about how QEMU interacts with multiple block devices at a lower level, making it a system-mode issue.
</think>
system
|