From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11844 invoked by alias); 9 Jun 2006 14:39:57 -0000 Received: (qmail 11836 invoked by uid 22791); 9 Jun 2006 14:39:56 -0000 X-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mga01.intel.com (HELO fmsmga101-1.fm.intel.com) (192.55.52.88) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 09 Jun 2006 14:39:54 +0000 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101-1.fm.intel.com with ESMTP; 09 Jun 2006 07:39:47 -0700 Received: from orsmsx331.jf.intel.com (HELO orsmsx331.amr.corp.intel.com) ([192.168.65.56]) by fmsmga001.fm.intel.com with ESMTP; 09 Jun 2006 07:39:46 -0700 X-IronPort-AV: i="4.05,224,1146466800"; d="scan'208"; a="49621288:sNHT56741895" Received: from orsmsx312.amr.corp.intel.com ([192.168.65.62]) by orsmsx331.amr.corp.intel.com with Microsoft SMTPSVC(6.0.3790.211); Fri, 9 Jun 2006 07:39:46 -0700 Received: from pdsmsx405.ccr.corp.intel.com ([172.16.12.95]) by orsmsx312.amr.corp.intel.com with Microsoft SMTPSVC(6.0.3790.211); Fri, 9 Jun 2006 07:39:45 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable Subject: RE: Unsupported relocation type Date: Fri, 09 Jun 2006 14:39:00 -0000 Message-ID: <9FBCE015AF479F46B3B410499F3AE05BEDA9F6@pdsmsx405> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Unsupported relocation type Thread-Index: AcaL0SbIaqoOfgXPSDubnZcyt2z//AAAKFKw From: "Mao, Bibo" To: "Alan David Brunelle" , X-OriginalArrivalTime: 09 Jun 2006 14:39:45.0126 (UTC) FILETIME=[8CFA8860:01C68BD2] X-IsSubscribed: yes Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org X-SW-Source: 2006-q2/txt/msg00593.txt.bz2 IA64 elfutils tool needs one patch, it is word-wrapped because of my window= s email client:( Thanks Bibo,mao --- elfutils-0.120/backends/ia64_symbol.c 2006-04-04 18:17:37.0000000= 00 -0400 +++ elfutils-0.120.bak/backends/ia64_symbol.c 2006-04-21 09:18:15.0000000= 00 -0400 @@ -110,10 +110,12 @@ ia64_reloc_simple_type (Ebl *ebl, int ty switch (type) { case R_IA64_DIR32MSB: + case R_IA64_SECREL32MSB: if (ebl->data =3D=3D ELFDATA2MSB) return ELF_T_WORD; break; case R_IA64_DIR32LSB: + case R_IA64_SECREL32LSB: if (ebl->data =3D=3D ELFDATA2LSB) return ELF_T_WORD; break; >-----Original Message----- >From: systemtap-owner@sourceware.org [mailto:systemtap-owner@sourceware.or= g] >On Behalf Of Alan David Brunelle >Sent: 2006=C4=EA6=D4=C29=C8=D5 22:29 >To: systemtap@sourceware.org >Subject: Unsupported relocation type > >I'm starting to utilize SystemTap (btw: this is _really_ cool stuff), >anyhow, I've been able to run a script on an Opteron system (RHEL4 U3), >but on an IA64 system (RHEL4 U3) I see the following error : > >[root@powis 06_09]# stap -vg scwrite.stp >Pass 1: parsed user script and 10 library script(s) in 79usr/0sys/80real m= s. >semantic error: cannot find module scsi_mod debuginfo: Unsupported >relocation type >semantic error: no match for probe point > while: resolving probe point >module("*scsi_mod*").function("scsi_dispatch_cmd") >semantic error: cannot find module scsi_mod debuginfo: Unsupported >relocation type >semantic error: no match for probe point > while: resolving probe point >module("*scsi_mod*").function("scsi_done")Pass 2: analyzed script: 2 >probe(s), 4 function(s), 7 global(s) in 2usr/1sys/4real ms. >Pass 2: analysis failed. > >As noted, this runs fine on the Opteron box. stap -V returns: > >[root@powis 06_09]# stap -V >SystemTap translator/driver (version 0.5.4 built 2006-02-02) >Copyright (C) 2005-2006 Red Hat, Inc. and others >This is free software; see the source for copying conditions. > >Googling around showed that a similar error was fixed by going to 0.5.4 >- is there something IA64-specific I should be looking at? > >Thanks, >Alan