From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20362 invoked by alias); 17 Dec 2011 09:48:17 -0000 Received: (qmail 20350 invoked by uid 22791); 17 Dec 2011 09:48:16 -0000 X-SWARE-Spam-Status: No, hits=-5.2 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 17 Dec 2011 09:48:01 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id pBH9lwDB015780 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sat, 17 Dec 2011 04:47:58 -0500 Received: from host2.jankratochvil.net (ovpn-116-60.ams2.redhat.com [10.36.116.60]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id pBH9lsh9008326 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sat, 17 Dec 2011 04:47:57 -0500 Date: Sat, 17 Dec 2011 12:22:00 -0000 From: Jan Kratochvil To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: [obv] s390*: Fix build regression, remains execution regression Message-ID: <20111217094753.GA20113@host2.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes 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: 2011-12/txt/msg00562.txt.bz2 Hi Pedro, this is the obvious part, checked in. Unfortunately there is still a regression, it crashes during exec from the wrapper->real inferior on mostly any program (kernel-2.6.32-220.el6.s390x): 61562 pts/1 T \_ /root/jkratoch/redhat/archer-git/gdb/gdb -nx -x ./transcript.1 61568 pts/1 T \_ /bin/bash -c exec /root/jkratoch/redhat/archer-git/gdb/testsuite/gdb.base/watchpoint-cond-gone (gdb) run Starting program: /root/jkratoch/redhat/archer-git/gdb/testsuite/gdb.base/watchpoint-cond-gone Couldn't retrieve watchpoint status: No such process. Couldn't get registers: No such process. Thanks, Jan http://sourceware.org/ml/gdb-cvs/2011-12/msg00175.html --- src/gdb/ChangeLog 2011/12/17 06:14:44 1.13641 +++ src/gdb/ChangeLog 2011/12/17 09:43:53 1.13642 @@ -1,3 +1,9 @@ +2011-12-17 Jan Kratochvil + + Fix build regression from the PR threads/10729 fix. + * s390-nat.c (s390_insert_watchpoint, s390_remove_watchpoint): Use LP, + not LP->PTID. + 2011-12-16 Andrey Smirnov * mi/mi-main.c (mi_cmd_list_thread_groups): Rename `optind' and --- src/gdb/s390-nat.c 2011/12/14 17:20:31 1.36 +++ src/gdb/s390-nat.c 2011/12/17 09:43:53 1.37 @@ -532,7 +532,7 @@ watch_base = area; ALL_LWPS (lp) - s390_fix_watch_points (lp->ptid); + s390_fix_watch_points (lp); return 0; } @@ -560,7 +560,7 @@ xfree (area); ALL_LWPS (lp) - s390_fix_watch_points (lp->ptid); + s390_fix_watch_points (lp); return 0; }