summary refs log tree commit diff stats
path: root/results/classifier/118/files/1561
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:00 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:33 +0000
commit9aba81d8eb048db908c94a3c40c25a5fde0caee6 (patch)
treeb765e7fb5e9a3c2143c68b0414e0055adb70e785 /results/classifier/118/files/1561
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloadqemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
qemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/files/1561')
-rw-r--r--results/classifier/118/files/156157
1 files changed, 57 insertions, 0 deletions
diff --git a/results/classifier/118/files/1561 b/results/classifier/118/files/1561
new file mode 100644
index 000000000..3e712bb7b
--- /dev/null
+++ b/results/classifier/118/files/1561
@@ -0,0 +1,57 @@
+files: 0.956
+semantic: 0.751
+graphic: 0.714
+PID: 0.545
+device: 0.542
+socket: 0.495
+performance: 0.481
+network: 0.471
+ppc: 0.449
+user-level: 0.398
+architecture: 0.388
+mistranslation: 0.378
+register: 0.362
+permissions: 0.341
+i386: 0.333
+arm: 0.329
+hypervisor: 0.329
+vnc: 0.327
+risc-v: 0.326
+x86: 0.315
+debug: 0.300
+kernel: 0.291
+VMM: 0.284
+peripherals: 0.280
+TCG: 0.258
+virtual: 0.244
+boot: 0.242
+KVM: 0.191
+assembly: 0.166
+
+Compile QEMU 6.2.0 fail for file not found
+Description of problem:
+Compile QEMU failed with error message:
+```
+In file included from ../subprojects/libvhost-user/libvhost-user.c:45:
+../subprojects/libvhost-user/libvhost-user.h:23:10: Fatal error:standard-headers/linux/virtio_ring.h:no such file or directory
+   23 | #include "standard-headers/linux/virtio_ring.h"
+      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+```
+Steps to reproduce:
+1. Download qemu-6.2.0 tarball at https://download.qemu.org/qemu-6.2.0.tar.xz
+2. unzip the tarball to dir ```qemu-6.2.0```
+2. cd ```qemu-6.2.0```, and then ```./configure && make -j2```
+Additional information:
+In ```qemu-6.2.0/subprojects/libvhost-user/libvhost-user.c:45```, the included files are:
+
+```
+#include <stdint.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <poll.h>
+#include <linux/vhost.h>
+#include <pthread.h>
+#include "standard-headers/linux/virtio_ring.h"    
+```
+
+```standard-headers``` are in ```qemu-6.2.0/include/standard-headers/```, but above #include assume it's in the same dir of ```libvhost-user.c```.