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]

Module Built Seperate from Kernel


Is there a way to specify in the stap command file the location of a module
and it's files that are built independent of the kernel directory path?

For instance I have the following:

probe module("ocf").function("*") {
printf ("%s -> %s\n", thread_indent(1), probefunc())
}

probe module("icp_drv").function("*") {
printf ("%s -> %s\n", thread_indent(1), probefunc())
}

I get the following error:

semantic error: no match for probe point while resolving probe point
module("icp_drv").function("*")

Although the module is loaded, I don't see it or its' functions listed when
I use the -p2 option.  When I do a -p1 and look at the search trace, the
module build and file directory is not searched.  Is there a way to tell it
to search the module directory?

The module directory is in /root/driver/icp_drv 

Thanks,

Gerald Rogers
-- 
View this message in context: http://www.nabble.com/Module-Built-Seperate-from-Kernel-tp15048392p15048392.html
Sent from the Sourceware - systemtap mailing list archive at Nabble.com.


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