From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56039) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvMSe-0005c3-Kh for qemu-devel@nongnu.org; Fri, 13 Jun 2014 04:03:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WvMSW-0003sD-0D for qemu-devel@nongnu.org; Fri, 13 Jun 2014 04:03:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:1489) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvMSV-0003s9-NU for qemu-devel@nongnu.org; Fri, 13 Jun 2014 04:03:35 -0400 Date: Fri, 13 Jun 2014 11:04:00 +0300 From: "Michael S. Tsirkin" Message-ID: <20140613080400.GD2117@redhat.com> References: <20140613064414.7683.63231.stgit@3820> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140613064414.7683.63231.stgit@3820> Subject: Re: [Qemu-devel] [PATCH 0/3] Fixups for vhost-user List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Nikolay Nikolaev Cc: a.motakis@virtualopensystems.com, luke@snabb.co, snabb-devel@googlegroups.com, qemu-devel@nongnu.org, tech@virtualopensystems.com On Fri, Jun 13, 2014 at 09:49:38AM +0300, Nikolay Nikolaev wrote: > This is a series of fixups that replace 'memory-file' with > 'memory-backend-file'. This is the object type used in the newest (since v4) > NUMA series for the file based host memory backend. > > The patches are against git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git > branch 'vhost'. Tested after rebasing on same tree branch 'numa'. Will apply Sunday. >>From now on pls work on top of the pci branch. Thanks! > --- > > Nikolay Nikolaev (3): > fixup! Add vhost-user as a vhost backend. > fixup! Add the vhost-user netdev backend to the command line > fixup! Add qtest for vhost-user > > > docs/specs/vhost-user.txt | 266 ++++++++++++++++++++++++++++++++++++++ > hmp-commands.hx | 4 - > hw/net/vhost_net.c | 39 ++++++ > hw/virtio/vhost-user.c | 2 > include/net/vhost-user.h | 17 ++ > net/Makefile.objs | 2 > net/clients.h | 3 > net/hub.c | 1 > net/net.c | 3 > net/vhost-user.c | 258 +++++++++++++++++++++++++++++++++++++ > qapi-schema.json | 19 +++ > qemu-options.hx | 18 +++ > stubs/Makefile.objs | 8 + > stubs/bdrv-commit-all.c | 7 + > stubs/chr-msmouse.c | 7 + > stubs/get-next-serial.c | 3 > stubs/is-daemonized.c | 7 + > stubs/machine-init-done.c | 6 + > stubs/monitor-init.c | 6 + > stubs/notify-event.c | 6 + > stubs/vc-init.c | 7 + > tests/Makefile | 4 + > tests/vhost-user-test.c | 312 +++++++++++++++++++++++++++++++++++++++++++++ > 23 files changed, 1000 insertions(+), 5 deletions(-) > create mode 100644 docs/specs/vhost-user.txt > create mode 100644 include/net/vhost-user.h > create mode 100644 net/vhost-user.c > create mode 100644 stubs/bdrv-commit-all.c > create mode 100644 stubs/chr-msmouse.c > create mode 100644 stubs/get-next-serial.c > create mode 100644 stubs/is-daemonized.c > create mode 100644 stubs/machine-init-done.c > create mode 100644 stubs/monitor-init.c > create mode 100644 stubs/notify-event.c > create mode 100644 stubs/vc-init.c > create mode 100644 tests/vhost-user-test.c > > -- > Signature