Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-09-17 Thread Dr. David Alan Gilbert
* Stefan Hajnoczi (stefa...@redhat.com) wrote: > On Wed, Aug 21, 2019 at 08:11:18PM +0100, Dr. David Alan Gilbert wrote: > > * Michael S. Tsirkin (m...@redhat.com) wrote: > > > On Fri, Aug 16, 2019 at 03:33:20PM +0100, Dr. David Alan Gilbert (git) > > > wrote: > > > > +static void

Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-23 Thread Stefan Hajnoczi
On Thu, Aug 22, 2019 at 11:19:16AM +0200, Cornelia Huck wrote: > On Thu, 22 Aug 2019 09:52:37 +0100 > Stefan Hajnoczi wrote: > > > On Wed, Aug 21, 2019 at 08:11:18PM +0100, Dr. David Alan Gilbert wrote: > > > * Michael S. Tsirkin (m...@redhat.com) wrote: > > > > On Fri, Aug 16, 2019 at

Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-22 Thread Cornelia Huck
On Thu, 22 Aug 2019 09:52:37 +0100 Stefan Hajnoczi wrote: > On Wed, Aug 21, 2019 at 08:11:18PM +0100, Dr. David Alan Gilbert wrote: > > * Michael S. Tsirkin (m...@redhat.com) wrote: > > > On Fri, Aug 16, 2019 at 03:33:20PM +0100, Dr. David Alan Gilbert (git) > > > wrote: > > > > +static

Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-22 Thread Stefan Hajnoczi
On Wed, Aug 21, 2019 at 08:11:18PM +0100, Dr. David Alan Gilbert wrote: > * Michael S. Tsirkin (m...@redhat.com) wrote: > > On Fri, Aug 16, 2019 at 03:33:20PM +0100, Dr. David Alan Gilbert (git) > > wrote: > > > +static void vuf_handle_output(VirtIODevice *vdev, VirtQueue *vq) > > > +{ > > > +

Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-21 Thread Dr. David Alan Gilbert
* Michael S. Tsirkin (m...@redhat.com) wrote: > On Fri, Aug 16, 2019 at 03:33:20PM +0100, Dr. David Alan Gilbert (git) wrote: > > From: "Dr. David Alan Gilbert" > > > > The virtio-fs virtio device provides shared file system access using > > the FUSE protocol carried ovew virtio. > > The actual

Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-21 Thread Dr. David Alan Gilbert
* Michael S. Tsirkin (m...@redhat.com) wrote: > On Fri, Aug 16, 2019 at 03:33:20PM +0100, Dr. David Alan Gilbert (git) wrote: > > From: "Dr. David Alan Gilbert" > > +/* Hiprio queue */ > > +virtio_add_queue(vdev, fs->conf.queue_size, vuf_handle_output); > > > > Weird, spec patch v6

Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-20 Thread Dr. David Alan Gilbert
* Cornelia Huck (coh...@redhat.com) wrote: > On Sun, 18 Aug 2019 07:08:31 -0400 > "Michael S. Tsirkin" wrote: > > > On Fri, Aug 16, 2019 at 03:33:20PM +0100, Dr. David Alan Gilbert (git) > > wrote: > > > From: "Dr. David Alan Gilbert" > > > > > > The virtio-fs virtio device provides shared

Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-20 Thread Cornelia Huck
On Sun, 18 Aug 2019 07:08:31 -0400 "Michael S. Tsirkin" wrote: > On Fri, Aug 16, 2019 at 03:33:20PM +0100, Dr. David Alan Gilbert (git) wrote: > > From: "Dr. David Alan Gilbert" > > > > The virtio-fs virtio device provides shared file system access using > > the FUSE protocol carried ovew

Re: [Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-18 Thread Michael S. Tsirkin
On Fri, Aug 16, 2019 at 03:33:20PM +0100, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" > > The virtio-fs virtio device provides shared file system access using > the FUSE protocol carried ovew virtio. > The actual file server is implemented in an external vhost-user-fs

[Qemu-devel] [PATCH 1/2] virtio: add vhost-user-fs base device

2019-08-16 Thread Dr. David Alan Gilbert (git)
From: "Dr. David Alan Gilbert" The virtio-fs virtio device provides shared file system access using the FUSE protocol carried ovew virtio. The actual file server is implemented in an external vhost-user-fs device backend process. Signed-off-by: Stefan Hajnoczi Signed-off-by: Sebastien Boeuf