From owner-svn-src-all@freebsd.org Tue Sep 8 00:30:11 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9F899CB7D0; Tue, 8 Sep 2015 00:30:11 +0000 (UTC) (envelope-from gnn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB63F120A; Tue, 8 Sep 2015 00:30:11 +0000 (UTC) (envelope-from gnn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t880UBFL064803; Tue, 8 Sep 2015 00:30:11 GMT (envelope-from gnn@FreeBSD.org) Received: (from gnn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t880UBDL064801; Tue, 8 Sep 2015 00:30:11 GMT (envelope-from gnn@FreeBSD.org) Message-Id: <201509080030.t880UBDL064801@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gnn set sender to gnn@FreeBSD.org using -f From: "George V. Neville-Neil" Date: Tue, 8 Sep 2015 00:30:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r287544 - head/share/dtrace X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Sep 2015 00:30:11 -0000 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);