From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60636) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YG5H1-0003BN-7T for qemu-devel@nongnu.org; Tue, 27 Jan 2015 07:29:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YG4zV-0007J9-44 for qemu-devel@nongnu.org; Tue, 27 Jan 2015 07:11:38 -0500 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:39191) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YG4zU-0007IT-Rx for qemu-devel@nongnu.org; Tue, 27 Jan 2015 07:11:33 -0500 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 27 Jan 2015 12:11:30 -0000 From: Thomas Huth Date: Tue, 27 Jan 2015 13:11:26 +0100 Message-Id: <1422360686-5895-1-git-send-email-thuth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH] qemu-log: Correct help text of 'log cpu_reset' List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial@nongnu.org, qemu-devel@nongnu.org The logging of the CPU state during reset is done for all architectures nowadays (see cpu_common_reset() in qom/cpu.c), so the "x86 only" text does not apply here anymore. Signed-off-by: Thomas Huth --- qemu-log.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qemu-log.c b/qemu-log.c index 05b5493..13f3813 100644 --- a/qemu-log.c +++ b/qemu-log.c @@ -111,7 +111,7 @@ const QEMULogItem qemu_log_items[] = { { CPU_LOG_PCALL, "pcall", "x86 only: show protected mode far calls/returns/exceptions" }, { CPU_LOG_RESET, "cpu_reset", - "x86 only: show CPU state before CPU resets" }, + "show CPU state before CPU resets" }, { CPU_LOG_IOPORT, "ioport", "show all i/o ports accesses" }, { LOG_UNIMP, "unimp", -- 1.7.1