From patchwork Fri Jan 15 07:56:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 42951 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 53922B7CBD for ; Fri, 15 Jan 2010 19:28:09 +1100 (EST) Received: from localhost ([127.0.0.1]:47233 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NVhW7-0005Ax-PI for incoming@patchwork.ozlabs.org; Fri, 15 Jan 2010 03:26:51 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NVh32-0008Nm-VG for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:49 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NVh2y-0008Mo-6M for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:48 -0500 Received: from [199.232.76.173] (port=39503 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NVh2x-0008Ml-LV for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:43 -0500 Received: from mx20.gnu.org ([199.232.41.8]:3114) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NVh2w-0005XI-Ph for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:42 -0500 Received: from mx1.redhat.com ([209.132.183.28]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NVh2w-0002Nw-1M for qemu-devel@nongnu.org; Fri, 15 Jan 2010 02:56:42 -0500 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0F7ueN4007718 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 15 Jan 2010 02:56:41 -0500 Received: from localhost.localdomain (vpn1-4-51.ams2.redhat.com [10.36.4.51]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0F7ubQJ021725 for ; Fri, 15 Jan 2010 02:56:40 -0500 From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Fri, 15 Jan 2010 08:56:36 +0100 Message-Id: <1263542196-12842-4-git-send-email-pbonzini@redhat.com> In-Reply-To: <1263542196-12842-1-git-send-email-pbonzini@redhat.com> References: <1263542196-12842-1-git-send-email-pbonzini@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 X-detected-operating-system: by mx20.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Subject: [Qemu-devel] [PATCH 3/3] fix wrong indentation 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: Paolo Bonzini --- cpu-exec.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/cpu-exec.c b/cpu-exec.c index a426db9..2f119a9 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -588,11 +588,9 @@ int cpu_exec(CPUState *env1) /* see if we can patch the calling TB. When the TB spans two pages, we cannot safely do a direct jump. */ - { - if (next_tb != 0 && tb->page_addr[1] == -1) { + if (next_tb != 0 && tb->page_addr[1] == -1) { tb_add_jump((TranslationBlock *)(next_tb & ~3), next_tb & 3, tb); } - } spin_unlock(&tb_lock); env->current_tb = tb;