All of lore.kernel.org
 help / color / mirror / Atom feed
From: Frank Yang <lfy@google.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: "Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Cornelia Huck <cohuck@redhat.com>,
	Roman Kiryanov <rkir@google.com>,
	Stefan Hajnoczi <stefanha@redhat.com>,
	virtio-dev@lists.oasis-open.org,
	Greg Hartman <ghartman@google.com>
Subject: Re: [virtio-dev] Memory sharing device
Date: Wed, 20 Feb 2019 07:30:26 -0800	[thread overview]
Message-ID: <CAEkmjvU5tc8tYpbynigVSGqTh5_SyhoMVEAu3Z1wo6vaGBBbVg@mail.gmail.com> (raw)
In-Reply-To: <20190220062539.toctrkhk67iyzwnk@sirius.home.kraxel.org>

[-- Attachment #1: Type: text/plain, Size: 4726 bytes --]

On Tue, Feb 19, 2019 at 10:25 PM Gerd Hoffmann <kraxel@redhat.com> wrote:

>   Hi,
>
> > > That might simlify pass-through of v4l2 host devices, but isn't
> > > necessarily the best choice long-term.
>
> > Right, but if we're not emulating at the v4l2 api level, then it starts
> > looking a lot
> > like the proposed virtio-hostmem; there's a common pattern of
> > direct access to host memory
>
> Typically camera hardware can DMA the image data to any place in memory,
> including guest ram.  There is no need to expose host memory to the
> guest for that.  The normal virtio workflow with guest-allocated buffers
> will work just fine.
>
>
True, thanks for pointing it out.
Although, I'd still think it is still a bit nicer to do it via a host
memory buffer,
because it'd be outside of guest ram;
we wouldn't have to interface as tightly with the kernel in terms of not
interfering with
other guest RAM usages,
such as equivalents of dma_alloc_coherent with the limitation on CMA and
all.

> In addition, we'd like to do things in a way
> > that allows virtual drivers/devices to be defined in a manner that
> doesn't
> > require the guest kernel to be updated.
>
> Hmm.  I'm wondering whenever you just need a different virtio transport.
> Very simliar to virtio-pci, but instead of using all guest ram (modulo
> iommu quirks) as address space use a pci memory bar as address space.
> virtio rings would live there, all buffers would live there, addresses
> passed around would be offsets into that pci bar.  Then your userspace
> driver can just mmap() that pci bar and handle (almost?) everything on
> its own.  Maybe a little stub driver in the kernel is needed for ring
> notifications.
>
>
Yeah, that's (almost?) exactly what we want to do / we're doing already
pretty much
with the memory sharing scheme we're using currently.

Defining it as a transport would also require definition of another virtio
device type
that the userspace drivers talk to, right?
As a transport/device pair, would it break down as, the transport ends up
restricting what kinds of addresses can be referred to in the ring messages
(in the pci memory bar),
then the device provides the userspace drivers with
implementation of mmap() + memory allocation/sharing ops and notification?


> > For us, maintaining and upgrading guest kernels in response to tweaks to
> > virtual devices
> > is much more work than modifying a userspace shared library driver that
> > communicates to some virtio driver.
>
> Well, one of the design goals of virtio is that such an upgrade is not
> required.  Capabilities of device and driver are negotiated using
> feature flags, which removes the need for lockstep updates of guest and
> host.
>
>
We also have a similar feature flag system,
but yeah it would be great to use the capabilities/flags
to their fullest extent here.


> > Thus far, it's suggested that socket or
> > network devices
> > be used for this, because they are general guest/host communication,
> > but they don't have the portability or performance characteristics we
> want.
>
> For high-bandwidth fully agree.
>
> For low-bandwidth (like the sensors discussed elsewhere in the thread) I
> think running some protocol (mqtt, something json-based, ...) over
> virtio-serial or virtio-vsock isn't too bad.
>
> But creating virtio-sensors makes sense too.
>
>
Yeah for performance considerations, sockets seem to be fine.
It's just that I've also got concerns on how well sockets work on non-Linux.

> > Alternatively emulate something existing, USB Video Class device for
> > > example.
> >
> > Using usb or faking some other transport generally also involves being
> > coupled to that set of kernel code in the guest, which introduces
> > complexity and overhead.  Exposing RAM can be a more flexible
> > abstraction.
>
> Well, you get guest drivers for free and all existing software will run
> just fine out-of-the-box.
>
> Which is the reason why there is no virtio-usb for example.  xhci has a
> hardware design which can be emulated without much overhead, so the
> performance benefit of virtio-usb over xhci would be pretty close to
> zero.
>
>
That's pretty interesting; from a brief glance at xhci, it looks like what
you're proposing
is that since there usb passthrough already with xhci,
and xhci has something that looks like a virtqueue,
perhaps we can create our own USB driver on the host,
then pass it through.

It does make things more inconvenient for users though since they would
have to install
usb drivers out of nowhere. Wonder if a usb forwarder virtual device exists
that can talk to some shared library on the host for the xhci queue, though
that might be considered an unsafe plugin.


> cheers,
>   Gerd
>
>

[-- Attachment #2: Type: text/html, Size: 6495 bytes --]

  reply	other threads:[~2019-02-20 15:30 UTC|newest]

Thread overview: 72+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-01 20:34 [virtio-dev] Memory sharing device Roman Kiryanov
2019-02-04  5:40 ` Stefan Hajnoczi
2019-02-04 10:13   ` Gerd Hoffmann
2019-02-04 10:18     ` Roman Kiryanov
2019-02-05  7:42     ` Roman Kiryanov
2019-02-05 10:04       ` Dr. David Alan Gilbert
2019-02-05 15:17         ` Frank Yang
2019-02-05 15:21           ` Frank Yang
2019-02-05 21:06         ` Roman Kiryanov
2019-02-06  7:03           ` Gerd Hoffmann
2019-02-06 15:09             ` Frank Yang
2019-02-06 15:11               ` Frank Yang
2019-02-08  7:57               ` Stefan Hajnoczi
2019-02-08 14:46                 ` Frank Yang
2019-02-06 20:14           ` Dr. David Alan Gilbert
2019-02-06 20:27             ` Frank Yang
2019-02-07 12:10               ` Cornelia Huck
2019-02-11 14:49       ` Michael S. Tsirkin
2019-02-11 15:14         ` Frank Yang
2019-02-11 15:25           ` Frank Yang
2019-02-12 13:01             ` Michael S. Tsirkin
2019-02-12 13:16             ` Dr. David Alan Gilbert
2019-02-12 13:27               ` Michael S. Tsirkin
2019-02-12 16:17                 ` Frank Yang
2019-02-19  7:17                   ` Gerd Hoffmann
2019-02-19 15:59                     ` Frank Yang
2019-02-20  6:51                       ` Gerd Hoffmann
2019-02-20 15:31                         ` Frank Yang
2019-02-21  6:55                           ` Gerd Hoffmann
2019-02-19  7:12             ` Gerd Hoffmann
2019-02-19 16:02               ` Frank Yang
2019-02-20  7:02                 ` Gerd Hoffmann
2019-02-20 15:32                   ` Frank Yang
2019-02-21  7:29                     ` Gerd Hoffmann
2019-02-21  9:24                       ` Dr. David Alan Gilbert
2019-02-21  9:59                         ` Gerd Hoffmann
2019-02-21 10:03                           ` Dr. David Alan Gilbert
2019-02-22  6:15                           ` Michael S. Tsirkin
2019-02-22  6:42                             ` Gerd Hoffmann
2019-02-11 16:57           ` Michael S. Tsirkin
2019-02-12  8:27         ` Roman Kiryanov
2019-02-12 11:25           ` Dr. David Alan Gilbert
2019-02-12 13:47             ` Cornelia Huck
2019-02-12 14:03               ` Michael S. Tsirkin
2019-02-12 15:56                 ` Frank Yang
2019-02-12 16:46                   ` Dr. David Alan Gilbert
2019-02-12 17:20                     ` Frank Yang
2019-02-12 17:26                       ` Frank Yang
2019-02-12 19:06                         ` Michael S. Tsirkin
2019-02-13  2:50                           ` Frank Yang
2019-02-13  4:02                             ` Michael S. Tsirkin
2019-02-13  4:19                               ` Michael S. Tsirkin
2019-02-13  4:59                                 ` Frank Yang
2019-02-13 18:18                                   ` Frank Yang
2019-02-14  7:15                                     ` Frank Yang
2019-02-22 22:05                                       ` Michael S. Tsirkin
2019-02-24 21:19                                         ` Frank Yang
2019-02-13  4:59                               ` Frank Yang
2019-02-19  7:54                       ` Gerd Hoffmann
2019-02-19 15:54                         ` Frank Yang
2019-02-20  3:46                           ` Michael S. Tsirkin
2019-02-20 15:24                             ` Frank Yang
2019-02-20 19:29                               ` Michael S. Tsirkin
2019-02-20  6:25                           ` Gerd Hoffmann
2019-02-20 15:30                             ` Frank Yang [this message]
2019-02-20 15:35                               ` Frank Yang
2019-02-21  6:44                               ` Gerd Hoffmann
2019-02-12 18:22                   ` Michael S. Tsirkin
2019-02-12 19:01                     ` Frank Yang
2019-02-12 19:15                       ` Michael S. Tsirkin
2019-02-12 20:15                         ` Frank Yang
2019-02-12 13:00           ` Michael S. Tsirkin

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=CAEkmjvU5tc8tYpbynigVSGqTh5_SyhoMVEAu3Z1wo6vaGBBbVg@mail.gmail.com \
    --to=lfy@google.com \
    --cc=cohuck@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=ghartman@google.com \
    --cc=kraxel@redhat.com \
    --cc=mst@redhat.com \
    --cc=rkir@google.com \
    --cc=stefanha@redhat.com \
    --cc=virtio-dev@lists.oasis-open.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.