Re: [Qemu-devel] [PATCH v2 4/6] Add vhost-user-input-pci

2019-05-09 Thread Marc-André Lureau
Hi On Thu, May 9, 2019 at 12:09 PM Marc-André Lureau wrote: > > Hi > > On Thu, May 9, 2019 at 11:53 AM Marc-André Lureau > wrote: > > > > Hi > > > > On Thu, May 9, 2019 at 11:25 AM Gerd Hoffmann wrote: > > > > > > On Thu, May 09, 2019 at 10:37:20AM +0200, Marc-André Lureau wrote: > > > > Hi > >

Re: [Qemu-devel] [PATCH v2 4/6] Add vhost-user-input-pci

2019-05-09 Thread Marc-André Lureau
Hi On Thu, May 9, 2019 at 11:53 AM Marc-André Lureau wrote: > > Hi > > On Thu, May 9, 2019 at 11:25 AM Gerd Hoffmann wrote: > > > > On Thu, May 09, 2019 at 10:37:20AM +0200, Marc-André Lureau wrote: > > > Hi > > > > > > On Thu, May 9, 2019 at 8:32 AM Gerd Hoffmann wrote: > > > > > > > > Hi, >

Re: [Qemu-devel] [PATCH v2 4/6] Add vhost-user-input-pci

2019-05-09 Thread Marc-André Lureau
Hi On Thu, May 9, 2019 at 11:25 AM Gerd Hoffmann wrote: > > On Thu, May 09, 2019 at 10:37:20AM +0200, Marc-André Lureau wrote: > > Hi > > > > On Thu, May 9, 2019 at 8:32 AM Gerd Hoffmann wrote: > > > > > > Hi, > > > > > > > +static const VirtioPCIDeviceTypeInfo vhost_user_input_pci_info = { >

Re: [Qemu-devel] [PATCH v2 4/6] Add vhost-user-input-pci

2019-05-09 Thread Gerd Hoffmann
On Thu, May 09, 2019 at 10:37:20AM +0200, Marc-André Lureau wrote: > Hi > > On Thu, May 9, 2019 at 8:32 AM Gerd Hoffmann wrote: > > > > Hi, > > > > > +static const VirtioPCIDeviceTypeInfo vhost_user_input_pci_info = { > > > +.base_name = TYPE_VHOST_USER_INPUT_PCI, > > > +.generic_name =

Re: [Qemu-devel] [PATCH v2 4/6] Add vhost-user-input-pci

2019-05-09 Thread Marc-André Lureau
Hi On Thu, May 9, 2019 at 8:32 AM Gerd Hoffmann wrote: > > Hi, > > > +static const VirtioPCIDeviceTypeInfo vhost_user_input_pci_info = { > > +.base_name = TYPE_VHOST_USER_INPUT_PCI, > > +.generic_name = "vhost-user-input-pci", > > +.transitional_name = "vhost-user-input-pci-transiti

Re: [Qemu-devel] [PATCH v2 4/6] Add vhost-user-input-pci

2019-05-08 Thread Gerd Hoffmann
Hi, > +static const VirtioPCIDeviceTypeInfo vhost_user_input_pci_info = { > +.base_name = TYPE_VHOST_USER_INPUT_PCI, > +.generic_name = "vhost-user-input-pci", > +.transitional_name = "vhost-user-input-pci-transitional", > +.non_transitional_name = "vhost-user-input-pci-non-trans

[Qemu-devel] [PATCH v2 4/6] Add vhost-user-input-pci

2019-05-03 Thread Marc-André Lureau
Add a new virtio-input device, which connects to a vhost-user backend. Instead of reading configuration directly from an input device / evdev (like virtio-input-host), it reads it over vhost-user protocol with {SET,GET}_CONFIG messages. The vhost-user-backend handles the queues & events setup. Si