From patchwork Tue Nov 24 17:06:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 548162 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 2D46014030F for ; Wed, 25 Nov 2015 04:07:07 +1100 (AEDT) Received: from localhost ([::1]:39873 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1H3Z-0003av-DC for incoming@patchwork.ozlabs.org; Tue, 24 Nov 2015 12:07:05 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33780) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1H37-0002p4-KL for qemu-devel@nongnu.org; Tue, 24 Nov 2015 12:06:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a1H33-0005l4-Eu for qemu-devel@nongnu.org; Tue, 24 Nov 2015 12:06:37 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35472) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1H33-0005kS-8g for qemu-devel@nongnu.org; Tue, 24 Nov 2015 12:06:33 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 120ADC0F1CF9; Tue, 24 Nov 2015 17:06:32 +0000 (UTC) Received: from blackfin.pond.sub.org (ovpn-116-47.ams2.redhat.com [10.36.116.47]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tAOH6USj022335 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 24 Nov 2015 12:06:31 -0500 Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id 969BA303E3DE; Tue, 24 Nov 2015 18:06:29 +0100 (CET) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Tue, 24 Nov 2015 18:06:25 +0100 Message-Id: <1448384789-14830-2-git-send-email-armbru@redhat.com> In-Reply-To: <1448384789-14830-1-git-send-email-armbru@redhat.com> References: <1448384789-14830-1-git-send-email-armbru@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: marcandre.lureau@redhat.com, claudio.fontana@huawei.com Subject: [Qemu-devel] [PATCH for-2.5 1/5] qemu-doc: Fix ivshmem example markup 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 Use @var{foo} like we do everywhere else, not . Signed-off-by: Markus Armbruster Reviewed-by: Marc-André Lureau --- qemu-doc.texi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qemu-doc.texi b/qemu-doc.texi index 460ab71..c9b7069 100644 --- a/qemu-doc.texi +++ b/qemu-doc.texi @@ -1256,7 +1256,7 @@ zero-copy communication to the application level of the guests. The basic syntax is: @example -qemu-system-i386 -device ivshmem,size=[,shm=] +qemu-system-i386 -device ivshmem,size=@var{size}[,shm=@var{shm-name}] @end example If desired, interrupts can be sent between guest VMs accessing the same shared @@ -1267,12 +1267,12 @@ memory server is: @example # First start the ivshmem server once and for all -ivshmem-server -p -S -m -l -n +ivshmem-server -p @var{pidfile} -S @var{path} -m @var{shm-name} -l @var{shm-size} -n @var{vectors} # Then start your qemu instances with matching arguments -qemu-system-i386 -device ivshmem,size=,vectors=,chardev= +qemu-system-i386 -device ivshmem,size=@var{shm-size},vectors=@var{vectors},chardev=@var{id} [,msi=on][,ioeventfd=on][,role=peer|master] - -chardev socket,path=,id= + -chardev socket,path=@var{path},id=@var{id} @end example When using the server, the guest will be assigned a VM ID (>=0) that allows guests