diff options
Diffstat (limited to 'tapset')
-rw-r--r-- | tapset/ChangeLog | 7 | ||||
-rw-r--r-- | tapset/rpc.stp | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index 22f0d063..9284e11d 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,5 +1,12 @@ 2007-09-27 Zhaolei <zhaolei@cn.fujitsu.com> + From Cai Fei <caifei@cn.fujitsu.com> + * rpc.stp (sunrpc.clnt.call_sync, sunrpc.clnt.call_async): Fix + the output format of flags in argstr from hex to decimal just + to make it same as other probes. + +2007-09-27 Zhaolei <zhaolei@cn.fujitsu.com> + * tcp.stp (sendmsg.return): Fix description of size variable. * tcp.stp (recvmsg.return): Ditto. diff --git a/tapset/rpc.stp b/tapset/rpc.stp index 480c67c3..6daa7f63 100644 --- a/tapset/rpc.stp +++ b/tapset/rpc.stp @@ -299,7 +299,7 @@ probe sunrpc.clnt.call_sync = kernel.function("rpc_call_sync") ?, flags = $flags name = "sunrpc.clnt.call_sync" - argstr = sprintf("%s %d %s %d %s 0x%x", servername, xid, progname, + argstr = sprintf("%s %d %s %d %s %d", servername, xid, progname, vers, procname, flags) } @@ -345,7 +345,7 @@ probe sunrpc.clnt.call_async = kernel.function("rpc_call_async") ?, flags = $flags name = "sunrpc.clnt.call_async" - argstr = sprintf("%s %d %s %d %s 0x%x", servername, xid, progname, + argstr = sprintf("%s %d %s %d %s %d", servername, xid, progname, vers, procname, flags) } |