From: "Michael S. Tsirkin" <mst@redhat.com>
To: Bobby Eshleman <bobby.eshleman@bytedance.com>
Cc: linux-hyperv@vger.kernel.org,
Stefan Hajnoczi <stefanha@redhat.com>,
kvm@vger.kernel.org,
VMware PV-Drivers Reviewers <pv-drivers@vmware.com>,
Simon Horman <simon.horman@corigine.com>,
virtualization@lists.linux-foundation.org,
Eric Dumazet <edumazet@google.com>,
Dan Carpenter <dan.carpenter@linaro.org>,
Xuan Zhuo <xuanzhuo@linux.alibaba.com>,
Wei Liu <wei.liu@kernel.org>, Dexuan Cui <decui@microsoft.com>,
Bryan Tan <bryantan@vmware.com>, Jakub Kicinski <kuba@kernel.org>,
Paolo Abeni <pabeni@redhat.com>,
Haiyang Zhang <haiyangz@microsoft.com>,
Krasnov Arseniy <oxffffaa@gmail.com>,
Vishnu Dasa <vdasa@vmware.com>,
Jiang Wang <jiang.wang@bytedance.com>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
bpf@vger.kernel.org, "David S. Miller" <davem@davemloft.net>
Subject: Re: [PATCH RFC net-next v5 10/14] virtio/vsock: add VIRTIO_VSOCK_F_DGRAM feature bit
Date: Wed, 26 Jul 2023 14:38:08 -0400 [thread overview]
Message-ID: <20230726143736-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <20230413-b4-vsock-dgram-v5-10-581bd37fdb26@bytedance.com>
On Wed, Jul 19, 2023 at 12:50:14AM +0000, Bobby Eshleman wrote:
> This commit adds a feature bit for virtio vsock to support datagrams.
>
> Signed-off-by: Jiang Wang <jiang.wang@bytedance.com>
> Signed-off-by: Bobby Eshleman <bobby.eshleman@bytedance.com>
> ---
> include/uapi/linux/virtio_vsock.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/include/uapi/linux/virtio_vsock.h b/include/uapi/linux/virtio_vsock.h
> index 331be28b1d30..27b4b2b8bf13 100644
> --- a/include/uapi/linux/virtio_vsock.h
> +++ b/include/uapi/linux/virtio_vsock.h
> @@ -40,6 +40,7 @@
>
> /* The feature bitmap for virtio vsock */
> #define VIRTIO_VSOCK_F_SEQPACKET 1 /* SOCK_SEQPACKET supported */
> +#define VIRTIO_VSOCK_F_DGRAM 3 /* SOCK_DGRAM supported */
>
> struct virtio_vsock_config {
> __le64 guest_cid;
pls do not add interface without first getting it accepted in the
virtio spec.
> --
> 2.30.2
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization
next parent reply other threads:[~2023-07-26 18:38 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20230413-b4-vsock-dgram-v5-0-581bd37fdb26@bytedance.com>
[not found] ` <20230413-b4-vsock-dgram-v5-10-581bd37fdb26@bytedance.com>
2023-07-26 18:38 ` Michael S. Tsirkin [this message]
2023-07-27 7:48 ` [PATCH RFC net-next v5 10/14] virtio/vsock: add VIRTIO_VSOCK_F_DGRAM feature bit Stefano Garzarella
[not found] ` <ZMiKXh173b/3Pj1L@bullseye>
2023-08-01 16:04 ` Stefano Garzarella
[not found] ` <20230413-b4-vsock-dgram-v5-11-581bd37fdb26@bytedance.com>
2023-07-26 18:40 ` [PATCH RFC net-next v5 11/14] vhost/vsock: implement datagram support Michael S. Tsirkin
2023-07-27 7:51 ` [PATCH RFC net-next v5 00/14] virtio/vsock: support datagrams Michael S. Tsirkin
[not found] ` <20230413-b4-vsock-dgram-v5-3-581bd37fdb26@bytedance.com>
[not found] ` <43fad7ab-2ca9-608e-566f-80e607d2d6b8@gmail.com>
[not found] ` <ZMrXrBHuaEcpxGwA@bullseye>
[not found] ` <ZMr6giur//A1hrND@bullseye>
2023-08-03 12:42 ` [PATCH RFC net-next v5 03/14] af_vsock: support multi-transport datagrams Stefano Garzarella
[not found] ` <ZMv40KJo/9Pd2Lik@bullseye>
2023-08-04 14:11 ` 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=20230726143736-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=bobby.eshleman@bytedance.com \
--cc=bpf@vger.kernel.org \
--cc=bryantan@vmware.com \
--cc=dan.carpenter@linaro.org \
--cc=davem@davemloft.net \
--cc=decui@microsoft.com \
--cc=edumazet@google.com \
--cc=haiyangz@microsoft.com \
--cc=jiang.wang@bytedance.com \
--cc=kuba@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linux-hyperv@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=oxffffaa@gmail.com \
--cc=pabeni@redhat.com \
--cc=pv-drivers@vmware.com \
--cc=simon.horman@corigine.com \
--cc=stefanha@redhat.com \
--cc=vdasa@vmware.com \
--cc=virtualization@lists.linux-foundation.org \
--cc=wei.liu@kernel.org \
--cc=xuanzhuo@linux.alibaba.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).