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/5510] no match while resolving probe point sunrpc.sched.release_task.return


------- Additional Comments From mhiramat at redhat dot com  2008-01-09 23:22 -------
(In reply to comment #0)
> probe sunrpc.sched.release_task.return =
> kernel.function("rpc_release_task").return ?,
> module("sunrpc").function("rpc_release_task").return ?
> {
> name = "sunrpc.sched.release_task.return"
> } 

Hmm, this code is a bit odd, because it will cause an error 
if both probe points do not exist.
I think this should use "never" and "!" like below.

---
probe sunrpc.sched.release_task.return =
kernel.function("rpc_release_task").return !,
module("sunrpc").function("rpc_release_task").return !,
never {...
---


-- 


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

------- 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]