All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jiang Wang ." <jiang.wang@bytedance.com>
To: Stefano Garzarella <sgarzare@redhat.com>
Cc: cong.wang@bytedance.com,
	Xiongchun Duan <duanxiongchun@bytedance.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	cohuck@redhat.com, virtualization@lists.linux-foundation.org,
	xieyongji@bytedance.com, Stefan Hajnoczi <stefanha@redhat.com>,
	Arseny Krasnov <arseny.krasnov@kaspersky.com>
Subject: Re: Re: [RFC v2] virtio-vsock: add description for datagram type
Date: Fri, 14 May 2021 11:55:29 -0700	[thread overview]
Message-ID: <CAP_N_Z8CGx83D7yperR3OhMb-6YVrADxbZxocxSbpz9czKoO=w@mail.gmail.com> (raw)
In-Reply-To: <20210514151701.6fp27qanjseom4tl@steredhat>

On Fri, May 14, 2021 at 8:17 AM Stefano Garzarella <sgarzare@redhat.com> wrote:
>
> On Thu, May 13, 2021 at 04:26:03PM -0700, Jiang Wang . wrote:
> >On Mon, May 10, 2021 at 7:52 AM Stefano Garzarella <sgarzare@redhat.com> wrote:
> >> On Fri, May 07, 2021 at 09:53:19AM -0700, Jiang Wang . wrote:
>
> [...]
>
> >I was thinking if we don't add two new virtqueues, then maybe we don't
> >need to add new feature bit too? If the other end does not support
> >dgram, then the packets will be just dropped. What do you think? Do
> >we still need to add dgram feature bits? I can have a feature bit for
> >mergeable buffer.
>
> With seqpacket, where we reuse stream queues, we decided to add the new
> feature bit, so I guess we should do the same for dgram.
>
> In this way the driver knows if the protocol is supported and we can
> avoid for example to open a listening socket.

Sure. I will keep the feature bit.

> Without the feature bit this would not be possible. I mean, the sender
> will get an error, but the receiver will never know if it can receive or
> not.
>
> >> >What do you guys think? I remember Stefano mentioned that we should
> >> >add
> >> >two new virtqueues for dgram. Stefano, do you have some specific reasons
> >> >for that? Could we just keep using existing virtqueues? Thanks.
> >>
> >> My biggest concern was about the credit mechanism for datagrams. I mean
> >> avoiding datagrams from crowding the queue without limits, preventing
> >> streams from communicating.
> >>
> >> If you've found a way to limit datagram traffic, then maybe it's doable.
> >
> >I see. I will add some limit to dgram packets. Also, when the virtqueues
> >are shared between stream and dgram, both of them need to grab a lock
> >before using the virtqueue, so one will not completely block another one.
>
> I'm not worried about the concurrent access that we definitely need to
> handle with a lock, but more about the uncontrolled packet sending that
> dgram might have, flooding the queues and preventing others from
> communicating.

That is a valid concern. Let me explain how I would handle that if we
don't add two new virtqueues. For dgram, I also add a dgram_send_pkt_list,
which is similar to send_pkt_list for stream (and seqpacket). But there
is one difference. The dgram_send_pkt_list has a maximum size setting,
and keep tracking how many pkts are in the list. The track number
(dgram_send_pkt_list_size) is  increased when a packet is added
to the list and is decreased when a packet
is removed from the list and added to the virtqueue. In
virtio_transport_send_pkt, if the current
dgram_send_pkt_list_size is equal
to the maximum ( let's say 128), then it will not add to the
dgram_send_pkt_list and return an error to the application.

In this way, the number of pending dgram pkts to be sent is limited.
Then both stream and dgram sockets will compete to hold a lock
for the tx virtqueue. Depending on the linux scheduler, this competition
will be somewhat fair. As a result, dgram will not block stream completely.
It will compete and share the virtqueue with stream, but stream
can still send some pkts.

Basically, the virtqueue becomes a first-come first-serve resource for
the stream and dgram. When both stream and dgram applications
have lots of data to send, dgram_send_pkt_list and send_pkt_list
will still be a limited size, and each will have some chance to send out
the data via virtqueue.  Does this address your concern?


> So having 2 dedicated queues could avoid a credit mechanism at all for
> connection-less sockets, and simply the receiver discards packets that
> it can't handle.

With 2 dedicated queues, we still need some kind of accounting for
the dgram. Like the dgram_send_pkt_size I mentioned above.  Otherwise,
it will cause OOM. It is not a real credit mechanism, but code is similar
with or without 2 dedicated queues in my current prototype.

For receiver discarding packets part, could you explain more? I think
receiver discarding pkts code also is same with or without 2 dedicated
queues. Both will use can_enqueue = virtio_transport_inc_rx_pkt(vvs, pkt);
to check if a packet should be discarded or not.

Thanks,

Jiang

> Thanks,
> Stefano
>
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

  reply	other threads:[~2021-05-14 18:55 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-01  4:36 [RFC v2] virtio-vsock: add description for datagram type jiang.wang
2021-04-12 13:50 ` Stefan Hajnoczi
2021-04-12 14:21   ` Stefano Garzarella
2021-04-12 22:42     ` Jiang Wang .
2021-04-13 12:58       ` Stefano Garzarella
2021-04-13 13:16         ` Michael S. Tsirkin
2021-04-13 13:38           ` Stefano Garzarella
2021-04-13 13:50             ` Michael S. Tsirkin
2021-04-13 14:03               ` Stefano Garzarella
2021-04-13 19:58                 ` Michael S. Tsirkin
2021-04-13 22:00                   ` Jiang Wang .
2021-04-14  7:07                     ` Stefano Garzarella
2021-04-14  6:57                   ` Stefano Garzarella
2021-04-14  7:20                     ` Michael S. Tsirkin
2021-04-14  9:38                       ` Stefano Garzarella
2021-04-15  3:15                         ` Jiang Wang .
2021-05-04  3:40                           ` Jiang Wang .
2021-05-04 16:16                             ` Stefano Garzarella
2021-05-04 17:06                               ` Jiang Wang .
2021-05-05 10:49                                 ` Stefano Garzarella
2021-05-05 16:58                                   ` Jiang Wang .
2021-05-07 16:53                                     ` Jiang Wang .
2021-05-10 14:50                                       ` Stefano Garzarella
2021-05-13 23:26                                         ` Jiang Wang .
2021-05-14 15:17                                           ` Stefano Garzarella
2021-05-14 18:55                                             ` Jiang Wang . [this message]
2021-05-17 11:02                                               ` Stefano Garzarella
2021-05-18  6:33                                                 ` Jiang Wang .
2021-05-18 13:02                                                   ` Stefano Garzarella
2021-05-19  4:59                                                     ` Jiang Wang .
2021-06-09  4:31                                                       ` Jiang Wang .
2021-06-09  7:40                                                         ` Stefano Garzarella
2021-04-12 22:39   ` [External] " Jiang Wang .
2021-05-13 14:57     ` Stefan Hajnoczi

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='CAP_N_Z8CGx83D7yperR3OhMb-6YVrADxbZxocxSbpz9czKoO=w@mail.gmail.com' \
    --to=jiang.wang@bytedance.com \
    --cc=arseny.krasnov@kaspersky.com \
    --cc=cohuck@redhat.com \
    --cc=cong.wang@bytedance.com \
    --cc=duanxiongchun@bytedance.com \
    --cc=mst@redhat.com \
    --cc=sgarzare@redhat.com \
    --cc=stefanha@redhat.com \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=xieyongji@bytedance.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 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.