From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17600 invoked by alias); 30 Mar 2012 21:15:29 -0000 Received: (qmail 17590 invoked by uid 22791); 30 Mar 2012 21:15:28 -0000 X-SWARE-Spam-Status: No, hits=-6.2 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 30 Mar 2012 21:15:08 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q2ULF8jf010453 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 30 Mar 2012 17:15:08 -0400 Received: from [10.11.231.236] (deploy7.rdu.redhat.com [10.11.231.236]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q2ULF7D2011568; Fri, 30 Mar 2012 17:15:07 -0400 Message-ID: <4F76225B.8010600@redhat.com> Date: Fri, 30 Mar 2012 21:15:00 -0000 From: William Cohen User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.3) Gecko/20120307 Thunderbird/10.0.3 MIME-Version: 1.0 To: systemtap@sourceware.org CC: David Smith Subject: Improve build-id checking when the task we're interested in isn't 'current'. git commit causing problems on ARM and IA64 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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-q1/txt/msg00377.txt.bz2 When running tests I found the following patch causing problems on ARM and IA64 machines http://sourceware.org/git/gitweb.cgi?p=systemtap.git;a=commitdiff;h=c0456b6fda16307070e0896d3cca86f523214a5e;hp=ca73974d84f94065dbabce2a2044d17a83bade57 On ARM with a really simple example end up with: $ ../install/bin/stap -k ../systemtap/testsuite/systemtap.base/add.stp WARNING: "copy_to_user_page" [/tmp/stapgL32Wo/stap_7644.ko] undefined! Error inserting module '/tmp/stapgL32Wo/stap_7644.ko': Unknown symbol in module WARNING: /media/greatplains/wcohen/systemtap_write/install/bin/staprun exited with status: 1 Pass 5: run failed. Try again with another '--vp 00001' option. Keeping temporary directory "/tmp/stapgL32Wo" On IA64 same example ends up with: $ ../install/bin/stap -k ../systemtap/testsuite/systemtap.base/add.stp WARNING: "flush_icache_range" [/tmp/staprfDqn5/stap_29610.ko] undefined! Error inserting module '/tmp/staprfDqn5/stap_29610.ko': Unknown symbol in module WARNING: /home/wcohen/systemtap_write/install/bin/staprun exited with status: 1 Pass 5: run failed. Try again with another '--vp 00001' option. Keeping temporary directory "/tmp/staprfDqn5" It looks like the reordering of the includes is causing a problem on these machines. -Will