This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tapsets/4592] access to $bio ioblock.request probe in ioblock.stp fails


------- Additional Comments From wcohen at redhat dot com  2007-06-04 20:52 -------
The following probe show $bio as being zero, need to determine whether this is
due to faulty debuginfo or bad code generated for accessing function arguments.

#! stap
global teststr
probe begin { log("systemtap starting probe") }

probe end { 
   log("systemtap ending probe")
   printf("%s", teststr)
}


probe kernel.function ("generic_make_request")
{
   printf ("bio = %p \n", $bio);
}


$ ../../install/bin/stap -k /tmp/ioblocktest2.stp 
systemtap starting probe
bio = 0x0000000000000000 
bio = 0x0000000000000000 
bio = 0x0000000000000000 
...



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=4592

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]