Re: [Qemu-devel] [PATCH 3/5] Add vhostsock option

2013-12-04 Thread Antonios Motakis
On Wed, Dec 4, 2013 at 2:42 PM, Stefan Hajnoczi wrote: > On Fri, Nov 29, 2013 at 08:52:24PM +0100, Antonios Motakis wrote: > > @@ -91,15 +91,27 @@ static int vhost_net_get_fd(NetClientState *backend) > > } > > } > > > > -struct vhost_net *vhost_net_init(NetClientState *backend, int devfd, >

Re: [Qemu-devel] [PATCH 3/5] Add vhostsock option

2013-12-04 Thread Eric Blake
On 11/29/2013 12:52 PM, Antonios Motakis wrote: > Adding a new tap network backend option - vhostsock. It points > to a named unix domain socket, that will be used to communicate > with vhost-user backend. This is a temporary work around; in future > versions of this series vhost-user will be made

Re: [Qemu-devel] [PATCH 3/5] Add vhostsock option

2013-12-04 Thread Stefan Hajnoczi
On Fri, Nov 29, 2013 at 08:52:24PM +0100, Antonios Motakis wrote: > @@ -91,15 +91,27 @@ static int vhost_net_get_fd(NetClientState *backend) > } > } > > -struct vhost_net *vhost_net_init(NetClientState *backend, int devfd, > - bool force) > +struct vhost_net

[Qemu-devel] [PATCH 3/5] Add vhostsock option

2013-11-29 Thread Antonios Motakis
Adding a new tap network backend option - vhostsock. It points to a named unix domain socket, that will be used to communicate with vhost-user backend. This is a temporary work around; in future versions of this series vhost-user will be made independent from the tap network backend. Signed-off-by