Re: [PATCH net v2 3/6] vsock/test: Introduce vsock_bind()
From: Luigi Leonardi <hidden>
Date: 2025-01-23 11:02:43
On Wed, Jan 22, 2025 at 09:11:30PM +0100, Michal Luczaj wrote:
On 1/22/25 17:01, Luigi Leonardi wrote:quoted
On Tue, Jan 21, 2025 at 03:44:04PM +0100, Michal Luczaj wrote:quoted
Add a helper for socket()+bind(). Adapt callers. Reviewed-by: Stefano Garzarella <sgarzare@redhat.com> Signed-off-by: Michal Luczaj <redacted> --- tools/testing/vsock/util.c | 56 +++++++++++++++++----------------------- tools/testing/vsock/util.h | 1 + tools/testing/vsock/vsock_test.c | 17 +----------- 3 files changed, 25 insertions(+), 49 deletions(-)diff --git a/tools/testing/vsock/util.c b/tools/testing/vsock/util.c index 34e9dac0a105f8aeb8c9af379b080d5ce8cb2782..31ee1767c8b73c05cfd219c3d520a677df6e66a6 100644 --- a/tools/testing/vsock/util.c +++ b/tools/testing/vsock/util.c@@ -96,33 +96,42 @@ void vsock_wait_remote_close(int fd)close(epollfd); } -/* Bind to <bind_port>, connect to <cid, port> and return the file descriptor. */ -int vsock_bind_connect(unsigned int cid, unsigned int port, unsigned int bind_port, int type)If you need to send a v3, it would be nice to have a comment for vsock_bind, as there used to be one.Comment for vsock_bind_connect() remains, see below. As for vsock_bind(), perhaps it's time to start using kernel-doc comments?
This is a good idea! @Stefano WDYT? Sticking to tests, IIRC someone mentioned (maybe Stefano?) about moving to selftests for vsock, but I don't think it's going to happen anytime soon.
v3 isn't coming, it seems, but I'll comment the function later.
Thank you :) Cheers, Luigi