From patchwork Mon Feb 22 09:28:02 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lin Ma X-Patchwork-Id: 586094 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 959D01402DD for ; Mon, 22 Feb 2016 21:02:32 +1100 (AEDT) Received: from localhost ([::1]:48161 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXnK2-0005Ew-Nw for incoming@patchwork.ozlabs.org; Mon, 22 Feb 2016 05:02:30 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60939) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXnJd-0004a5-Gf for qemu-devel@nongnu.org; Mon, 22 Feb 2016 05:02:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXnJX-0000DX-PN for qemu-devel@nongnu.org; Mon, 22 Feb 2016 05:02:05 -0500 Received: from [203.192.156.9] (port=58968 helo=localhost) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXnJX-0000DG-Cn for qemu-devel@nongnu.org; Mon, 22 Feb 2016 05:01:59 -0500 Received: by localhost (Postfix, from userid 1000) id B69071969; Mon, 22 Feb 2016 17:28:03 +0800 (CST) From: Lin Ma To: stefanha@redhat.com, qemu-devel@nongnu.org Date: Mon, 22 Feb 2016 17:28:02 +0800 Message-Id: <1456133282-3824-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 2.2.x-3.x [generic] X-Received-From: 203.192.156.9 Cc: Lin Ma 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