From: wenji Date: Fri, 17 Aug 2007 09:29:27 +0000 (+0000) Subject: 2007-08-17 Wenji Huang X-Git-Tag: release-0.6~298 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=f1867662f726e00fc365b36ec66d83125348382b;p=systemtap.git 2007-08-17 Wenji Huang * ioscheduler.stp (ioscheduler.elv_add_request, ioscheduler.elv_completed_request): Add checking $rq. * memory.stp (_IS_ZERO_PAGE): Modify reference to arguments. --- diff --git a/tapset/ChangeLog b/tapset/ChangeLog index 7c96175cb..c2f8029a8 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,10 @@ +2007-08-17 Wenji Huang + + * ioscheduler.stp (ioscheduler.elv_add_request, + ioscheduler.elv_completed_request): Add checking $rq. + + * memory.stp (_IS_ZERO_PAGE): Modify reference to arguments. + 2007-08-16 Frank Ch. Eigler PR 1315. @@ -25,13 +32,13 @@ From Cai Fei * syscalls.stp (sts_getpgid): Add pid arg. -2007-08-15 Wenji Huang +2007-08-16 Wenji Huang - * errno.stp: Fix Typo for EADV + * errno.stp: Fix Typo for EADV. 2007-08-15 Wenji Huang - * aux_syscalls.stp(_reboot_flag_str,_futex_op_str,_mprotect_prot_str, + * aux_syscalls.stp (_reboot_flag_str,_futex_op_str,_mprotect_prot_str, _fcntl_cmd_str, _quotaclt_cmd_str, _sock_type_str, _rlimit_resource_str, _rusage_who_str): Add new entries, modify default return string. diff --git a/tapset/memory.stp b/tapset/memory.stp index 5173bf8c8..db17ca4c1 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)); %}