Author: gnn
Date: Tue Sep  8 00:30:10 2015
New Revision: 287544
URL: https://svnweb.freebsd.org/changeset/base/287544

Log:
  Update DTrace nfs scripts to track the proper provider names.
  
  Submitted by: Alex Burlyga

Modified:
  head/share/dtrace/nfsattrstats
  head/share/dtrace/nfsclienttime

Modified: head/share/dtrace/nfsattrstats
==============================================================================
--- head/share/dtrace/nfsattrstats      Mon Sep  7 23:16:39 2015        
(r287543)
+++ head/share/dtrace/nfsattrstats      Tue Sep  8 00:30:10 2015        
(r287544)
@@ -56,7 +56,7 @@ syscall:::return
         self->syscallname = "";
 }
 
-nfsclient:::
+nfscl:::
 /self->syscallname != 0 && self->syscallname != ""/
 {
 
@@ -64,7 +64,7 @@ nfsclient:::
            self->syscallname);
 }
 
-nfsclient:::
+nfscl:::
 /self->syscallname == 0 || self->syscallname == ""/
 {
 

Modified: head/share/dtrace/nfsclienttime
==============================================================================
--- head/share/dtrace/nfsclienttime     Mon Sep  7 23:16:39 2015        
(r287543)
+++ head/share/dtrace/nfsclienttime     Tue Sep  8 00:30:10 2015        
(r287544)
@@ -53,13 +53,13 @@ syscall:::entry
         self->count = 0;
 }
 
-nfsclient:nfs3::start
+nfscl:nfs3::start
 {
 
         self->timestamp = timestamp;
 }
 
-nfsclient:nfs3::done
+nfscl:nfs3::done
 {
 
         self->count += (timestamp - self->timestamp);
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to