diff options
author | wenji <wenji> | 2007-08-17 09:29:27 +0000 |
---|---|---|
committer | wenji <wenji> | 2007-08-17 09:29:27 +0000 |
commit | f1867662f726e00fc365b36ec66d83125348382b (patch) | |
tree | 2d5d7463f5fb5db7895c2bcbf0bbf12219505b1d /tapset/memory.stp | |
parent | 1902aec1df32bb36c7e71b829a65543e9475ced3 (diff) | |
download | systemtap-steved-f1867662f726e00fc365b36ec66d83125348382b.tar.gz systemtap-steved-f1867662f726e00fc365b36ec66d83125348382b.tar.xz systemtap-steved-f1867662f726e00fc365b36ec66d83125348382b.zip |
2007-08-17 Wenji Huang <wenji.huang@oracle.com>
* ioscheduler.stp (ioscheduler.elv_add_request,
ioscheduler.elv_completed_request): Add checking $rq.
* memory.stp (_IS_ZERO_PAGE): Modify reference to arguments.
Diffstat (limited to 'tapset/memory.stp')
-rw-r--r-- | tapset/memory.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapset/memory.stp b/tapset/memory.stp index 5173bf8c..db17ca4c 100644 --- a/tapset/memory.stp +++ b/tapset/memory.stp @@ -62,7 +62,7 @@ function addr_to_node:long(addr:long) /* pure */ /* Return whether a page to be copied is a zero page. */ function _IS_ZERO_PAGE:long(from:long, vaddr:long) %{ /* pure */ - THIS->__retvalue = (from == ZERO_PAGE(vaddr)); + THIS->__retvalue = (THIS->from == (long) ZERO_PAGE(THIS->vaddr)); %} |