From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15150 invoked by alias); 20 Oct 2012 03:39:16 -0000 Received: (qmail 15141 invoked by uid 22791); 20 Oct 2012 03:39:15 -0000 X-SWARE-Spam-Status: No, hits=-4.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,KHOP_RCVD_TRUST,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-ea0-f169.google.com (HELO mail-ea0-f169.google.com) (209.85.215.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 20 Oct 2012 03:39:12 +0000 Received: by mail-ea0-f169.google.com with SMTP id k11so431323eaa.0 for ; Fri, 19 Oct 2012 20:39:11 -0700 (PDT) MIME-Version: 1.0 Received: by 10.14.184.1 with SMTP id r1mr4133670eem.4.1350704351581; Fri, 19 Oct 2012 20:39:11 -0700 (PDT) Received: by 10.14.132.199 with HTTP; Fri, 19 Oct 2012 20:39:11 -0700 (PDT) Date: Sat, 20 Oct 2012 03:39:00 -0000 Message-ID: Subject: Fwd: From: Wenhua Zhang To: systemtap@sourceware.org Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes 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-q4/txt/msg00100.txt.bz2 Hi =A3=AC When I run the stap command as below, /opt/systemtap/bin/stap --ldd -d /usr/local/nginx/sbin/nginx --all-modules -D MAXMAPENTRIES=3D5120 -D MAXACTION=3D20000 -D MAXTRACE=3D50 -D MAXSTRINGLEN=3D1024 -D MAXBACKTRACE=3D100 -x 25017 a.stp --vp 00001 > a.out There is an error: WARNING: missing unwind/symbol data for module 'stap_97bdcbebec34bca89d728c7b361aa64_24788' WARNING: missing unwind/symbol data for module 'uprobes' Pass 5: starting run. ERROR: probe timer.profile registration error (rc -16) The stap file as: global s; global quit =3D 0; probe timer.profile { if (pid() =3D=3D target()) { if (quit) { foreach (i in s-) { print_ustack(i); printf("\t%d\n", @count(s[i])); } exit() } else { s[ubacktrace()] <<< 1; } } } probe timer.s(20) { quit =3D 1 } Can you help me find what happened and what should I do to resolve it? Thanks very much. Best Wishes, Wenhua