From patchwork Wed Feb 24 02:57:47 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lin Ma X-Patchwork-Id: 587174 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 435D3140B95 for ; Wed, 24 Feb 2016 13:58:45 +1100 (AEDT) Received: from localhost ([::1]:33041 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYPf1-0000Xn-98 for incoming@patchwork.ozlabs.org; Tue, 23 Feb 2016 21:58:43 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52055) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYPem-0000Gy-7s for qemu-devel@nongnu.org; Tue, 23 Feb 2016 21:58:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aYPeg-0002L9-5x for qemu-devel@nongnu.org; Tue, 23 Feb 2016 21:58:28 -0500 Received: from victor.provo.novell.com ([137.65.250.26]:43073 helo=prv3-mh.provo.novell.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYPeg-0002L2-0M for qemu-devel@nongnu.org; Tue, 23 Feb 2016 21:58:22 -0500 Received: from linux-qcna.lab.bej.apac.novell.com (prv-ext-foundry1int.gns.novell.com [137.65.251.240]) by prv3-mh.provo.novell.com with ESMTP (NOT encrypted); Tue, 23 Feb 2016 19:58:13 -0700 From: Lin Ma To: qemu-devel@nongnu.org Date: Wed, 24 Feb 2016 10:57:47 +0800 Message-Id: <1456282667-22344-1-git-send-email-lma@suse.com> X-Mailer: git-send-email 2.6.3 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 137.65.250.26 Cc: mst@redhat.com Subject: [Qemu-devel] [PATCH] qemu-options.hx: add missing chardev id in example of vhost-user X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Lin Ma --- qemu-options.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-options.hx b/qemu-options.hx index 2f0465e..6afa612 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -2063,7 +2063,7 @@ Example: @example 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 \ + -chardev socket,id=chr0,path=/path/to/socket \ -netdev type=vhost-user,id=net0,chardev=chr0 \ -device virtio-net-pci,netdev=net0 @end example