summaryrefslogtreecommitdiffstats
path: root/runtime/staprun/staprun.c
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-08-10 15:17:35 -0700
committerJosh Stone <jistone@redhat.com>2009-08-10 15:17:35 -0700
commitaeb2727bd6742d8e4ff98882e57078f72da21b68 (patch)
tree1d8e64e172682055a3c0b8068f8dcf93dcc71042 /runtime/staprun/staprun.c
parent7f17af5c9ace193eef48246bcadf42ae9650de67 (diff)
parenta09930468b2d2bae134067d50a9b15b5ba2af548 (diff)
downloadsystemtap-steved-aeb2727bd6742d8e4ff98882e57078f72da21b68.tar.gz
systemtap-steved-aeb2727bd6742d8e4ff98882e57078f72da21b68.tar.xz
systemtap-steved-aeb2727bd6742d8e4ff98882e57078f72da21b68.zip
Merge branch 'master' of ssh://sourceware.org/git/systemtap
Diffstat (limited to 'runtime/staprun/staprun.c')
-rw-r--r--runtime/staprun/staprun.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/runtime/staprun/staprun.c b/runtime/staprun/staprun.c
index c64bf5b3..7eb7f28f 100644
--- a/runtime/staprun/staprun.c
+++ b/runtime/staprun/staprun.c
@@ -132,9 +132,14 @@ static int enable_uprobes(void)
snprintf (runtimeko, sizeof(runtimeko), "%s/uprobes/uprobes.ko",
(getenv("SYSTEMTAP_RUNTIME") ?: PKGDATADIR "/runtime"));
dbug(2, "Inserting uprobes module from SystemTap runtime %s.\n", runtimeko);
- argv[0] = NULL;
+ i = 0;
+ argv[i++] = "/sbin/insmod";
+ argv[i++] = runtimeko;
+ argv[i] = NULL;
+ if (run_as(0, 0, 0, argv[0], argv) == 0)
+ return 0;
- return insert_module(runtimeko, NULL, argv);
+ return 1; /* failure */
}
static int insert_stap_module(void)