From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2895 invoked by alias); 29 Jan 2008 16:40:53 -0000 Received: (qmail 2887 invoked by uid 22791); 29 Jan 2008 16:40:52 -0000 X-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,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.31) with ESMTP; Tue, 29 Jan 2008 16:40:35 +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 m0TGeXV2028544 for ; Tue, 29 Jan 2008 11:40:33 -0500 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m0TGeVDs021560; Tue, 29 Jan 2008 11:40:31 -0500 Received: from dhcp231-154.rdu.redhat.com (dhcp231-154.rdu.redhat.com [10.11.231.154]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id m0TGeUbS002972; Tue, 29 Jan 2008 11:40:31 -0500 Message-ID: <479F56FE.8010802@redhat.com> Date: Tue, 29 Jan 2008 16:40:00 -0000 From: William Cohen User-Agent: Thunderbird 2.0.0.9 (X11/20071115) MIME-Version: 1.0 To: Steve Dickson CC: SystemTAP Subject: Re: Version 0.6.1 systemtap for Fedora 8 and available for testing References: <4798C18E.9030100@redhat.com> <479F4B1B.1040500@RedHat.com> In-Reply-To: <479F4B1B.1040500@RedHat.com> Content-Type: multipart/mixed; boundary="------------090203020703090703020203" X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-Virus-Checked: Checked by ClamAV on sourceware.org 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: 2008-q1/txt/msg00171.txt.bz2 This is a multi-part message in MIME format. --------------090203020703090703020203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 1275 Steve Dickson wrote: > Hey Will, > > William Cohen wrote: >> Hi All, >> >> There is a newer version of systemtap, 0.6.1-1.fc8, built for Fedora 8. >> It is currently available for testing. With some feedback of successful >> testing it >> will be moved to fedora 8 stable updates. The fedora systemtap testing >> rpms can be obtained from via yum with either of the following commands: > I'm getting the the following syntax error with systemtap, 0.6.1-1.fc9 > on the latest rawhide kernel (2.6.24-3): > > /usr/share/systemtap/runtime/stack-i386.c:26:22: error: #if with no expression > In file included from /usr/share/systemtap/runtime/stack.c:34, > from /tmp/stapkrsLQD/stap_b2ef1e50aab83af35ff4ac429676aa44_12262.c:44: > /usr/share/systemtap/runtime/stack-i386.c: In function '__stp_stack_print': > /usr/share/systemtap/runtime/stack-i386.c:30: error: 'ebp' undeclared (first use in this function) > /usr/share/systemtap/runtime/stack-i386.c:30: error: (Each undeclared identifier is reported only once > /usr/share/systemtap/runtime/stack-i386.c:30: error: for each function it appears in.) > > steved. That problem has been fixed in the cvs repostitory recently. The attached patch shows what needs to be fixed up. To correct the problem. -Will --------------090203020703090703020203 Content-Type: text/x-patch; name="stack-i386_else.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="stack-i386_else.diff" Content-length: 1082 ? testsuite/systemtap.syscall/hidden Index: runtime/ChangeLog =================================================================== RCS file: /cvs/systemtap/src/runtime/ChangeLog,v retrieving revision 1.237 retrieving revision 1.238 diff -U2 -u -r1.237 -r1.238 --- runtime/ChangeLog 15 Jan 2008 16:57:20 -0000 1.237 +++ runtime/ChangeLog 27 Jan 2008 18:27:40 -0000 1.238 @@ -1,2 +1,6 @@ +2008-01-27 Frank Ch. Eigler + + * stack-i386.c (__stp_stack_print): Correct #elif->#else typo. + 2008-01-14 Martin Hunt Index: runtime/stack-i386.c =================================================================== RCS file: /cvs/systemtap/src/runtime/stack-i386.c,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -u -r1.6 -r1.7 --- runtime/stack-i386.c 18 Jan 2008 08:47:31 -0000 1.6 +++ runtime/stack-i386.c 27 Jan 2008 18:27:40 -0000 1.7 @@ -24,5 +24,5 @@ #ifdef STAPCONF_X86_UNIREGS unsigned long ebp = regs->bp; - #elif + #else unsigned long ebp = regs->ebp; #endif --------------090203020703090703020203--