From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3662 invoked by alias); 14 Jul 2014 13:54:20 -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 3610 invoked by uid 48); 14 Jul 2014 13:54:17 -0000 From: "dsmith at redhat dot com" To: systemtap@sourceware.org Subject: [Bug testsuite/17155] New: systemtap.examples/profiling/functioncallcount.stp failures on x86_64 Date: Mon, 14 Jul 2014 13:54:00 -0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: systemtap X-Bugzilla-Component: testsuite 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: 2014-q3/txt/msg00027.txt.bz2 https://sourceware.org/bugzilla/show_bug.cgi?id=17155 Bug ID: 17155 Summary: systemtap.examples/profiling/functioncallcount.stp failures on x86_64 Product: systemtap Version: unspecified Status: NEW Severity: normal Priority: P2 Component: testsuite Assignee: systemtap at sourceware dot org Reporter: dsmith at redhat dot com When I run the systemtap.examples/check.exp testcase (which tests all the examples), the functioncallcount.stp example fails about half the time on x86_64. When it fails, I see this in systemtap.log: ==== ERROR: probe overhead exceeded threshold WARNING: Number of errors: 1, skipped probes: 0 WARNING: /usr/local/bin/staprun exited with status: 1 Pass 5: run failed. [man error::pass5] child process exited abnormally RC 1 FAIL: systemtap.examples/profiling/functioncallcount run ==== The guts of functioncallcount.stp look like: ==== probe kernel.function(@1).call { # probe functions listed on commandline called[probefunc()] <<< 1 # add a count efficiently } global called probe end { foreach (fn in called-) # Sort by call count (in decreasing order) # (fn+ in called) # Sort by function name printf("%s %d\n", fn, @count(called[fn])) exit() } ==== Because of bug #13693, probefunc() was rewritten and now has a higher overhead. If we switch to ppfunc(), this example script should work more often. (The use of the new probefunc() may also be contributing to bug #17140) -- You are receiving this mail because: You are the assignee for the bug.