blob: ec3dd2c5ec26eae090cecb87b82ce8b0ea60073b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<think>
Alright, let's figure out which category this bug report falls into. The issue is that the `snapshot-save` operation in QEMU became significantly slower after a specific commit. Before the commit, it took about 1.5 seconds, but after, it jumped to over a minute.
Looking at the possible categories:
- **mistranslation** relates to incorrect semantic mapping from source to target architecture, which doesn't seem relevant here since the issue is about performance.
- **assembly** and **device**, **graphic**, **socket**, etc., don't directly relate to snapshot saving speed.
- **performance** seems spot on because the problem is clearly about how long an operation takes.
The bug report mentions that more RAM makes it take longer, which suggests a resource or scheduling issue affecting performance. The commit in question modifies migration-related code, which could impact I/O and CPU usage during snapshots.
No other category fits as well as **performance** for this issue.
</think>
performance
|