From: Stefano Garzarella <sgarzare@redhat.com>
To: Arseny Krasnov <arseny.krasnov@kaspersky.com>
Cc: Andra Paraschiv <andraprs@amazon.com>,
kvm@vger.kernel.org, "Michael S. Tsirkin" <mst@redhat.com>,
netdev@vger.kernel.org, stsp2@yandex.ru,
linux-kernel@vger.kernel.org,
virtualization@lists.linux-foundation.org, oxffffaa@gmail.com,
Norbert Slusarek <nslusarek@gmx.net>,
Stefan Hajnoczi <stefanha@redhat.com>,
Colin Ian King <colin.king@canonical.com>,
Jakub Kicinski <kuba@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
Jorgen Hansen <jhansen@vmware.com>
Subject: Re: [RFC PATCH v6 17/22] virtio/vsock: SEQPACKET feature bit support
Date: Mon, 15 Mar 2021 12:29:27 +0100 [thread overview]
Message-ID: <20210315112927.4aygxeby2f7p3mju@steredhat> (raw)
In-Reply-To: <20210307180404.3466602-1-arseny.krasnov@kaspersky.com>
On Sun, Mar 07, 2021 at 09:04:01PM +0300, Arseny Krasnov wrote:
>This adds handling of SEQPACKET bit: guest tries to negotiate it
>with vhost.
>
>Signed-off-by: Arseny Krasnov <arseny.krasnov@kaspersky.com>
>---
> net/vmw_vsock/virtio_transport.c | 5 +++++
> 1 file changed, 5 insertions(+)
Also for this patch I think is better to move after we set the
seqpackets ops.
>
>diff --git a/net/vmw_vsock/virtio_transport.c b/net/vmw_vsock/virtio_transport.c
>index 2700a63ab095..41c5d0a31e08 100644
>--- a/net/vmw_vsock/virtio_transport.c
>+++ b/net/vmw_vsock/virtio_transport.c
>@@ -612,6 +612,10 @@ static int virtio_vsock_probe(struct virtio_device *vdev)
> rcu_assign_pointer(the_virtio_vsock, vsock);
>
> mutex_unlock(&the_virtio_vsock_mutex);
>+
>+ if (vdev->features & (1ULL << VIRTIO_VSOCK_F_SEQPACKET))
>+ virtio_transport.seqpacket_allow = true;
>+
> return 0;
>
> out:
>@@ -695,6 +699,7 @@ static struct virtio_device_id id_table[] = {
> };
>
> static unsigned int features[] = {
>+ VIRTIO_VSOCK_F_SEQPACKET
> };
>
> static struct virtio_driver virtio_vsock_driver = {
>--
>2.25.1
>
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization
next prev parent reply other threads:[~2021-03-15 11:29 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20210307175722.3464068-1-arseny.krasnov@kaspersky.com>
2021-03-10 10:06 ` [RFC PATCH v6 00/22] virtio/vsock: introduce SOCK_SEQPACKET support Stefano Garzarella
[not found] ` <20210307175843.3464468-1-arseny.krasnov@kaspersky.com>
2021-03-12 14:38 ` [RFC PATCH v6 01/22] af_vsock: update functions for connectible socket Stefano Garzarella
[not found] ` <20210307175905.3464610-1-arseny.krasnov@kaspersky.com>
2021-03-12 14:40 ` [RFC PATCH v6 02/22] af_vsock: separate wait data loop Stefano Garzarella
[not found] ` <20210307180030.3465161-1-arseny.krasnov@kaspersky.com>
2021-03-12 15:10 ` [RFC PATCH v6 06/22] af_vsock: implement send logic for SEQPACKET Stefano Garzarella
[not found] ` <20210307175948.3464885-1-arseny.krasnov@kaspersky.com>
2021-03-12 15:01 ` [RFC PATCH v6 04/22] af_vsock: implement SEQPACKET receive loop Stefano Garzarella
2021-03-12 15:17 ` Stefano Garzarella
[not found] ` <20210307180235.3465973-1-arseny.krasnov@kaspersky.com>
2021-03-12 15:20 ` [RFC PATCH v6 12/22] virtio/vsock: fetch length for SEQPACKET record Stefano Garzarella
[not found] ` <20210307180050.3465297-1-arseny.krasnov@kaspersky.com>
2021-03-12 15:28 ` [RFC PATCH v6 07/22] af_vsock: rest of SEQPACKET support Stefano Garzarella
[not found] ` <20210307180108.3465422-1-arseny.krasnov@kaspersky.com>
2021-03-12 15:29 ` [RFC PATCH v6 08/22] af_vsock: update comments for stream sockets Stefano Garzarella
[not found] ` <20210307180125.3465547-1-arseny.krasnov@kaspersky.com>
2021-03-12 15:31 ` [RFC PATCH v6 09/22] virtio/vsock: set packet's type in virtio_transport_send_pkt_info() Stefano Garzarella
[not found] ` <20210307180147.3465680-1-arseny.krasnov@kaspersky.com>
2021-03-12 15:33 ` [RFC PATCH v6 10/22] virtio/vsock: simplify credit update function API Stefano Garzarella
[not found] ` <20210307180204.3465806-1-arseny.krasnov@kaspersky.com>
2021-03-15 11:02 ` [RFC PATCH v6 11/22] virtio/vsock: dequeue callback for SOCK_SEQPACKET Stefano Garzarella
[not found] ` <20210307180253.3466110-1-arseny.krasnov@kaspersky.com>
2021-03-15 11:15 ` [RFC PATCH v6 13/22] virtio/vsock: add SEQPACKET receive logic Stefano Garzarella
[not found] ` <20210307180312.3466235-1-arseny.krasnov@kaspersky.com>
2021-03-15 11:25 ` [RFC PATCH v6 14/22] virtio/vsock: rest of SOCK_SEQPACKET support Stefano Garzarella
[not found] ` <20210307180344.3466469-1-arseny.krasnov@kaspersky.com>
2021-03-15 11:28 ` [RFC PATCH v6 16/22] vhost/vsock: SEQPACKET feature bit support Stefano Garzarella
[not found] ` <20210307180404.3466602-1-arseny.krasnov@kaspersky.com>
2021-03-15 11:29 ` Stefano Garzarella [this message]
2021-03-15 11:40 ` [RFC PATCH v6 00/22] virtio/vsock: introduce SOCK_SEQPACKET support Stefano Garzarella
[not found] ` <c4be25c6-8a53-7947-735b-2afacd989120@kaspersky.com>
[not found] ` <e2c50a79-0063-71ee-b573-b267ee87e7c5@kaspersky.com>
2021-03-16 8:08 ` Stefano Garzarella
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=20210315112927.4aygxeby2f7p3mju@steredhat \
--to=sgarzare@redhat.com \
--cc=andraprs@amazon.com \
--cc=arseny.krasnov@kaspersky.com \
--cc=colin.king@canonical.com \
--cc=davem@davemloft.net \
--cc=jhansen@vmware.com \
--cc=kuba@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=nslusarek@gmx.net \
--cc=oxffffaa@gmail.com \
--cc=stefanha@redhat.com \
--cc=stsp2@yandex.ru \
--cc=virtualization@lists.linux-foundation.org \
/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