blob: c8f2b6cf967e9b0c468aa5a89f04d873933dd473 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I need to classify this bug report as either 'user-mode' or 'system-mode'. Let's see what the issue is about.
The problem is related to building QEMU, specifically a failure when compiling because of changes in the kernel's input.h file. The error message mentions that 'struct input_event' no longer has a 'time' member, which was used in virtio-input-host.c.
Looking at the context, the build fails due to deprecated structures and time_t handling. This suggests it's dealing with how QEMU interacts with hardware or device emulation because virtio is a virtual I/O technology often used in system emulators.
Since this involves kernel headers and input devices, it seems to be related to lower-level operations that require higher privileges, like interacting with peripherals or device drivers. These are typically part of the system-mode code as they handle device handling and OS interactions.
So, this bug is more about how QEMU interfaces with hardware through the kernel, making it a system-mode issue.
</think>
system
|