Re: [PATCH net-next v1] vsock/test: print type for SOCK_SEQPACKET

From: Michael S. Tsirkin
Date: Thu Jan 25 2024 - 17:49:22 EST


On Wed, Jan 24, 2024 at 10:32:55PM +0300, Arseniy Krasnov wrote:
> SOCK_SEQPACKET is supported for virtio transport, so do not interpret
> such type of socket as unknown.
>
> Signed-off-by: Arseniy Krasnov <avkrasnov@xxxxxxxxxxxxxxxxx>


Acked-by: Michael S. Tsirkin <mst@xxxxxxxxxx>

> ---
> tools/testing/vsock/vsock_diag_test.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/tools/testing/vsock/vsock_diag_test.c b/tools/testing/vsock/vsock_diag_test.c
> index 5e6049226b77..17aeba7cbd14 100644
> --- a/tools/testing/vsock/vsock_diag_test.c
> +++ b/tools/testing/vsock/vsock_diag_test.c
> @@ -39,6 +39,8 @@ static const char *sock_type_str(int type)
> return "DGRAM";
> case SOCK_STREAM:
> return "STREAM";
> + case SOCK_SEQPACKET:
> + return "SEQPACKET";
> default:
> return "INVALID TYPE";
> }
> --
> 2.25.1