From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56408 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ODRS8-00006A-Dz for qemu-devel@nongnu.org; Sat, 15 May 2010 20:11:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ODRS7-0000RT-14 for qemu-devel@nongnu.org; Sat, 15 May 2010 20:11:32 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:34573) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ODRS6-0000Q7-Sr for qemu-devel@nongnu.org; Sat, 15 May 2010 20:11:30 -0400 Received: by mail-fx0-f45.google.com with SMTP id 9so2525765fxm.4 for ; Sat, 15 May 2010 17:11:30 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=[192.168.1.2]) by skyserv with esmtp (Exim 4.71) (envelope-from ) id 1ODRS5-0002HE-4N for qemu-devel@nongnu.org; Sun, 16 May 2010 04:11:29 +0400 From: "Igor V. Kovalenko" Date: Sun, 16 May 2010 04:11:29 +0400 Message-ID: <20100516001129.8600.45273.stgit@skyserv> In-Reply-To: <20100516000710.8600.84282.stgit@skyserv> References: <20100516000710.8600.84282.stgit@skyserv> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 2/2] sparc64: fix TT_WOTHER value List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org From: Igor V. Kovalenko - fix off by one error in spill trap number bit for other window (must be bit 5) - fixes invalid instruction issue with HelenOS --- target-sparc/cpu.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-sparc/cpu.h b/target-sparc/cpu.h index 22f3ad0..27b020b 100644 --- a/target-sparc/cpu.h +++ b/target-sparc/cpu.h @@ -79,7 +79,7 @@ #define TT_DPROT 0x6c #define TT_SPILL 0x80 #define TT_FILL 0xc0 -#define TT_WOTHER 0x10 +#define TT_WOTHER (1 << 5) #define TT_TRAP 0x100 #endif