From patchwork Tue Mar 9 01:53:44 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcelo Tosatti X-Patchwork-Id: 47144 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 1C522B7D1C for ; Tue, 9 Mar 2010 12:59:16 +1100 (EST) Received: from localhost ([127.0.0.1]:57021 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nooj2-0004Lh-Ap for incoming@patchwork.ozlabs.org; Mon, 08 Mar 2010 20:59:12 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NooiG-000470-G6 for qemu-devel@nongnu.org; Mon, 08 Mar 2010 20:58:24 -0500 Received: from [199.232.76.173] (port=57790 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NooiF-00046I-U1 for qemu-devel@nongnu.org; Mon, 08 Mar 2010 20:58:23 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NooiE-0005vK-0u for qemu-devel@nongnu.org; Mon, 08 Mar 2010 20:58:23 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46413) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NooiD-0005ui-Ch for qemu-devel@nongnu.org; Mon, 08 Mar 2010 20:58:21 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o291wJjA004893 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 8 Mar 2010 20:58:19 -0500 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o291wJOp011811; Mon, 8 Mar 2010 20:58:19 -0500 Received: from amt.cnet (vpn-10-246.rdu.redhat.com [10.11.10.246]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id o291wHdu007793; Mon, 8 Mar 2010 20:58:18 -0500 Received: from amt.cnet (amt.cnet [127.0.0.1]) by amt.cnet (Postfix) with ESMTP id 57A7268A7D5; Mon, 8 Mar 2010 22:57:17 -0300 (BRT) Received: (from marcelo@localhost) by amt.cnet (8.14.3/8.14.3/Submit) id o291vHq3025641; Mon, 8 Mar 2010 22:57:17 -0300 Message-Id: <20100309015644.133975091@redhat.com> User-Agent: quilt/0.47-1 Date: Mon, 08 Mar 2010 22:53:44 -0300 From: Marcelo Tosatti To: kvm@vger.kernel.org, qemu-devel@nongnu.org References: <20100309015343.901738854@redhat.com> Content-Disposition: inline; filename=print-efer X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Marcelo Tosatti Subject: [Qemu-devel] [patch 1/3] target-i386: print EFER in cpu_dump_state X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Marcelo Tosatti Index: qemu-kvm-uq/target-i386/helper.c =================================================================== --- qemu-kvm-uq.orig/target-i386/helper.c +++ qemu-kvm-uq/target-i386/helper.c @@ -1176,6 +1176,7 @@ void cpu_dump_state(CPUState *env, FILE cpu_x86_dump_seg_cache(env, f, cpu_fprintf, "TR", &env->tr); #ifdef TARGET_X86_64 + cpu_fprintf(f, "EFER= %016" PRIx64 "\n", env->efer); if (env->hflags & HF_LMA_MASK) { cpu_fprintf(f, "GDT= %016" PRIx64 " %08x\n", env->gdt.base, env->gdt.limit);