From: Jason Wang <jasowang@redhat.com>
To: qemu-devel@nongnu.org, lulu@redhat.com
Cc: rdunlap@infradead.org, mst@redhat.com, mhabets@solarflare.com,
rob.miller@broadcom.com, saugatm@xilinx.com, armbru@redhat.com,
hch@infradead.org, eperezma@redhat.com, jgg@mellanox.com,
shahafs@mellanox.com, kevin.tian@intel.com, parav@mellanox.com,
vmireyno@marvell.com, cunming.liang@intel.com, gdawar@xilinx.com,
jiri@mellanox.com, xiao.w.wang@intel.com, stefanha@redhat.com,
zhihong.wang@intel.com, maxime.coquelin@redhat.com,
aadam@redhat.com, cohuck@redhat.com, hanand@xilinx.com,
lingshan.zhu@intel.com
Subject: Re: [PATCH v2 00/12] vDPA support in qemu
Date: Wed, 1 Jul 2020 13:29:17 +0800 [thread overview]
Message-ID: <db885de8-9671-b847-f2f4-b67b245f1c9e@redhat.com> (raw)
In-Reply-To: <159354041626.15477.8604156689503337818@d1fd068a5071>
On 2020/7/1 上午2:06, no-reply@patchew.org wrote:
> Patchew URL: https://patchew.org/QEMU/20200630174937.25560-1-lulu@redhat.com/
>
>
>
> Hi,
>
> This series failed the docker-mingw@fedora build test. Please find the testing commands and
> their output below. If you have Docker installed, you can probably reproduce it
> locally.
>
> === TEST SCRIPT BEGIN ===
> #! /bin/bash
> export ARCH=x86_64
> make docker-image-fedora V=1 NETWORK=1
> time make docker-test-mingw@fedora J=14 NETWORK=1
Please fix this. You can reproduce this with the above commands.
Thanks
> === TEST SCRIPT END ===
>
> /tmp/qemu-test/src/hw/net/virtio-net.c:173: undefined reference to `vhost_dev_set_config'
> /usr/lib/gcc/x86_64-w64-mingw32/9.2.1/../../../../x86_64-w64-mingw32/bin/ld: hw/net/virtio-net.o: in function `virtio_net_get_config':
> /tmp/qemu-test/src/hw/net/virtio-net.c:149: undefined reference to `vhost_dev_get_config'
> collect2: error: ld returned 1 exit status
> make[1]: *** [Makefile:208: qemu-system-x86_64w.exe] Error 1
> make: *** [Makefile:527: x86_64-softmmu/all] Error 2
> make: *** Waiting for unfinished jobs....
> LINK aarch64-softmmu/qemu-system-aarch64w.exe
> /usr/lib/gcc/x86_64-w64-mingw32/9.2.1/../../../../x86_64-w64-mingw32/bin/ld: hw/net/virtio-net.o: in function `virtio_net_set_config':
> /tmp/qemu-test/src/hw/net/virtio-net.c:173: undefined reference to `vhost_dev_set_config'
> /usr/lib/gcc/x86_64-w64-mingw32/9.2.1/../../../../x86_64-w64-mingw32/bin/ld: hw/net/virtio-net.o: in function `virtio_net_get_config':
> /tmp/qemu-test/src/hw/net/virtio-net.c:149: undefined reference to `vhost_dev_get_config'
> collect2: error: ld returned 1 exit status
> make[1]: *** [Makefile:208: qemu-system-aarch64w.exe] Error 1
> make: *** [Makefile:527: aarch64-softmmu/all] Error 2
> Traceback (most recent call last):
> File "./tests/docker/docker.py", line 669, in <module>
> sys.exit(main())
> ---
> raise CalledProcessError(retcode, cmd)
> subprocess.CalledProcessError: Command '['sudo', '-n', 'docker', 'run', '--label', 'com.qemu.instance.uuid=9f5def1ac1a840deb219e8827020f24d', '-u', '1001', '--security-opt', 'seccomp=unconfined', '--rm', '-e', 'TARGET_LIST=', '-e', 'EXTRA_CONFIGURE_OPTS=', '-e', 'V=', '-e', 'J=14', '-e', 'DEBUG=', '-e', 'SHOW_ENV=', '-e', 'CCACHE_DIR=/var/tmp/ccache', '-v', '/home/patchew/.cache/qemu-docker-ccache:/var/tmp/ccache:z', '-v', '/var/tmp/patchew-tester-tmp-lwyumgcs/src/docker-src.2020-06-30-14.01.04.32102:/var/tmp/qemu:z,ro', 'qemu:fedora', '/var/tmp/qemu/run', 'test-mingw']' returned non-zero exit status 2.
> filter=--filter=label=com.qemu.instance.uuid=9f5def1ac1a840deb219e8827020f24d
> make[1]: *** [docker-run] Error 1
> make[1]: Leaving directory `/var/tmp/patchew-tester-tmp-lwyumgcs/src'
> make: *** [docker-run-test-mingw@fedora] Error 2
>
> real 5m52.723s
> user 0m8.824s
>
>
> The full log is available at
> http://patchew.org/logs/20200630174937.25560-1-lulu@redhat.com/testing.docker-mingw@fedora/?type=message.
> ---
> Email generated automatically by Patchew [https://patchew.org/].
> Please send your feedback to patchew-devel@redhat.com
next prev parent reply other threads:[~2020-07-01 5:30 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-30 17:49 [PATCH v2 00/12] vDPA support in qemu Cindy Lu
2020-06-30 17:49 ` [PATCH v2 01/12] net: introduce qemu_get_peer Cindy Lu
2020-06-30 17:49 ` [PATCH v2 02/12] vhost_net: use the function qemu_get_peer Cindy Lu
2020-06-30 17:49 ` [PATCH v2 03/12] virtio-bus: introduce queue_enabled method Cindy Lu
2020-06-30 17:49 ` [PATCH v2 04/12] virtio-pci: implement " Cindy Lu
2020-06-30 17:49 ` [PATCH v2 05/12] vhost: check the existence of vhost_set_iotlb_callback Cindy Lu
2020-06-30 17:49 ` [PATCH v2 06/12] vhost: introduce new VhostOps vhost_dev_start Cindy Lu
2020-06-30 17:49 ` [PATCH v2 07/12] vhost: implement vhost_dev_start method Cindy Lu
2020-06-30 17:49 ` [PATCH v2 08/12] vhost: introduce new VhostOps vhost_vq_get_addr Cindy Lu
2020-06-30 17:49 ` [PATCH v2 09/12] vhost: implement vhost_vq_get_addr method Cindy Lu
2020-06-30 17:49 ` [PATCH v2 10/12] vhost: introduce new VhostOps vhost_get_device_id Cindy Lu
2020-06-30 17:49 ` [PATCH v2 11/12] vhost-vdpa: introduce vhost-vdpa backend Cindy Lu
2020-07-01 4:21 ` Jason Wang
2020-07-01 9:17 ` Cindy Lu
2020-06-30 17:49 ` [PATCH v2 12/12] vhost-vdpa: introduce vhost-vdpa net client Cindy Lu
2020-07-01 14:24 ` Eric Blake
2020-07-01 14:26 ` Cindy Lu
2020-06-30 18:06 ` [PATCH v2 00/12] vDPA support in qemu no-reply
2020-07-01 5:29 ` Jason Wang [this message]
2020-07-01 5:30 ` Cindy Lu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=db885de8-9671-b847-f2f4-b67b245f1c9e@redhat.com \
--to=jasowang@redhat.com \
--cc=aadam@redhat.com \
--cc=armbru@redhat.com \
--cc=cohuck@redhat.com \
--cc=cunming.liang@intel.com \
--cc=eperezma@redhat.com \
--cc=gdawar@xilinx.com \
--cc=hanand@xilinx.com \
--cc=hch@infradead.org \
--cc=jgg@mellanox.com \
--cc=jiri@mellanox.com \
--cc=kevin.tian@intel.com \
--cc=lingshan.zhu@intel.com \
--cc=lulu@redhat.com \
--cc=maxime.coquelin@redhat.com \
--cc=mhabets@solarflare.com \
--cc=mst@redhat.com \
--cc=parav@mellanox.com \
--cc=qemu-devel@nongnu.org \
--cc=rdunlap@infradead.org \
--cc=rob.miller@broadcom.com \
--cc=saugatm@xilinx.com \
--cc=shahafs@mellanox.com \
--cc=stefanha@redhat.com \
--cc=vmireyno@marvell.com \
--cc=xiao.w.wang@intel.com \
--cc=zhihong.wang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).