From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10493 invoked by alias); 7 May 2012 19:36:04 -0000 Received: (qmail 10307 invoked by uid 22791); 7 May 2012 19:36:03 -0000 X-SWARE-Spam-Status: No, hits=-5.5 required=5.0 tests=AWL,BAYES_00,FAKE_REPLY_C,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,SPF_HELO_PASS,T_RP_MATCHES_RCVD 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; Mon, 07 May 2012 19:35:45 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q47JZjqb001839 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 7 May 2012 15:35:45 -0400 Received: from host2.jankratochvil.net (ovpn-116-17.ams2.redhat.com [10.36.116.17]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q47JZdEr025267 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Mon, 7 May 2012 15:35:42 -0400 Date: Mon, 07 May 2012 19:36:00 -0000 From: Jan Kratochvil To: Sergio Durigan Junior Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 4/6] Implement support for SystemTap probes Message-ID: <20120507193538.GA6283@host2.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120411184233.GA27572@host2.jankratochvil.net> <20111104162648.GA30571@host1.jankratochvil.net> <20110419164241.GA17534@host1.jankratochvil.net> 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: 2012-05/txt/msg00187.txt.bz2 Hi Sergio, I have found I have asked three times on this list (IIRC even elsewhere) to fix this debuginfo probes bug and in the end it got checked in with this bug anyway. Could you fix it, please? Thanks, Jan On Tue, 19 Apr 2011 18:42:41 +0200, Jan Kratochvil wrote: > there is still the bug as present on Fedora 15 with: > glibc-2.13.90-9.x86_64 > glibc-debuginfo-2.13.90-9.x86_64 > > (gdb) info probes > Provider Name Where Semaphore Object > libc lll_futex_wake 0x00007ffff61a5f7b /lib64/libc.so.6 > libc lll_futex_wake 0x00007ffff61a5f7b /usr/lib/debug/lib64/libc-2.13.90.so.debug > libc lll_futex_wake 0x00007ffff6213060 /lib64/libc.so.6 > libc lll_futex_wake 0x00007ffff6213060 /usr/lib/debug/lib64/libc-2.13.90.so.debug > libc lll_lock_wait_private 0x00007ffff61e5a84 /lib64/libc.so.6 > libc lll_lock_wait_private 0x00007ffff61e5a84 /usr/lib/debug/lib64/libc-2.13.90.so.debug > [...] > > That is everything is duplicate for the separate debug info files. + On Fri, 04 Nov 2011 17:26:48 +0100, Jan Kratochvil wrote: > Also I think you should discard the separate debug info objfiles. I find > wrong to display: > 0x37aa200000 0x37aa222000 0x22000 /usr/lib/debug/lib64/ld-2.14.90.so.debug > when it in fact means: > 0x37aa200000 0x37aa222000 0x22000 /lib64/ld-2.14.90.so + On Wed, 11 Apr 2012 20:42:33 +0200, Jan Kratochvil wrote: > $ gdb /lib64/ld-linux-x86-64.so.2 > (gdb) info probes > Provider Name Where Semaphore Object > - You have columns widths wrongly computed. > rtld lll_futex_wake 0x000000000000ab2e /usr/lib/debug/lib64/ld-2.15.so.debug > rtld lll_futex_wake 0x000000000000ab2e /usr/lib64/ld-linux-x86-64.so.2 > [...] > - You do not filter out separate debug info files or rather unify it somehow.