From: Stefano Brivio <sbrivio@redhat.com>
To: Laurent Vivier <lvivier@redhat.com>
Cc: passt-dev@passt.top
Subject: Re: [PATCH v8 8/8] test: Add tests for passt in vhost-user mode
Date: Wed, 16 Oct 2024 11:47:28 +0200 [thread overview]
Message-ID: <20241016114728.6ea430f8@elisabeth> (raw)
In-Reply-To: <10fc67af-4950-44b3-b0a5-a7a5d1e209a0@redhat.com>
On Wed, 16 Oct 2024 10:06:21 +0200
Laurent Vivier <lvivier@redhat.com> wrote:
> On 15/10/2024 21:54, Stefano Brivio wrote:
> > On Thu, 10 Oct 2024 14:29:02 +0200
> > Laurent Vivier <lvivier@redhat.com> wrote:
> >
> >> From: Stefano Brivio <sbrivio@redhat.com>
> >>
> >> Run functional and performance tests for vhost-user mode as well. For
> >> functional tests, we add passt_vu and passt_vu_in_ns as symbolic links
> >> to their non-vhost-user counterparts, as no differences are intended
> >> but we want to distinguish them in test logs.
> >>
> >> [...]
> >>
> >> diff --git a/test/two_guests_vu b/test/two_guests_vu
> >> new file mode 120000
> >> index 000000000000..144b7cac5438
> >> --- /dev/null
> >> +++ b/test/two_guests_vu
> >> @@ -0,0 +1 @@
> >> +test/two_guests
> >> \ No newline at end of file
> >
> > Oops, this link is wrong: it works if you execute the tests from the
> > top git directory, but not if you run them from test/. It should simply
> > point to 'two_guests', not to 'test/two_guests'.
> >
> > For some reason, even with that fixed, v8 fails for me on that test:
> > 'dhclient -6 eth0' gets stuck in guest #2 (it works in guest #1). I
> > still need to debug that. I'm fairly sure that v6 or v7 worked.
>
> Perhaps because of this:
>
> diff --git a/test/lib/setup b/test/lib/setup
> index 3409bd29cd81..580825f1f9a7 100755
> --- a/test/lib/setup
> +++ b/test/lib/setup
> @@ -264,7 +264,7 @@ setup_two_guests() {
> -device virtio-net,netdev=v \
> -object memory-backend-memfd,id=m,share=on,size=${__vmem} \
> -numa node,memdev=m"
> - __qemu_netdev1=" \
> + __qemu_netdev2=" \
> -chardev socket,id=c,path=${STATESETUP}/passt_2.socket \
> -netdev vhost-user,id=v,chardev=c \
> -device virtio-net,netdev=v \
Oops, right, nice catch. All tests pass for me now.
It was broken already in the first version I sent, I wonder how it ever
worked for me... I guess I had some local changes on top.
--
Stefano
prev parent reply other threads:[~2024-10-16 9:47 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-10 12:28 [PATCH v8 0/8] Add vhost-user support to passt. (part 3) Laurent Vivier
2024-10-10 12:28 ` [PATCH v8 1/8] packet: replace struct desc by struct iovec Laurent Vivier
2024-10-10 12:28 ` [PATCH v8 2/8] vhost-user: introduce virtio API Laurent Vivier
2024-10-10 12:28 ` [PATCH v8 3/8] vhost-user: introduce vhost-user API Laurent Vivier
2024-10-10 12:28 ` [PATCH v8 4/8] udp: Prepare udp.c to be shared with vhost-user Laurent Vivier
2024-10-14 4:29 ` David Gibson
2024-10-10 12:28 ` [PATCH v8 5/8] tcp: Export headers functions Laurent Vivier
2024-10-14 4:29 ` David Gibson
2024-10-10 12:29 ` [PATCH v8 6/8] passt: rename tap_sock_init() to tap_backend_init() Laurent Vivier
2024-10-14 4:30 ` David Gibson
2024-10-14 22:38 ` Stefano Brivio
2024-10-10 12:29 ` [PATCH v8 7/8] vhost-user: add vhost-user Laurent Vivier
2024-10-15 3:23 ` David Gibson
2024-10-16 10:07 ` Laurent Vivier
2024-10-16 16:26 ` Stefano Brivio
2024-10-15 19:54 ` Stefano Brivio
2024-10-16 0:41 ` David Gibson
2024-10-17 0:10 ` Stefano Brivio
2024-10-17 11:25 ` Stefano Brivio
2024-10-17 11:54 ` Laurent Vivier
2024-10-17 17:18 ` Laurent Vivier
2024-10-17 17:25 ` Laurent Vivier
2024-10-17 17:33 ` Stefano Brivio
2024-10-17 21:21 ` Stefano Brivio
2024-10-22 12:59 ` Laurent Vivier
2024-10-22 13:19 ` Stefano Brivio
2024-10-22 18:19 ` Stefano Brivio
2024-10-22 18:22 ` Stefano Brivio
2024-10-23 15:27 ` Laurent Vivier
2024-10-23 16:23 ` Stefano Brivio
2024-10-17 0:10 ` Stefano Brivio
2024-10-17 7:28 ` Laurent Vivier
2024-10-17 8:33 ` Stefano Brivio
2024-11-14 10:20 ` Laurent Vivier
2024-11-14 14:23 ` Stefano Brivio
2024-11-14 15:16 ` Laurent Vivier
2024-11-14 15:38 ` Stefano Brivio
2024-11-14 10:23 ` Laurent Vivier
2024-11-14 14:23 ` Stefano Brivio
2024-11-15 8:30 ` Laurent Vivier
2024-11-15 10:08 ` Stefano Brivio
2024-11-14 10:29 ` Laurent Vivier
2024-11-14 14:23 ` Stefano Brivio
2024-11-15 11:13 ` Laurent Vivier
2024-11-15 11:23 ` Stefano Brivio
2024-10-10 12:29 ` [PATCH v8 8/8] test: Add tests for passt in vhost-user mode Laurent Vivier
2024-10-15 3:40 ` David Gibson
2024-10-15 19:54 ` Stefano Brivio
2024-10-16 8:06 ` Laurent Vivier
2024-10-16 9:47 ` Stefano Brivio [this message]
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=20241016114728.6ea430f8@elisabeth \
--to=sbrivio@redhat.com \
--cc=lvivier@redhat.com \
--cc=passt-dev@passt.top \
/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.
Code repositories for project(s) associated with this public inbox
https://passt.top/passt
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 IMAP folder(s).