blob: 2d26a4e4236fc733bf7ef21854ceb805964f743f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<think>
Alright, I need to classify this bug report. The user mentioned that netlink is broken on big-endian MIPS when running QEMU-user. They provided details about running 'ip route' and the process hanging, along with strace output showing it's waiting for a netlink response.
Looking at the tags, categories include network, which seems relevant because netlink is a networking protocol. The bug affects the network functionality within the QEMU environment.
The user also included a code snippet where removing fd_trans_unregister in do_syscall fixes the issue. This suggests it's related to how file descriptors are handled during syscalls, specifically for sockets or network-related operations.
Considering all this, the primary issue is with network communication between the guest and host, so 'network' fits best.
</think>
network
|