From patchwork Wed Apr 16 08:51:20 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qiao Nuohan X-Patchwork-Id: 339466 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 7F0DE1400AB for ; Wed, 16 Apr 2014 18:55:44 +1000 (EST) Received: from localhost ([::1]:53501 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WaLd8-00034L-FN for incoming@patchwork.ozlabs.org; Wed, 16 Apr 2014 04:55:42 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60616) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WaLcU-0002CT-JQ for qemu-devel@nongnu.org; Wed, 16 Apr 2014 04:55:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WaLcP-0002xy-VH for qemu-devel@nongnu.org; Wed, 16 Apr 2014 04:55:02 -0400 Received: from [59.151.112.132] (port=3881 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WaLcP-0002wi-Jv for qemu-devel@nongnu.org; Wed, 16 Apr 2014 04:54:57 -0400 X-IronPort-AV: E=Sophos;i="4.97,869,1389715200"; d="scan'208";a="29334082" Received: from unknown (HELO edo.cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 16 Apr 2014 16:52:09 +0800 Received: from G08CNEXCHPEKD02.g08.fujitsu.local (localhost.localdomain [127.0.0.1]) by edo.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id s3G8sZXq007814; Wed, 16 Apr 2014 16:54:35 +0800 Received: from G08FNSTD100518.fnst.cn.fujitsu.com (10.167.226.68) by G08CNEXCHPEKD02.g08.fujitsu.local (10.167.33.89) with Microsoft SMTP Server (TLS) id 14.3.146.2; Wed, 16 Apr 2014 16:54:39 +0800 From: Qiao Nuohan To: Date: Wed, 16 Apr 2014 16:51:20 +0800 Message-ID: <1397638281-22250-2-git-send-email-qiaonuohan@cn.fujitsu.com> X-Mailer: git-send-email 1.8.5.3 In-Reply-To: <1397638281-22250-1-git-send-email-qiaonuohan@cn.fujitsu.com> References: <1397638281-22250-1-git-send-email-qiaonuohan@cn.fujitsu.com> MIME-Version: 1.0 X-Originating-IP: [10.167.226.68] X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 59.151.112.132 Cc: borntraeger@de.ibm.com, armbru@redhat.com, lcapitulino@redhat.com Subject: [Qemu-devel] [PATCH v2 1/2] HMP: fix doc of dump-guest-memory 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: Qiao Nuohan --- hmp-commands.hx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hmp-commands.hx b/hmp-commands.hx index 0da8f28..ca5737b 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1000,10 +1000,10 @@ ETEXI .name = "dump-guest-memory", .args_type = "paging:-p,filename:F,begin:i?,length:i?", .params = "[-p] filename [begin length]", - .help = "dump guest memory into file 'filename'\n\t\t\t" - "-p: do paging to get guest's memory mapping\n\t\t\t" - "begin: the starting physical address\n\t\t\t" - "length: the memory size, in bytes", + .help = "dump guest memory into file 'filename'.\n\t\t\t" + "-p: do paging to get guest's memory mapping.\n\t\t\t" + "begin: the starting physical address.\n\t\t\t" + "length: the memory size, in bytes.", .mhandler.cmd = hmp_dump_guest_memory, }, @@ -1013,8 +1013,8 @@ STEXI @findex dump-guest-memory Dump guest memory to @var{filename}. The file can be processed with crash or gdb. - -p: do paging to get guest's memory mapping - filename: dump file name + -p: do paging to get guest's memory mapping. + filename: dump file name. begin: the starting physical address. It's optional, and should be specified together with length. length: the memory size, in bytes. It's optional, and should be specified