From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14200 invoked by alias); 19 May 2009 15:27:17 -0000 Received: (qmail 14191 invoked by uid 22791); 19 May 2009 15:27:16 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_32,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 19 May 2009 15:27:07 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n4JFQte6025288; Tue, 19 May 2009 11:26:55 -0400 Received: from fche.csb (vpn-10-90.bos.redhat.com [10.16.10.90]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n4JFQrdV030010; Tue, 19 May 2009 11:26:53 -0400 Received: by fche.csb (Postfix, from userid 2569) id B47AD58480; Tue, 19 May 2009 11:26:52 -0400 (EDT) Date: Tue, 19 May 2009 15:27:00 -0000 From: "Frank Ch. Eigler" To: zshan Cc: systemtap Subject: Re: Re: Re: Fw: Re: problem when running the following script Message-ID: <20090519152652.GD24007@redhat.com> References: <20090519145400.GA24007@redhat.com> <200905192316411523143@cse.buaa.edu.cn> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200905192316411523143@cse.buaa.edu.cn> User-Agent: Mutt/1.4.2.2i 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: 2009-q2/txt/msg00628.txt.bz2 Hi - On Tue, May 19, 2009 at 11:16:43PM +0800, zshan wrote: > yes, the tun.ko.debug really exists > find ./ -name "tun.ko.debug" > ./usr/lib/debug/lib/modules/2.6.18-92.el5PAE/kernel/drivers/net/tun.ko.debug > ./usr/lib/debug/lib/modules/2.6.18-92.el5/kernel/drivers/net/tun.ko.debug > then what should I do? Find out what systemtap is looking for: % stap --vp 25 -e 'probe module("tun").function("tun_net_open") {}' -p4 and/or % strace -f stap ... 2>&1 | grep tun.ko - FChE