Re: [dpdk-dev] [PATCH 18/28] drivers/virtio_vhost_user: add virtio PCI framework

2019-09-09 Thread Maxime Coquelin
Hi Nikos, On 9/9/19 10:42 AM, Nikos Dragazis wrote: > On 5/9/19 7:34 μ.μ., Maxime Coquelin wrote: >> Hi Nikos, >> >> On 6/19/19 5:14 PM, Nikos Dragazis wrote: >>> The virtio-vhost-user transport requires a driver for the >>> virtio-vhost-user PCI device, hence it needs a virtio-pci driver. There

Re: [dpdk-dev] [PATCH 18/28] drivers/virtio_vhost_user: add virtio PCI framework

2019-09-09 Thread Nikos Dragazis
On 5/9/19 7:34 μ.μ., Maxime Coquelin wrote: > Hi Nikos, > > On 6/19/19 5:14 PM, Nikos Dragazis wrote: >> The virtio-vhost-user transport requires a driver for the >> virtio-vhost-user PCI device, hence it needs a virtio-pci driver. There >> is currently no librte_virtio API that we can use. >> >>

Re: [dpdk-dev] [PATCH 18/28] drivers/virtio_vhost_user: add virtio PCI framework

2019-09-05 Thread Maxime Coquelin
Hi Nikos, On 6/19/19 5:14 PM, Nikos Dragazis wrote: > The virtio-vhost-user transport requires a driver for the > virtio-vhost-user PCI device, hence it needs a virtio-pci driver. There > is currently no librte_virtio API that we can use. > > This commit is a hack that duplicates the virtio pci

[dpdk-dev] [PATCH 18/28] drivers/virtio_vhost_user: add virtio PCI framework

2019-06-19 Thread Nikos Dragazis
The virtio-vhost-user transport requires a driver for the virtio-vhost-user PCI device, hence it needs a virtio-pci driver. There is currently no librte_virtio API that we can use. This commit is a hack that duplicates the virtio pci code from drivers/net/ into drivers/virtio_vhost_user/. A bett