diff options
author | mmason <mmason> | 2007-01-21 02:13:09 +0000 |
---|---|---|
committer | mmason <mmason> | 2007-01-21 02:13:09 +0000 |
commit | cc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372 (patch) | |
tree | 3b0c622a4d587f2b72f03b3b895a3173c20ee172 /testsuite/systemtap.base/kmodule.stp | |
parent | c4ae8cfe0247e025df7184390db3dec36dcf9263 (diff) | |
download | systemtap-steved-cc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372.tar.gz systemtap-steved-cc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372.tar.xz systemtap-steved-cc11b5bdf0b0bdc4c4eaf79251b52fbeba41a372.zip |
Updated kmodule.stp test to look for other modules when ext3 isn't a module.
Diffstat (limited to 'testsuite/systemtap.base/kmodule.stp')
-rw-r--r-- | testsuite/systemtap.base/kmodule.stp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/systemtap.base/kmodule.stp b/testsuite/systemtap.base/kmodule.stp index e8f0287f..e8e9ee26 100644 --- a/testsuite/systemtap.base/kmodule.stp +++ b/testsuite/systemtap.base/kmodule.stp @@ -12,7 +12,9 @@ probe begin log("systemtap starting probe") } -probe module("ext3").function("ext3_sync_file") +probe module("ext3").function("ext3_sync_file") ?, + module("sd_mod").function("sd_rw_intr") ? , + module("ide").function("ide_intr") ? { ++count; } |