Hello all, I am following this with QNX as a guest driver bug.
Thank you, Claudio On 09/17/2018 08:57 AM, Claudio wrote: > Hello Michael, > > On 09/12/2018 07:26 PM, Michael S. Tsirkin wrote: >> On Wed, Sep 12, 2018 at 07:12:58PM +0200, Claudio wrote: >>> Hi Michael, >>> >>> On 09/12/2018 05:31 PM, Michael S. Tsirkin wrote: >>>> On Wed, Sep 12, 2018 at 05:16:38PM +0200, Claudio wrote: >>>>> Thank you both for your responses, >>>>> >>>>> and ciao Paolo, >>>>> >>>>> On 09/12/2018 02:37 PM, Michael S. Tsirkin wrote: >>>>>> On Wed, Sep 12, 2018 at 10:01:34AM +0200, Claudio wrote: >>>>>>> Hello Michael, Jason and all, >>>>>>> >>>>>>> I am currently using latest mainline QEMU on x86_64 to run a QNX 7 >>>>>>> guest. >>>>>>> >>>>>>> QNX 7 is not free software anymore unfortunately, with the >>>>>>> the last open source versions in the 6.x range. >>>>>>> >>>>>>> I am using the official virtio-net guest driver from QNX 7. >>>>>>> >>>>>>> During initialization I sporadically get this error message: >>>>>>> >>>>>>> $ qemu-system-x86_64 -machine pc,accel=kvm,kernel_irqchip=on -smp 2 -m >>>>>>> 2048 -display none -nodefconfig -nodefaults -chardev >>>>>>> stdio,mux=on,id=char0 -serial chardev:char0 -monitor none -mon >>>>>>> chardev=char0,mode=readline -netdev >>>>>>> user,id=user0,hostfwd=udp::9004-:9004 -device virtio-net,netdev=user0 >>>>>>> qnx.img >>>>>>> >>>>>>> virtio-net ctrl missing headers >>>>>> >>>>>> This means a control buffer is sent either without the input element >>>>>> or without an output element, or with a single byte output element. >>>>>> >>>>>>> and following that my host->guest UDP port forwarding does not work, >>>>>>> that is, >>>>>>> the qemu process shows up as listening on the interface, but no packets >>>>>>> appear in the guest. >>>>>>> >>>>>>> This error during initialization does not appear every time I launch >>>>>>> QEMU. >>>>>>> It appears to be more or less random. >>>>>>> >>>>>>> Whenever the error does not appear, the interface works as expected, >>>>>>> and port forwarding works. >>>>>>> >>>>>>> Latest commit is >>>>>>> >>>>>>> 19b599f7664b ("Merge remote-tracking branch >>>>>>> 'remotes/armbru/tags/pull-error-2018-08-27-v2'") >>>>>>> >>>>>>> Thanks a lot for any advice! >>>>>>> >>>>>>> Ciao, >>>>>>> >>>>>>> Claudio >>>>>> >>>>>> If it's easy to reproduce, you can try printing out all commands. >>>>>> E.g.: >>>>>> >>>>>> diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c >>>>>> index f154756e85..34251273a9 100644 >>>>>> --- a/hw/net/virtio-net.c >>>>>> +++ b/hw/net/virtio-net.c >>>>>> @@ -987,6 +987,10 @@ static void virtio_net_handle_ctrl(VirtIODevice >>>>>> *vdev, VirtQueue *vq) >>>>>> if (!elem) { >>>>>> break; >>>>>> } >>>>>> + fprintf(stderr, "%s: in %d/%d, out %d/%d\n", >>>>>> + elem->in_num, iov_size(elem->in_sg, elem->in_num), >>>>>> + elem->out_num, iov_size(elem->out_sg, elem->out_num)); >>>>>> + >>>>>> if (iov_size(elem->in_sg, elem->in_num) < sizeof(status) || >>>>>> iov_size(elem->out_sg, elem->out_num) < sizeof(ctrl)) { >>>>>> virtio_error(vdev, "virtio-net ctrl missing headers"); >>>>>> @@ -1014,6 +1018,9 @@ static void virtio_net_handle_ctrl(VirtIODevice >>>>>> *vdev, VirtQueue *vq) >>>>>> } else if (ctrl.class == VIRTIO_NET_CTRL_GUEST_OFFLOADS) { >>>>>> status = virtio_net_handle_offloads(n, ctrl.cmd, iov, >>>>>> iov_cnt); >>>>>> } >>>>>> + fprintf(stderr, "%s: class 0x%x cmd 0x%x cnt %d status 0x%x\n", >>>>>> + ctrl.class, ctrl.cmd, iov_cnt, status); >>>>>> + >>>>>> >>>>>> s = iov_from_buf(elem->in_sg, elem->in_num, 0, &status, >>>>>> sizeof(status)); >>>>>> assert(s == sizeof(status)); >>>>>> >>>>>> >>>>>> You can also try replacing virtio_error with fprintf - that will >>>>>> avoid wedging the device on an error and let you proceed >>>>>> with debugging. >>>>>> >>>>> >>>>> I managed to automate the detection of the error, and it does appear to >>>>> be a regression from my point of view. >>>>> >>>>> I did a git bisect, and you can see the result and log as follows: >>>>> >>>>> >From 4a3f03ba8dbf53fce36d0c1dd5d0cc0f340fe5f3 Mon Sep 17 00:00:00 2001 >>>>> > >>>>> From: Paolo Bonzini <pbonz...@redhat.com> >>>>> >>>>> Date: Wed, 11 Jan 2017 09:38:15 +0100 >>>>> >>>>> Subject: [PATCH] virtio-net: enable ioeventfd even if vhost=off >>>>> >>>>> >>>>> >>>>> virtio-net-pci does not enable ioeventfd for historical reasons (and >>>>> >>>>> nobody ever checked whether it should be revisited). Note that other >>>>> >>>>> backends do enable ioeventfd for virtio-net. >>>>> >>>>> >>>>> >>>>> However, it has a major effect on performance. On Windows, throughput is >>>>> >>>>> _multiplied_ by 2 or 3 on TCP_STREAM (on small packets it is "only" a 30% >>>>> >>>>> improvement) and a little less so on TCP_MAERTS albeit still very much >>>>> >>>>> statistically significant. Latency also has a single digit improvement. >>>>> >>>>> >>>>> >>>>> This is not visible when using vhost, which forces ioeventfd=on, but it >>>>> >>>>> is substantial without vhost. In addition, also on Windows and with the >>>>> >>>>> RHEL 7.3 kernel, APICv seems to slow down virtio-net performance a bit, >>>>> >>>>> but the penalty with this patch goes from -25% to -7%. >>>>> >>>>> >>>>> >>>>> Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> >>>>> >>>>> Reviewed-by: Michael S. Tsirkin <m...@redhat.com> >>>>> >>>>> Signed-off-by: Michael S. Tsirkin <m...@redhat.com> >>>>> >>>>> --- >>>>> hw/virtio/virtio-pci.c | 2 +- >>>>> >>>>> 1 file changed, 1 insertion(+), 1 deletion(-) >>>>> >>>>> >>>>> >>>>> diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c >>>>> >>>>> index 854b8f2..8baaf2b 100644 >>>>> >>>>> --- a/hw/virtio/virtio-pci.c >>>>> >>>>> +++ b/hw/virtio/virtio-pci.c >>>>> >>>>> @@ -2278,7 +2278,7 @@ static const TypeInfo virtio_serial_pci_info = { >>>>> >>>>> >>>>> static Property virtio_net_properties[] = { >>>>> >>>>> DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy, flags, >>>>> >>>>> - VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, false), >>>>> >>>>> + VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, true), >>>>> >>>>> DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 3), >>>>> >>>>> DEFINE_PROP_END_OF_LIST(), >>>>> >>>>> }; >>>>> >>>>> -- >>>>> >>>>> 2.7.4 >>>>> >>>>> >>>>> >>>>> git bisect start >>>>> # good: [ec57db1630f9cdcd13c8c55acbc8daf5237aabf1] virtio-net: unbreak >>>>> the minix guest >>>>> git bisect good ec57db1630f9cdcd13c8c55acbc8daf5237aabf1 >>>>> # good: [ec57db1630f9cdcd13c8c55acbc8daf5237aabf1] virtio-net: unbreak >>>>> the minix guest >>>>> git bisect good ec57db1630f9cdcd13c8c55acbc8daf5237aabf1 >>>>> # good: [ec57db1630f9cdcd13c8c55acbc8daf5237aabf1] virtio-net: unbreak >>>>> the minix guest >>>>> git bisect good ec57db1630f9cdcd13c8c55acbc8daf5237aabf1 >>>>> # bad: [19b599f7664b2ebfd0f405fb79c14dd241557452] Merge remote-tracking >>>>> branch 'remotes/armbru/tags/pull-error-2018-08-27-v2' into staging >>>>> git bisect bad 19b599f7664b2ebfd0f405fb79c14dd241557452 >>>>> # good: [c0f3f6754a120abc3451ebf7a7c703fbaf7b29e7] block: m25p80: 4byte >>>>> address mode >>>>> git bisect good c0f3f6754a120abc3451ebf7a7c703fbaf7b29e7 >>>>> # bad: [67b9c5d4f37ea373ebf9aad251883886e34bf2e1] Merge remote-tracking >>>>> branch 'remotes/bonzini/tags/for-upstream' into staging >>>>> git bisect bad 67b9c5d4f37ea373ebf9aad251883886e34bf2e1 >>>>> # good: [6bbcb76301a72dc80c8d29af13d40bb9a759c9c6] MAINTAINERS: Remove >>>>> obsolete stable branches >>>>> git bisect good 6bbcb76301a72dc80c8d29af13d40bb9a759c9c6 >>>>> # bad: [ff79d5e939c38677a575e3493eb9b4d36eb21865] Merge remote-tracking >>>>> branch 'remotes/xtensa/tags/20170306-xtensa' into staging >>>>> git bisect bad ff79d5e939c38677a575e3493eb9b4d36eb21865 >>>>> # bad: [a0def594286d9110a6035e02eef558cf3cf5d847] Merge remote-tracking >>>>> branch 'remotes/bonzini/tags/for-upstream' into staging >>>>> git bisect bad a0def594286d9110a6035e02eef558cf3cf5d847 >>>>> # good: [b6c08970bc989bfddcf830684ea7a96b7a4d62a7] Merge remote-tracking >>>>> branch 'remotes/bkoppelmann/tags/pull-tricore-2017-01-11-2' into staging >>>>> git bisect good b6c08970bc989bfddcf830684ea7a96b7a4d62a7 >>>>> # good: [c5fc89b36c0a167548ae7af40dc085707a7756d2] hw/intc/arm_gicv3: >>>>> Implement gicv3_cpuif_virt_update() >>>>> git bisect good c5fc89b36c0a167548ae7af40dc085707a7756d2 >>>>> # bad: [009fad7f4ccbbf3ea115e9196edde88c0a17c1c2] migration: Change name >>>>> of live migration thread >>>>> git bisect bad 009fad7f4ccbbf3ea115e9196edde88c0a17c1c2 >>>>> # bad: [ebe9383caefd56d519e965a5d87bca29f0aeffe3] target-hppa: Implement >>>>> floating-point insns >>>>> git bisect bad ebe9383caefd56d519e965a5d87bca29f0aeffe3 >>>>> # bad: [db655a9653af05aaa90f41e55433d41e398d4b75] Merge remote-tracking >>>>> branch 'remotes/jasowang/tags/net-pull-request' into staging >>>>> git bisect bad db655a9653af05aaa90f41e55433d41e398d4b75 >>>>> # bad: [2943b53f682f54548e7ddcf2ebb6c6d12d8dc821] virtio: force >>>>> VIRTIO_F_IOMMU_PLATFORM >>>>> git bisect bad 2943b53f682f54548e7ddcf2ebb6c6d12d8dc821 >>>>> # bad: [a5b3ebfd23bc70fa68461dff1d7145ff65e07150] fw-cfg: bump >>>>> "x-file-slots" to 0x20 for 2.9+ machine types >>>>> git bisect bad a5b3ebfd23bc70fa68461dff1d7145ff65e07150 >>>>> # bad: [c471ad0e9bd46ca5f5c9c796e727230e043a091d] vhost_net: device IOTLB >>>>> support >>>>> git bisect bad c471ad0e9bd46ca5f5c9c796e727230e043a091d >>>>> # bad: [332fa82d0963409fa14997a02639289afa226596] Revert "virtio: turn >>>>> vq->notification into a nested counter" >>>>> git bisect bad 332fa82d0963409fa14997a02639289afa226596 >>>>> # bad: [4a3f03ba8dbf53fce36d0c1dd5d0cc0f340fe5f3] virtio-net: enable >>>>> ioeventfd even if vhost=off >>>>> git bisect bad 4a3f03ba8dbf53fce36d0c1dd5d0cc0f340fe5f3 >>>>> # first bad commit: [4a3f03ba8dbf53fce36d0c1dd5d0cc0f340fe5f3] >>>>> virtio-net: enable ioeventfd even if vhost=off >>>>> >>>>> >>>>> I reverted the commit on master, and this solves the problem for me. >>>>> >>>>> Ciao, >>>>> >>>>> Claudio >>>> >>>> Well this seems to tell us this is some kind of race. >>>> Does it change anything if we just retry? >>>> >>>> diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c >>>> index f154756e85..8d4e0cce61 100644 >>>> --- a/hw/net/virtio-net.c >>>> +++ b/hw/net/virtio-net.c >>>> @@ -987,12 +987,22 @@ static void virtio_net_handle_ctrl(VirtIODevice >>>> *vdev, VirtQueue *vq) >>>> if (!elem) { >>>> break; >>>> } >>>> + fprintf(stderr, "%s: in %d/%d, out %d/%d\n", >>>> + elem->in_num, iov_size(elem->in_sg, elem->in_num), >>>> + elem->out_num, iov_size(elem->out_sg, elem->out_num)); >>>> + >>>> if (iov_size(elem->in_sg, elem->in_num) < sizeof(status) || >>>> iov_size(elem->out_sg, elem->out_num) < sizeof(ctrl)) { >>>> + virtqueue_unpop(vq, elem, 0); >>>> + g_free(elem); >>>> + continue; >>>> +#if 0 >>>> + >>>> virtio_error(vdev, "virtio-net ctrl missing headers"); >>>> virtqueue_detach_element(vq, elem, 0); >>>> g_free(elem); >>>> break; >>>> +#endif >>>> } >>>> >>>> iov_cnt = elem->out_num; >>>> @@ -1014,6 +1024,9 @@ static void virtio_net_handle_ctrl(VirtIODevice >>>> *vdev, VirtQueue *vq) >>>> } else if (ctrl.class == VIRTIO_NET_CTRL_GUEST_OFFLOADS) { >>>> status = virtio_net_handle_offloads(n, ctrl.cmd, iov, >>>> iov_cnt); >>>> } >>>> + fprintf(stderr, "%s: class 0x%x cmd 0x%x cnt %d status 0x%x\n", >>>> + ctrl.class, ctrl.cmd, iov_cnt, status); >>>> + >>>> >>>> s = iov_from_buf(elem->in_sg, elem->in_num, 0, &status, >>>> sizeof(status)); >>>> assert(s == sizeof(status)); >>>> >>> >>> I applied a slight variation of the above to make gcc happy: >>> >>> diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c >>> index f154756..74bfc39 100644 >>> --- a/hw/net/virtio-net.c >>> +++ b/hw/net/virtio-net.c >>> @@ -987,12 +987,22 @@ static void virtio_net_handle_ctrl(VirtIODevice >>> *vdev, VirtQueue *vq) >>> if (!elem) { >>> break; >>> } >>> + fprintf(stderr, "%s (%lu): in %u/%lu, out %u/%lu\n", >>> + __func__, time(NULL), >>> + elem->in_num, iov_size(elem->in_sg, elem->in_num), >>> + elem->out_num, iov_size(elem->out_sg, elem->out_num)); >>> + >>> if (iov_size(elem->in_sg, elem->in_num) < sizeof(status) || >>> iov_size(elem->out_sg, elem->out_num) < sizeof(ctrl)) { >>> + virtqueue_unpop(vq, elem, 0); >>> + g_free(elem); >>> + continue; >>> +#if 0 >>> virtio_error(vdev, "virtio-net ctrl missing headers"); >>> virtqueue_detach_element(vq, elem, 0); >>> g_free(elem); >>> break; >>> +#endif >>> } >>> >>> iov_cnt = elem->out_num; >>> @@ -1014,6 +1024,9 @@ static void virtio_net_handle_ctrl(VirtIODevice >>> *vdev, VirtQueue *vq) >>> } else if (ctrl.class == VIRTIO_NET_CTRL_GUEST_OFFLOADS) { >>> status = virtio_net_handle_offloads(n, ctrl.cmd, iov, iov_cnt); >>> } >>> + fprintf(stderr, "%s (%lu): class 0x%x cmd 0x%x cnt %d status >>> 0x%x\n", >>> + __func__, time(NULL), >>> + ctrl.class, ctrl.cmd, iov_cnt, status); >>> >>> s = iov_from_buf(elem->in_sg, elem->in_num, 0, &status, >>> sizeof(status)); >>> assert(s == sizeof(status)); >>> -- >>> >>> The result is actually that it loops forever. I left it running for some >>> minutes. >>> >>> If there is a race condition, maybe it already happened before we reach >>> here? >>> The "out" parameters are 0/0 on unsuccessful runs, while they are 2/400 on >>> success. >>> >>> Here is a successful run (it sometimes happens). >>> >>> virtio_net_handle_ctrl (1536771438): in 1/1, out 2/400 >>> virtio_net_handle_ctrl (1536771438): class 0x0 cmd 0x0 cnt 1 status 0x0 >>> virtio_net_handle_ctrl (1536771438): in 1/1, out 2/400 >>> virtio_net_handle_ctrl (1536771438): class 0x0 cmd 0x0 cnt 1 status 0x0 >>> virtio_net_handle_ctrl (1536771438): in 1/1, out 2/400 >>> virtio_net_handle_ctrl (1536771438): class 0x1 cmd 0x0 cnt 1 status 0x1 >>> virtio_net_handle_ctrl (1536771438): in 1/1, out 2/400 >> >> This does not look good either. Try to step into >> virtio_net_handle_mac >> and see why does it fail? > > virtqueue_pop: flags 0x1 addr 0x7bc33760 len 0x2 > virtio_net_handle_ctrl (1536819598): in 1/1, out 2/400 > virtio_net_handle_ctrl (1536819598): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7bc33580 len 0x2 > virtio_net_handle_ctrl (1536819598): in 1/1, out 2/400 > virtio_net_handle_ctrl (1536819598): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7cd41df0 len 0xc > virtqueue_pop: flags 0x2 addr 0x7cdff000 len 0x800 > virtqueue_pop: flags 0x1 addr 0x7cd419f0 len 0xc > virtqueue_pop: flags 0x2 addr 0x7cdfd800 len 0x800 > virtqueue_pop: flags 0x1 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819598): in 1/2, out 2/400 > > Thread 1 "qemu-system-x86" hit Breakpoint 1, virtio_net_handle_mac > (n=0x55555772d270, > cmd=0 '\000', iov=0x555556805190, iov_cnt=1) > at /home/claudio/git/qemu/hw/net/virtio-net.c:800 > > The first iov_to_buf of iov gives: > > (gdb) p iov[0] > $3 = {iov_base = 0x7fffdba33630, iov_len = 398} > (gdb) p iov_cnt > 1 > (gdb) p s > 4 > (gdb) p mac_data.entries > 1 > > Then after iov_discard_front: > > (gdb) p iov[0] > $26 = {iov_base = 0x7fffdba33634, iov_len = 394} > > Now after reading the MAC address with iov_to_buf: > > (gdb) p s > 6 > (gdb) x/6b macs > 0x555556860070: 0x52 0x54 0x00 0x12 0xbf 0xb0 > (gdb) p in_use > 1 > > Now after iov_discard_front: > > (gdb) p iov[0] > $40 = {iov_base = 0x7fffdba3363a, iov_len = 388} > > Then after iov_to_buf of iov: > > (gdb) p mac_data.entries > 2064 => Leading to ERROR > (gdb) p s > 4 > > Then after iov_discard_front: > > (gdb) p iov[0] > $55 = {iov_base = 0x7fffdba3363e, iov_len = 384} > > > ERROR: > > if (mac_data.entries * ETH_ALEN != iov_size(iov, iov_cnt)) { > > mac_data.entries is 2064, out of range. > > full iov[0] dump: > > (gdb) x/398bx iov[0].iov_base > 0x7fffdba33630: 0x01 0x00 0x00 0x00 0x52 0x54 0x00 > 0x12 > 0x7fffdba33638: 0xbf 0xb0 0x10 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33640: 0x80 0x37 0xf8 0x07 0x00 0x00 0x00 > 0x00 > 0x7fffdba33648: 0xd8 0xbd 0x1b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33650: 0x80 0x71 0x1b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33658: 0x01 0x00 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba33660: 0x78 0x37 0xf8 0x07 0x00 0x00 0x00 > 0x00 > 0x7fffdba33668: 0x03 0x2e 0x11 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33670: 0xd8 0xbd 0x1b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33678: 0x40 0x5b 0x1c 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33680: 0x00 0x00 0x00 0x00 0x01 0x00 0x00 > 0x00 > 0x7fffdba33688: 0xf0 0x16 0x19 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33690: 0xc8 0x5e 0x1c 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33698: 0x40 0x0b 0x19 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba336a0: 0x28 0x43 0x1b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba336a8: 0x80 0xd1 0x19 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba336b0: 0x10 0x02 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba336b8: 0x00 0x00 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba336c0: 0x10 0x38 0xf8 0x07 0x00 0x00 0x00 > 0x00 > 0x7fffdba336c8: 0xa1 0xb6 0x05 0x00 0x01 0x00 0x00 > 0x00 > 0x7fffdba336d0: 0x00 0x00 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba336d8: 0xe0 0x19 0x2b 0x00 0x01 0x00 0x00 > 0x00 > 0x7fffdba336e0: 0xe0 0x1b 0x2b 0x00 0x01 0x00 0x00 > 0x00 > 0x7fffdba336e8: 0xe0 0x19 0x2b 0x00 0x01 0x00 0x00 > 0x00 > 0x7fffdba336f0: 0xe0 0x1b 0x2b 0x00 0x01 0x00 0x00 > 0x00 > 0x7fffdba336f8: 0xf0 0x16 0x19 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33700: 0x0a 0x00 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba33708: 0xe9 0x6e 0x03 0x00 0x01 0x00 0x00 > 0x00 > 0x7fffdba33710: 0x80 0xd1 0x19 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33718: 0x80 0xd1 0x19 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33720: 0x00 0x00 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba33728: 0x20 0x00 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba33730: 0x01 0x00 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba33738: 0xbd 0xad 0x0e 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33740: 0x01 0x00 0x00 0x00 0x00 0x00 0x00 > 0x00 > 0x7fffdba33748: 0x58 0x4d 0x2b 0x00 0x01 0x00 0x00 > 0x00 > 0x7fffdba33750: 0x70 0x37 0xf8 0x07 0x00 0x00 0x00 > 0x00 > 0x7fffdba33758: 0x80 0x37 0xf8 0x07 0x00 0x00 0x00 > 0x00 > 0x7fffdba33760: 0x00 0x40 0x1b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33768: 0x8c 0x39 0x0b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33770: 0x01 0x00 0x5e 0x00 0x00 0x01 0x00 > 0x00 > 0x7fffdba33778: 0x43 0x59 0xf7 0xaa 0x06 0x74 0x00 > 0x88 > 0x7fffdba33780: 0x01 0x00 0x5e 0x00 0x00 0x01 0x00 > 0x00 > 0x7fffdba33788: 0x00 0x40 0x1b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33790: 0x40 0x3f 0x1b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba33798: 0x00 0x40 0x1b 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba337a0: 0xf0 0x37 0xf8 0x07 0x00 0x00 0x00 > 0x00 > 0x7fffdba337a8: 0xc0 0x38 0xf8 0x07 0x00 0x00 0x00 > 0x00 > 0x7fffdba337b0: 0xc0 0x44 0x3a 0x08 0x00 0x00 0x00 > 0x00 > 0x7fffdba337b8: 0x6d 0x11 0x4c 0x00 0x01 0x00 > > >> >>> virtio_net_handle_ctrl (1536771438): class 0x0 cmd 0x0 cnt 1 status 0x0 >>> >>> Here is an unsuccessful run - when it happens it then seems to loop forever >>> though - retrying does not help: >>> >>> virtio_net_handle_ctrl (1536771600): in 1/1, out 0/0 >>> virtio_net_handle_ctrl (1536771600): in 1/1, out 0/0 >>> virtio_net_handle_ctrl (1536771601): in 1/1, out 0/0 >> >> Weird. It's of course possible that ioeventfd triggers >> some race in the driver that does not trigger otherwise, >> but it does seem suspicious. >> >> Try to dump the descriptors as they are read? > > "Successful" run: > > virtqueue_pop: flags 0x1 addr 0x7bc33760 len 0x2 > virtio_net_handle_ctrl (1536818823): in 1/1, out 2/400 > virtio_net_handle_ctrl (1536818823): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7bc33580 len 0x2 > virtio_net_handle_ctrl (1536818823): in 1/1, out 2/400 > virtio_net_handle_ctrl (1536818823): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7cd42df0 len 0xc > virtqueue_pop: flags 0x2 addr 0x7ce00000 len 0x800 > virtqueue_pop: flags 0x1 addr 0x7cd429f0 len 0xc > virtqueue_pop: flags 0x2 addr 0x7cdfe800 len 0x800 > virtqueue_pop: flags 0x1 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536818823): in 1/2, out 4/799 > virtio_net_handle_ctrl (1536818823): class 0x1 cmd 0x0 cnt 3 status 0x1 > virtqueue_pop: flags 0x1 addr 0x7ce28df0 len 0xc > virtqueue_pop: flags 0x1 addr 0x7bc33580 len 0x2 > virtio_net_handle_ctrl (1536818823): in 1/1, out 2/400 > virtio_net_handle_ctrl (1536818823): class 0x0 cmd 0x0 cnt 1 status 0x0 > > Unsuccessful run: > > virtqueue_pop: flags 0x1 addr 0x7bc33760 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/1, out 2/400 > virtio_net_handle_ctrl (1536819375): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7bc33580 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/1, out 2/400 > virtio_net_handle_ctrl (1536819375): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7cd40df0 len 0xc > virtqueue_pop: flags 0x2 addr 0x7cdfe000 len 0x800 > virtqueue_pop: flags 0x1 addr 0x7cd409f0 len 0xc > virtqueue_pop: flags 0x2 addr 0x7cdfc800 len 0x800 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1536819375): in 1/2, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > virtqueue_pop: flags 0x2 addr 0x7bc33577 len 0x1 > virtio_net_handle_ctrl (1536819375): in 1/1, out 0/0 > > ============================================================================== > > > The following output has the same instrumentation, but this time without > ioeventfd. > > Note that the breakpoint "virtio_net_handle_mac" does not trigger at all, no > class 1 ctrl. > > The run is successful, and no errors. > > (gdb) b virtio_net_handle_mac > Breakpoint 1 at 0x37d7c7: file /home/claudio/git/qemu/hw/net/virtio-net.c, > line 800. > (gdb) r > Starting program: /usr/local/bin/qemu-system-x86_64 -machine > pc,accel=kvm,kernel_irqchip=on -smp 2 -m 2048 -display none -nodefconfig > -nodefaults -chardev stdio,mux=on,id=char0 -serial chardev:char0 -monitor > none -mon chardev=char0,mode=readline -netdev > user,id=user0,hostfwd=udp::9004-:9004 -device virtio-net,netdev=user0 usb.img > > virtqueue_pop: flags 0x1 addr 0x7bc33760 len 0x2 > virtio_net_handle_ctrl (1537166452): in 1/1, out 2/400 > virtio_net_handle_ctrl (1537166452): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7bc33580 len 0x2 > virtio_net_handle_ctrl (1537166452): in 1/1, out 2/400 > virtio_net_handle_ctrl (1537166452): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7cd42df0 len 0xc > virtqueue_pop: flags 0x2 addr 0x7ce00000 len 0x800 > virtqueue_pop: flags 0x1 addr 0x7cd429f0 len 0xc > virtqueue_pop: flags 0x2 addr 0x7cdfe800 len 0x800 > virtqueue_pop: flags 0x1 addr 0x7bc335d0 len 0x2 > virtio_net_handle_ctrl (1537166452): in 1/1, out 2/400 > virtio_net_handle_ctrl (1537166452): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7bc33580 len 0x2 > virtio_net_handle_ctrl (1537166452): in 1/1, out 2/400 > virtio_net_handle_ctrl (1537166452): class 0x0 cmd 0x0 cnt 1 status 0x0 > virtqueue_pop: flags 0x1 addr 0x7ce28df0 len 0xc > > # (QNX functional) > > > Thank you, > > Claudio > > -- B.Sc.CS Claudio Fontana Senior Software Developer GLIWA GmbH embedded systems Pollinger Str. 1 D - 82362 Weilheim i.OB. tel: +49-881-13 85 22-45 fax: +49-881-13 85 22-99 email: claudio.font...@gliwa.com web: www.gliwa.com Geschäftsführer (CEO) Peter Gliwa Amtsgericht München | HRB 167925 Steuernummer 119 / 127 / 50436 USt. IdNr. DE814169157 D.U.N.S. 551053924