diff options
author | ddomingo <ddomingo@redhat.com> | 2008-10-02 23:26:24 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2008-10-02 23:26:24 +1000 |
commit | 06af1f31b5cf2eacfee45d780d59059f56270a55 (patch) | |
tree | 0ca2c98fbd1f094553e9eefc6cf1ab7a75a1eb18 /testsuite/semok | |
parent | 4125a78ae5fc99abb8606bf0eda2a08b3e2d300c (diff) | |
parent | caf566cb319004a314b09ea6fd6781941db89f8e (diff) | |
download | systemtap-steved-06af1f31b5cf2eacfee45d780d59059f56270a55.tar.gz systemtap-steved-06af1f31b5cf2eacfee45d780d59059f56270a55.tar.xz systemtap-steved-06af1f31b5cf2eacfee45d780d59059f56270a55.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/semok')
-rwxr-xr-x | testsuite/semok/thirtythree.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/semok/thirtythree.stp b/testsuite/semok/thirtythree.stp index d5171f66..90070370 100755 --- a/testsuite/semok/thirtythree.stp +++ b/testsuite/semok/thirtythree.stp @@ -1,5 +1,5 @@ #! stap -p2 # Per bz3016, this should get through the semantic pass without warnings. probe kernel.function("do_mpage_readpage") { - printf("\n page ->inuse %u",$page->inuse) + printf("\n page->mapping %p",$page->mapping) } |