From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45271) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvLJf-0000uU-Cd for qemu-devel@nongnu.org; Fri, 13 Jun 2014 02:50:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WvLJZ-0003za-Al for qemu-devel@nongnu.org; Fri, 13 Jun 2014 02:50:23 -0400 Received: from mail-wg0-f52.google.com ([74.125.82.52]:42309) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WvLJZ-0003zR-4K for qemu-devel@nongnu.org; Fri, 13 Jun 2014 02:50:17 -0400 Received: by mail-wg0-f52.google.com with SMTP id b13so2232565wgh.11 for ; Thu, 12 Jun 2014 23:50:16 -0700 (PDT) From: Nikolay Nikolaev Date: Fri, 13 Jun 2014 09:50:09 +0300 Message-ID: <20140613065002.7683.59016.stgit@3820> In-Reply-To: <20140613064414.7683.63231.stgit@3820> References: <20140613064414.7683.63231.stgit@3820> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 2/3] fixup! Add the vhost-user netdev backend to the command line List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: snabb-devel@googlegroups.com, qemu-devel@nongnu.org Cc: a.motakis@virtualopensystems.com, luke@snabb.co, tech@virtualopensystems.com, n.nikolaev@virtualopensystems.com, mst@redhat.com Replace 'memory-file' with 'memory-backend-file'. Signed-off-by: Nikolay Nikolaev --- qemu-options.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-options.hx b/qemu-options.hx index 1ad2528..ab06df1 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1802,7 +1802,7 @@ end of the socket. On non-MSIX guests, the feature can be forced with Example: @example -qemu -m 512 -object memory-file,id=mem,size=512M,mem-path=/hugetlbfs,share=on \ +qemu -m 512 -object memory-backend-file,id=mem,size=512M,mem-path=/hugetlbfs,share=on \ -numa node,memdev=mem \ -chardev socket,path=/path/to/socket \ -netdev type=vhost-user,id=net0,chardev=chr0 \