All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arseny Krasnov <arseny.krasnov@kaspersky.com>
To: Stefano Garzarella <sgarzare@redhat.com>
Cc: "Michael S. Tsirkin" <mst@redhat.com>,
	"cohuck@redhat.com" <cohuck@redhat.com>,
	"virtio-comment@lists.oasis-open.org"
	<virtio-comment@lists.oasis-open.org>,
	Stefan Hajnoczi <stefanha@redhat.com>,
	Jason Wang <jasowang@redhat.com>,
	"David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>,
	Jorgen Hansen <jhansen@vmware.com>,
	Colin Ian King <colin.king@canonical.com>,
	Norbert Slusarek <nslusarek@gmx.net>,
	Andra Paraschiv <andraprs@amazon.com>,
	Jeff Vander Stoep <jeffv@google.com>,
	Alexander Popov <alex.popov@linux.com>,
	"virtualization@lists.linux-foundation.org"
	<virtualization@lists.linux-foundation.org>,
	"oxffffaa@gmail.com" <oxffffaa@gmail.com>
Subject: Re: [virtio-comment] Re: [RFC PATCH v5 2/2] virtio-vsock: SOCK_SEQPACKET description
Date: Thu, 22 Apr 2021 12:45:01 +0300	[thread overview]
Message-ID: <e61c40f3-bdfd-86ce-2949-02dde1ff44a0@kaspersky.com> (raw)
In-Reply-To: <20210422090005.krhgunvunfu2er5u@steredhat>


On 22.04.2021 12:00, Stefano Garzarella wrote:
> On Wed, Apr 21, 2021 at 06:09:21PM +0300, Arseny Krasnov wrote:
>> On 21.04.2021 12:54, Stefano Garzarella wrote:
>>> On Wed, Apr 21, 2021 at 04:24:36AM -0400, Michael S. Tsirkin wrote:
>>>> On Wed, Apr 21, 2021 at 09:45:23AM +0200, Stefano Garzarella wrote:
>>>>> On Wed, Apr 14, 2021 at 09:04:47AM +0300, Arseny Krasnov wrote:
>>>>>> On 13.04.2021 22:55, Michael S. Tsirkin wrote:
>>>>>>> On Tue, Apr 13, 2021 at 05:22:44PM +0300, Arseny Krasnov wrote:
>>>>>>>> On 13.04.2021 16:10, Michael S. Tsirkin wrote:
>>>>>>>>> On Tue, Apr 13, 2021 at 03:53:29PM +0300, Arseny Krasnov wrote:
>>>>>>>>>> This adds description of SOCK_SEQPACKET socket type
>>>>>>>>>> support for virtio-vsock.
>>>>>>>>>>
>>>>>>>>>> Signed-off-by: Arseny Krasnov <arseny.krasnov@kaspersky.com>
>>>>>>>>>> ---
>>>>>>>>>>  virtio-vsock.tex | 26 +++++++++++++++++++++-----
>>>>>>>>>>  1 file changed, 21 insertions(+), 5 deletions(-)
>>>>>>>>>>
>>>>>>>>>> diff --git a/virtio-vsock.tex b/virtio-vsock.tex
>>>>>>>>>> index ad57f9d..00e59cc 100644
>>>>>>>>>> --- a/virtio-vsock.tex
>>>>>>>>>> +++ b/virtio-vsock.tex
>>>>>>>>>> @@ -16,7 +16,10 @@ \subsection{Virtqueues}\label{sec:Device Types / Socket Device / Virtqueues}
>>>>>>>>>>
>>>>>>>>>>  \subsection{Feature bits}\label{sec:Device Types / Socket Device / Feature bits}
>>>>>>>>>>
>>>>>>>>>> -There are currently no feature bits defined for this device.
>>>>>>>>>> +\begin{description}
>>>>>>>>>> +\item VIRTIO_VSOCK_F_SEQPACKET (0) SOCK_SEQPACKET socket type is
>>>>>>>>>> +    supported.
>>>>>>>>> Does it make sense to only support seqpacket and not stream?
>>>>>>>>> I am guessing not since seqpacket is more or less
>>>>>>>>> a superset ...
>>>>>>>> You mean, this sentence must be "Both SOCK_SEQPACKET and SOCK_STREAM types
>>>>>>>>
>>>>>>>> are supported"?
>>>>>>> No. I am asking whether we want a feature bit for SOCK_STREAM too?
>>>>>> I think  there is no practical sense in SOCK_STREAM bit, because SOCK_SEQPACKET
>>>>>>
>>>>>> is stream + message boundaries and potential DGRAM is completely different
>>>>>>
>>>>>> thing. Of course i can implement it in my patches and also add it to spec patch, but  i see only
>>>>>>
>>>>>> esthetic in this: all three socket types have own feature bits.
>>>>>>
>>>>> I agree that it may make sense to have a bit for SOCK_STREAM. For example we
>>>>> may have devices in the future that want to implement only DGRAM for
>>>>> simplicity.
>>>>>
>>>>> I'm just worried about backwards compatibility with current devices where we
>>>>> don't have any feature bit.
>>>>>
>>>>> Should we add a negative feature flag? (e.g. VIRTIO_VSOCK_F_NO_STREAM)
>>>>> I don't like it much, but I can't think of anything better.
>>>>>
>>>>> Thanks,
>>>>> Stefano
>>>> We can simply specify that if there are no feature bits at all then
>>>> stream is assumed supported.
>>>>
>>> oh yeah, that sounds like a good idea!
>> So it is not necessary for my SEQPACKET patchset to support STREAM in both
>> kernel and spec?
>>
> I don't think it's necessary for SEQPACKET, but I would reserve bit 0 to 
> stream.
>
> We could add a patch to this series that adds the bit for stream and 
> explains that if there is no feature bit set, then only stream is 
> supported.
>
> Or I can send it separately if you don't want to include it in the 
> series.

I can use bit 1 for SEQPACKET, keeping bit 0 free for STREAM, but

i'd like to exclude this from patchset, to make it smaller

>
> Thanks,
> Stefano
>
>

This publicly archived list offers a means to provide input to the
OASIS Virtual I/O Device (VIRTIO) TC.

In order to verify user consent to the Feedback License terms and
to minimize spam in the list archive, subscription is required
before posting.

Subscribe: virtio-comment-subscribe@lists.oasis-open.org
Unsubscribe: virtio-comment-unsubscribe@lists.oasis-open.org
List help: virtio-comment-help@lists.oasis-open.org
List archive: https://lists.oasis-open.org/archives/virtio-comment/
Feedback License: https://www.oasis-open.org/who/ipr/feedback_license.pdf
List Guidelines: https://www.oasis-open.org/policies-guidelines/mailing-lists
Committee: https://www.oasis-open.org/committees/virtio/
Join OASIS: https://www.oasis-open.org/join/


      reply	other threads:[~2021-04-22  9:45 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-13 12:52 [virtio-comment] [RFC PATCH v5 0/2] virtio-vsock: introduce SOCK_SEQPACKET description Arseny Krasnov
2021-04-13 12:53 ` [virtio-comment] [RFC PATCH v5 1/2] virtio-vsock: use C style defines for constants Arseny Krasnov
2021-04-13 12:53 ` [virtio-comment] [RFC PATCH v5 2/2] virtio-vsock: SOCK_SEQPACKET description Arseny Krasnov
2021-04-13 13:10   ` Michael S. Tsirkin
2021-04-13 13:10     ` [virtio-comment] " Michael S. Tsirkin
2021-04-13 14:22     ` Arseny Krasnov
2021-04-13 19:55       ` Michael S. Tsirkin
2021-04-13 19:55         ` [virtio-comment] " Michael S. Tsirkin
2021-04-14  6:04         ` Arseny Krasnov
2021-04-21  7:45           ` Stefano Garzarella
2021-04-21  7:45             ` [virtio-comment] " Stefano Garzarella
2021-04-21  8:24             ` Michael S. Tsirkin
2021-04-21  8:24               ` Michael S. Tsirkin
2021-04-21  9:54               ` Stefano Garzarella
2021-04-21  9:54                 ` Stefano Garzarella
2021-04-21 15:09                 ` Arseny Krasnov
2021-04-22  9:00                   ` Stefano Garzarella
2021-04-22  9:00                     ` Stefano Garzarella
2021-04-22  9:45                     ` Arseny Krasnov [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=e61c40f3-bdfd-86ce-2949-02dde1ff44a0@kaspersky.com \
    --to=arseny.krasnov@kaspersky.com \
    --cc=alex.popov@linux.com \
    --cc=andraprs@amazon.com \
    --cc=cohuck@redhat.com \
    --cc=colin.king@canonical.com \
    --cc=davem@davemloft.net \
    --cc=jasowang@redhat.com \
    --cc=jeffv@google.com \
    --cc=jhansen@vmware.com \
    --cc=kuba@kernel.org \
    --cc=mst@redhat.com \
    --cc=nslusarek@gmx.net \
    --cc=oxffffaa@gmail.com \
    --cc=sgarzare@redhat.com \
    --cc=stefanha@redhat.com \
    --cc=virtio-comment@lists.oasis-open.org \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.