summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2010-02-23 11:52:17 -0500
committerSteve Dickson <steved@redhat.com>2010-02-23 11:52:17 -0500
commit9d906571f71dfcd7d22eec4e06d5a06b9f86805a (patch)
tree4d81f7d2eb15caa3ce19025bdbe811d33ded445b
parent99e6b6a1744de4b3f8ceefd255c656a5e61a5ac7 (diff)
downloadsystemtap-steved-9d906571f71dfcd7d22eec4e06d5a06b9f86805a.tar.gz
systemtap-steved-9d906571f71dfcd7d22eec4e06d5a06b9f86805a.tar.xz
systemtap-steved-9d906571f71dfcd7d22eec4e06d5a06b9f86805a.zip
Removed the nfsd.proc4.compound and nfsd.proc.compound.return probes
Either probes displayed anything that was useful, plus there are other ways to display similar information. Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--tapset/nfsd.stp38
1 files changed, 0 insertions, 38 deletions
diff --git a/tapset/nfsd.stp b/tapset/nfsd.stp
index 25d8c554..3e518c57 100644
--- a/tapset/nfsd.stp
+++ b/tapset/nfsd.stp
@@ -860,44 +860,6 @@ probe nfsd.proc4.rename.return = kernel.function("nfsd4_rename").return!,
version = 4
retstr = sprintf("%s", nfsderror($return))
}
-/*
-*probe nfsd.proc.compound
-* Fires when the server received a NFSV4 operation from client
-*
-*Arguments:
-* client_ip : the ip address of client
-* proto : transfer protocol
-* version : nfs version
-* num : number of file operation in this RPC operation
-* op : head of operation list in this compound execution
-*/
-probe nfsd.proc.compound = nfsd.proc4.compound
-{}
-
-probe nfsd.proc.compound.return = nfsd.proc4.compound.return
-{}
-
-probe nfsd.proc4.compound = kernel.function("nfsd4_proc_compound")!,
- module("nfsd").function("nfsd4_proc_compound")?
-{
- client_ip = addr_from_rqst($rqstp)
- proto = $rqstp->rq_prot
- version = 4
-
- num = $args->opcnt
- op = $args->ops
-
- name = "nfsd.proc4.compound"
- argstr = sprintf("%d",num)
-}
-
-probe nfsd.proc4.compound.return = kernel.function("nfsd4_proc_compound").return!,
- module("nfsd").function("nfsd4_proc_compound").return?
-{
- name = "nfsd.proc4.compound.return"
- version = 4
- retstr = sprintf("%d",$return)
-}
probe nfsd.entries = nfsd.open,
nfsd.read,