From 1a36448f951098bd36ed5264cd6de6afcb3ce0f7 Mon Sep 17 00:00:00 2001 From: zhaolei Date: Thu, 27 Sep 2007 07:11:32 +0000 Subject: 2007-09-27 Zhaolei From Cai Fei * 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. --- tapset/ChangeLog | 7 +++++++ tapset/rpc.stp | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'tapset') diff --git a/tapset/ChangeLog b/tapset/ChangeLog index 22f0d063..9284e11d 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,10 @@ +2007-09-27 Zhaolei + + From Cai Fei + * 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 * tcp.stp (sendmsg.return): Fix description of size variable. 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) } -- cgit