diff options
author | gnn <gnn@FreeBSD.org> | 2015-09-08 00:30:10 +0000 |
---|---|---|
committer | gnn <gnn@FreeBSD.org> | 2015-09-08 00:30:10 +0000 |
commit | 950cbf40e24d8fc9384f1fc0d72a27fa455c53cf (patch) | |
tree | af0d41b924ddebda5fe40f0328b5047cca3df770 /share/dtrace | |
parent | c5bfe674dfc6479f014fcb78aa2e862a6b5d32be (diff) | |
download | FreeBSD-src-950cbf40e24d8fc9384f1fc0d72a27fa455c53cf.zip FreeBSD-src-950cbf40e24d8fc9384f1fc0d72a27fa455c53cf.tar.gz |
Update DTrace nfs scripts to track the proper provider names.
Submitted by: Alex Burlyga
Diffstat (limited to 'share/dtrace')
-rwxr-xr-x | share/dtrace/nfsattrstats | 4 | ||||
-rwxr-xr-x | share/dtrace/nfsclienttime | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/share/dtrace/nfsattrstats b/share/dtrace/nfsattrstats index 63ca9318c..8aaf1fc 100755 --- a/share/dtrace/nfsattrstats +++ b/share/dtrace/nfsattrstats @@ -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 == ""/ { diff --git a/share/dtrace/nfsclienttime b/share/dtrace/nfsclienttime index 2422305..61c20d6 100755 --- a/share/dtrace/nfsclienttime +++ b/share/dtrace/nfsclienttime @@ -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); |