From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13714 invoked by alias); 14 Mar 2008 06:27:54 -0000 Received: (qmail 13704 invoked by uid 22791); 14 Mar 2008 06:27:53 -0000 X-Spam-Check-By: sourceware.org Received: from mtagate1.de.ibm.com (HELO mtagate1.de.ibm.com) (195.212.29.150) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 14 Mar 2008 06:27:26 +0000 Received: from d12nrmr1607.megacenter.de.ibm.com (d12nrmr1607.megacenter.de.ibm.com [9.149.167.49]) by mtagate1.de.ibm.com (8.13.8/8.13.8) with ESMTP id m2E6RNqc088402 for ; Fri, 14 Mar 2008 06:27:23 GMT Received: from d12av02.megacenter.de.ibm.com (d12av02.megacenter.de.ibm.com [9.149.165.228]) by d12nrmr1607.megacenter.de.ibm.com (8.13.8/8.13.8/NCO v8.7) with ESMTP id m2E6RNZQ1855670 for ; Fri, 14 Mar 2008 07:27:23 +0100 Received: from d12av02.megacenter.de.ibm.com (loopback [127.0.0.1]) by d12av02.megacenter.de.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id m2E6RNPm002868 for ; Fri, 14 Mar 2008 07:27:23 +0100 Received: from bbkeks.de.ibm.com (dyn-9-152-248-39.boeblingen.de.ibm.com [9.152.248.39]) by d12av02.megacenter.de.ibm.com (8.12.11.20060308/8.12.11) with ESMTP id m2E6RMu2002863 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Mar 2008 07:27:23 +0100 Message-ID: <47DA1ACA.1030205@de.ibm.com> Date: Fri, 14 Mar 2008 06:27:00 -0000 From: Markus Deuling User-Agent: Thunderbird 2.0.0.12 (X11/20080213) MIME-Version: 1.0 To: GDB Patches CC: Ulrich Weigand Subject: [rfc] Fix info spu mailbox command Content-Type: multipart/mixed; boundary="------------040203070104040109080801" Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2008-03/txt/msg00158.txt.bz2 This is a multi-part message in MIME format. --------------040203070104040109080801 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Content-length: 409 Hi, gdb.arch/spu-info.exp FAILs when testing "info spu mailbox" command due to a fix http://patchwork.ozlabs.org/cbe-oss-dev/patch?id=15729 in the linux kernel which initializes the mailbox values correct now. Ok ? ChangeLog: * gdb.arch/spu-info.exp (info spu mailbox): Use correct initialisation value. -- Markus Deuling GNU Toolchain for Linux on Cell BE deuling@de.ibm.com --------------040203070104040109080801 Content-Type: text/plain; name="fix-spu-mailbox" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fix-spu-mailbox" Content-length: 634 diff -urpN src/gdb/testsuite/gdb.arch/spu-info.exp dev/gdb/testsuite/gdb.arch/spu-info.exp --- src/gdb/testsuite/gdb.arch/spu-info.exp 2008-01-01 23:53:18.000000000 +0100 +++ dev/gdb/testsuite/gdb.arch/spu-info.exp 2008-03-14 07:23:06.000000000 +0100 @@ -201,7 +201,7 @@ gdb_test "finish" "" "finish" # 'info spu mailbox' should be empty. c_to "Marker Mbox" gdb_test "info spu mailbox" \ - "SPU Outbound Mailbox.*0xc0000000.*SPU Outbound Interrupt Mailbox.*0xc0000000.*" \ + "SPU Outbound Mailbox.*0x00000000.*SPU Outbound Interrupt Mailbox.*0x00000000.*" \ "info spu mailbox" # 'info spu mailbox' should now contain data. --------------040203070104040109080801--