[PATCH v2 3/3] initscript: allow scripts to load uprobes
Stefan Hajnoczi
stefanha@redhat.com
Mon Aug 11 13:25:00 GMT 2014
Scripts that rely on userspace probing must include the -u option in
their conf file:
# cat /etc/systemtap/conf.d/example.conf
example_OPT=-u
The uprobe kernel module will be loaded when the script runs.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
initscript/systemtap.in | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/initscript/systemtap.in b/initscript/systemtap.in
index ebd28e4..d61d480 100755
--- a/initscript/systemtap.in
+++ b/initscript/systemtap.in
@@ -422,6 +422,12 @@ get_run_opts () { # normalized_opts
show=0
for o in $opts; do
case $o in
+ -u)
+ # Use cached uprobes module, if available
+ if [ -f "$CACHE_PATH/uprobes/uprobes.ko" ]; then
+ echo -n "-u$CACHE_PATH/uprobes/uprobes.ko "
+ fi
+ ;;
-c|-x|-s|-o|-S)
[ $o == '-s' ] && o='-b'
[ $o == '-o' ] && mode='-D'
--
1.9.3
More information about the Systemtap
mailing list