public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* Version 0.6.1 systemtap for Fedora 8 and available for testing
@ 2008-01-24 16:49 William Cohen
  2008-01-29 15:51 ` Steve Dickson
  0 siblings, 1 reply; 3+ messages in thread
From: William Cohen @ 2008-01-24 16:49 UTC (permalink / raw)
  To: SystemTAP

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:

yum upgrade "systemtap*" --enablerepo=updates-testing

yum install "systemtap*" --enablerepo=updates-testing


Vote whether the testing was successful or not on:

https://admin.fedoraproject.org/updates/F8/FEDORA-2008-0862

When three or more votes "Works for me" on the updates page are made the rpms 
will be automatically pushed to F8 stable updates.

There is also a equivalent version built for Fedora rawhide:

http://koji.fedoraproject.org/koji/buildinfo?buildID=32047

-Will

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Version 0.6.1 systemtap for Fedora 8 and available for testing
  2008-01-24 16:49 Version 0.6.1 systemtap for Fedora 8 and available for testing William Cohen
@ 2008-01-29 15:51 ` Steve Dickson
  2008-01-29 16:40   ` William Cohen
  0 siblings, 1 reply; 3+ messages in thread
From: Steve Dickson @ 2008-01-29 15:51 UTC (permalink / raw)
  To: William Cohen; +Cc: SystemTAP

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.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Version 0.6.1 systemtap for Fedora 8 and available for testing
  2008-01-29 15:51 ` Steve Dickson
@ 2008-01-29 16:40   ` William Cohen
  0 siblings, 0 replies; 3+ messages in thread
From: William Cohen @ 2008-01-29 16:40 UTC (permalink / raw)
  To: Steve Dickson; +Cc: SystemTAP

[-- Attachment #1: Type: text/plain, Size: 1275 bytes --]

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

[-- Attachment #2: stack-i386_else.diff --]
[-- Type: text/x-patch, Size: 1082 bytes --]

? 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  <fche@elastic.org>
+
+	* stack-i386.c (__stp_stack_print): Correct #elif->#else typo.
+
 2008-01-14  Martin Hunt  <hunt@redhat.com>
 
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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-01-29 16:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-01-24 16:49 Version 0.6.1 systemtap for Fedora 8 and available for testing William Cohen
2008-01-29 15:51 ` Steve Dickson
2008-01-29 16:40   ` William Cohen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).