This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [BUG] syscall.unlink no longer works after upgrading kernel to 3.7.3


On Tue, May 28, 2013 at 02:52:48PM -0400, Zheng Da wrote:
> I think I got a very similar error in Ubuntu:
> semantic error: not accessible at this address [man error::dwarf]
> (0xffffffff81480e80, dieoffset: 0x43d730b): identifier '$sdev' at
> :10:6
>         source:  if ($sdev->host->host_no == 9 && $sdev->id == 1) {
>                      ^
> I use Linux v3.8.12, and gcc version is 4.6.3.
> Is there any better fix for this problem? I checked the workaround for
> perf, but I don't know how to apply it to systemtap.

I believe the patch/commit you are looking for is:

commit 45b02a36c31d857a0a7d17fc86e1b4e9d15df680
Author: Frank Ch. Eigler <fche@redhat.com>
Date:   Tue Feb 12 21:32:30 2013 -0500

    PR15123: work around broken gcc debuginfo for -mfentry functions
    
    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54793 interferes with the
    calm zen-like state of probing function parameters in programs built
    with CFLAGS=-mfentry, due to a dwarf location-list problem.  This
    patch adds a heuristic function dwflpp::pr15123_retry_addr() that
    offers callers a post-mfentry-address alternative for locating
    variables.  Will they use it, or not?  Join us next week, as our
    heroes encounter ... angry mr. dwarf, five steps away.
    
    * dwflpp.cxx (pr15123_retry_addr): New function.
      (translate_location): Call it, in order to enable $var
      and $$parms resolution.
    * tapsets.cxx (saveargs): Call it, in order to enable
      stap -L <probe> listings.

http://sourceware.org/git/?p=systemtap.git;a=patch;h=45b02a36c31d857a0a7d17fc86e1b4e9d15df680

Cheers,

Mark


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]