From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 780 invoked by alias); 20 Aug 2013 19:54:36 -0000 Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org Received: (qmail 751 invoked by uid 48); 20 Aug 2013 19:54:35 -0000 From: "dsmith at redhat dot com" To: systemtap@sourceware.org Subject: [Bug tapsets/15866] New: on rawhide, the 'signal.pending' and 'signal.pending.return' probe aliases are broken Date: Tue, 20 Aug 2013 19:54:00 -0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: systemtap X-Bugzilla-Component: tapsets X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dsmith at redhat dot com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: systemtap at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2013-q3/txt/msg00160.txt.bz2 http://sourceware.org/bugzilla/show_bug.cgi?id=15866 Bug ID: 15866 Summary: on rawhide, the 'signal.pending' and 'signal.pending.return' probe aliases are broken Product: systemtap Version: unspecified Status: NEW Severity: normal Priority: P2 Component: tapsets Assignee: systemtap at sourceware dot org Reporter: dsmith at redhat dot com On rawhide (3.11.0-0.rc3.git1.1.fc20.x86_64), the 'signal.pending' and 'signal.pending.return' probe aliases are broken ==== # stap -p4 -e 'probe signal.pending { printf("%p, %d\n", sigset_add, sigset_size) }' semantic error: not accessible at this address [man error::dwarf] (0xffffffff8108f56b, dieoffset: 0x9e2cf7): identifier '$set' at /usr/local/share/systemtap/tapset/linux/signal.stp:606:16 source: sigset_add=$set ^ semantic error: not accessible at this address [man error::dwarf] (0xffffffff8108f56b, dieoffset: 0x9e2cee): identifier '$sigsetsize' at :607:17 source: sigset_size=$sigsetsize ^ Pass 2: analysis failed. [man error::pass2] # stap -p4 -e 'probe signal.pending.return {}' WARNING: cannot probe .return of 1 inlined functions do_sigpending semantic error: while resolving probe point: identifier 'kernel' at /usr/local/share/systemtap/tapset/linux/signal.stp:615:31 source: probe signal.pending.return = kernel.function("do_sigpending").return ^ semantic error: no match (similar functions: do_sigpending, SyS_sigpending, sys_sigpending, SYSC_sigpending, init_sigpending) semantic error: while resolving probe point: identifier 'signal' at :1:7 source: probe signal.pending.return {} ^ semantic error: no match Pass 2: analysis failed. [man error::pass2] ==== Both errors happen because the kernel function 'do_sigpending' is always inlined on this rawhide kernel, which means systemtap has trouble finding its arguments and a .return probe point doesn't exist. -- You are receiving this mail because: You are the assignee for the bug.