This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 3/3] Added the name variable to the rpc_new_client


commit 7c907522f2d1fab5e101f22f52c31c3867aeed8a
Author: Steve Dickson <steved@redhat.com>
Date:   Thu Feb 25 15:03:46 2010 -0500

    Added the name variable to the rpc_new_client
    
    Signed-off-by: Steve Dickson <steved@redhat.com>

diff --git a/tapset/rpc.stp b/tapset/rpc.stp
index 1ca3d1d..8525bf7 100644
--- a/tapset/rpc.stp
+++ b/tapset/rpc.stp
@@ -111,6 +111,7 @@ probe _sunrpc.clnt.create_client.part2 = kernel.function("rpc_new_client") !,
 probe sunrpc.clnt.create_client = kernel.function("rpc_new_client") !,
 	module("sunrpc").function("rpc_new_client")
 {
+	name = "sunrpc.clnt.new_client"
 	progname = kernel_string($args->program->name)
 	servername = kernel_string($args->servername);
 	prog = $args->program->number


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]