blob: 0e36d9a8248ab14a1e2787518a54ed1e17fd8d96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
The user provided a bug report mentioning "linux-user missing cmsg IP_PKTINFO support" and an error message about unsupported ancillary data. The categories to choose from are instruction, syscall, or runtime.
First, I need to understand what each category represents:
- **instruction**: This refers to issues with specific CPU instructions.
- **syscall**: This involves errors related to system calls.
- **runtime**: This covers other general runtime issues that don't fit the first two categories.
The error message mentions "cmsg IP_PKTINFO support" and "ancillary data". These terms are associated with socket operations, which typically involve system calls. The `IP_PKTINFO` option is used in socket programming to retrieve packet information, and errors here suggest a problem with how QEMU handles certain system calls related to networking.
Since the issue revolves around handling of network packets and socket options, it's likely related to system call processing within QEMU. Therefore, this falls under the **syscall** category.
</think>
syscall
|