summaryrefslogtreecommitdiffstats
path: root/results/classifier/118/device/2125
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/device/2125
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloademulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
emulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/device/2125')
-rw-r--r--results/classifier/118/device/212544
1 files changed, 44 insertions, 0 deletions
diff --git a/results/classifier/118/device/2125 b/results/classifier/118/device/2125
new file mode 100644
index 00000000..9bdafb75
--- /dev/null
+++ b/results/classifier/118/device/2125
@@ -0,0 +1,44 @@
+device: 0.906
+boot: 0.895
+x86: 0.830
+peripherals: 0.733
+network: 0.726
+performance: 0.710
+graphic: 0.671
+hypervisor: 0.610
+ppc: 0.574
+mistranslation: 0.568
+architecture: 0.565
+PID: 0.543
+vnc: 0.538
+socket: 0.535
+files: 0.480
+risc-v: 0.476
+register: 0.444
+permissions: 0.405
+semantic: 0.396
+kernel: 0.381
+VMM: 0.375
+user-level: 0.340
+arm: 0.336
+TCG: 0.328
+i386: 0.324
+debug: 0.305
+assembly: 0.209
+KVM: 0.089
+virtual: 0.073
+
+The value of 'tx_queue_size' is set to only 256 in the network device option on qemu 8.2.
+Description of problem:
+I have been using the 'tx_queue_size' value set to 1024 in the network device option on qemu 7.2 without any issues.\
+but when I upgrade to qemu 8.2 I got this error message (and also qemu 8.1) and I cannot use any value other than 256
+```
+qemu-system-x86_64: -device virtio-net-pci,mq=on,vectors=6,netdev=hostnet_34,id=dpdk_34,mac=F2:20:AF:40:12:65,bus=bridge,addr=0x7,page-per-vq=on,rx_queue_size=1024,tx_queue_size=1024,mrg_rxbuf=on,disable-legacy=on,disable-modern=off,host_mtu=1500,csum=on,guest_csum=on,host_tso4=on,host_tso6=on: Invalid tx_queue_size (= 1024), must be a power of 2 between 256 and 256
+```
+
+and I think virtqueue max size value has never changed from 1024.\
+https://gitlab.com/qemu-project/qemu/-/blob/staging-8.2/include/hw/virtio/virtio.h?ref_type=heads#L62
+Steps to reproduce:
+1. boot qemu-system-x86_64 on qemu 8.2 and network device option set tx_queue_size value over 256
+Additional information:
+- I'm using hardware vDPA offloading with mellanox NIC card.