From owner-svn-src-user@FreeBSD.ORG Thu Nov 27 10:58:17 2008 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5598D1065674; Thu, 27 Nov 2008 10:58:17 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 453B58FC1F; Thu, 27 Nov 2008 10:58:17 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mARAwHho085149; Thu, 27 Nov 2008 10:58:17 GMT (envelope-from netchild@svn.freebsd.org) Received: (from netchild@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mARAwHb5085148; Thu, 27 Nov 2008 10:58:17 GMT (envelope-from netchild@svn.freebsd.org) Message-Id: <200811271058.mARAwHb5085148@svn.freebsd.org> From: Alexander Leidinger Date: Thu, 27 Nov 2008 10:58:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r185367 - user/netchild/linuxulator-dtrace/src/sys/compat/linux X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2008 10:58:17 -0000 Author: netchild Date: Thu Nov 27 10:58:16 2008 New Revision: 185367 URL: http://svn.freebsd.org/changeset/base/185367 Log: Use the right built-in variable name. Modified: user/netchild/linuxulator-dtrace/src/sys/compat/linux/stats_timing.d Modified: user/netchild/linuxulator-dtrace/src/sys/compat/linux/stats_timing.d ============================================================================== --- user/netchild/linuxulator-dtrace/src/sys/compat/linux/stats_timing.d Thu Nov 27 10:43:08 2008 (r185366) +++ user/netchild/linuxulator-dtrace/src/sys/compat/linux/stats_timing.d Thu Nov 27 10:58:16 2008 (r185367) @@ -45,12 +45,12 @@ linuxulator*:::entry { - self->time[funcname] = vtimestamp; + self->time[probefunc] = vtimestamp; @calls[probeprov, execname, probefunc] = count(); } linuxulator*:::return -/self->time[funcname] != 0/ +/self->time[probefunc] != 0/ { this->timediff = self->time[probefunc] - vtimestamp;