From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21697 invoked by alias); 13 Mar 2012 08:17:40 -0000 Received: (qmail 21678 invoked by uid 22791); 13 Mar 2012 08:17:36 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-yx0-f169.google.com (HELO mail-yx0-f169.google.com) (209.85.213.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 13 Mar 2012 08:17:24 +0000 Received: by yenm8 with SMTP id m8so303221yen.0 for ; Tue, 13 Mar 2012 01:17:23 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.78.206 with SMTP id m14mr3457101qck.78.1331626643524; Tue, 13 Mar 2012 01:17:23 -0700 (PDT) Received: by 10.229.44.208 with HTTP; Tue, 13 Mar 2012 01:17:23 -0700 (PDT) Date: Tue, 13 Mar 2012 08:17:00 -0000 Message-ID: Subject: problem in run systemtap script From: ch huang To: systemtap@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 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 X-SW-Source: 2012-q1/txt/msg00290.txt.bz2 how to handle this? # cat exec.stp probe module("ext3").function("*").call { printf("%s -> %s\n", thread_indent(1), probefunc()) } probe module("ext3").function("*").return { printf("%s <- %s\n", thread_indent(-1), probefunc()) } # stap exec.stp -o myout WARNING: probe module("ext3").function("ext3_journalled_set_page_dirty@fs/ext3/inode.c:1780").call (address 0xffffffff8804dff8) registration error (rc -22) WARNING: probe module("ext3").function("bget_one@fs/ext3/inode.c:1419").call (address 0xffffffff8804d50a) registration error (rc -22) WARNING: probe module("ext3").function("bput_one@fs/ext3/inode.c:1425").call (address 0xffffffff8804d511) registration error (rc -22) WARNING: probe module("ext3").function("ext3_journalled_set_page_dirty@fs/ext3/inode.c:1780").return (address 0xffffffff8804dff8) registration error (rc -22) WARNING: probe module("ext3").function("bget_one@fs/ext3/inode.c:1419").return (address 0xffffffff8804d50a) registration error (rc -22) WARNING: probe module("ext3").function("bput_one@fs/ext3/inode.c:1425").return (address 0xffffffff8804d511) registration error (rc -22) 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. Try again with another '--vp 00001' option.