diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-30 12:34:26 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-30 12:35:44 +0000 |
| commit | 25f8033d556aa17afaea4a5196ea7a69fe248320 (patch) | |
| tree | 0f056db167683be54ea1e5e72d29d6069af55e7d /results/classifier/deepseek-2-tmp/reasoning/socket/1781280 | |
| parent | 8e6da29e4ee5fc14bc1cc816a24f21271f14090d (diff) | |
| download | qemu-analysis-25f8033d556aa17afaea4a5196ea7a69fe248320.tar.gz qemu-analysis-25f8033d556aa17afaea4a5196ea7a69fe248320.zip | |
add new temporary deepseek-r1:14b results
Diffstat (limited to 'results/classifier/deepseek-2-tmp/reasoning/socket/1781280')
| -rw-r--r-- | results/classifier/deepseek-2-tmp/reasoning/socket/1781280 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/results/classifier/deepseek-2-tmp/reasoning/socket/1781280 b/results/classifier/deepseek-2-tmp/reasoning/socket/1781280 new file mode 100644 index 000000000..87c9fbac6 --- /dev/null +++ b/results/classifier/deepseek-2-tmp/reasoning/socket/1781280 @@ -0,0 +1,11 @@ +<think> +Okay, so I'm trying to classify this bug report for QEMU. Let me read through it carefully. + +The user is reporting that when sending multiple control messages over a Unix socket in QEMU, only the first one is received. They mention using a test program with SCM_CREDENTIALS and SCM_RIGHTS. On native systems, both are received, but not in QEMU. + +They traced this to a glibc bug, specifically related to uninitialized buffers causing CMSG_NXTHDR to return NULL incorrectly. The issue arises because QEMU's `target_to_host_cmsg` stops encoding as soon as either buffer ends, which leads to losing target messages if the host buffer runs out first. They suggest adding an assertion and provided a patch that zeros the buffer. + +Looking at the categories: device, graphic, socket, network... This seems related to socket operations because it's about sending control messages over Unix sockets. The problem occurs during communication via sockets within QEMU. So the category would be 'socket'. +</think> + +socket \ No newline at end of file |