From owner-svn-src-head@FreeBSD.ORG Wed Apr 29 18:07:59 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40DCFD7C; Wed, 29 Apr 2015 18:07:59 +0000 (UTC) Received: from svn.freebsd.org (svn.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 2EC061290; Wed, 29 Apr 2015 18:07:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3TI7xlt045358; Wed, 29 Apr 2015 18:07:59 GMT (envelope-from gnn@FreeBSD.org) Received: (from gnn@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3TI7xif045357; Wed, 29 Apr 2015 18:07:59 GMT (envelope-from gnn@FreeBSD.org) Message-Id: <201504291807.t3TI7xif045357@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gnn set sender to gnn@FreeBSD.org using -f From: "George V. Neville-Neil" Date: Wed, 29 Apr 2015 18:07:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r282242 - 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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Apr 2015 18:07:59 -0000 Author: gnn Date: Wed Apr 29 18:07:58 2015 New Revision: 282242 URL: https://svnweb.freebsd.org/changeset/base/282242 Log: Brief demo script showing the various values that can be read via the new SIFTR statically defined tracepoint (SDT). Reviewed by: bz, markj Added: head/share/dtrace/siftr (contents, props changed) Added: head/share/dtrace/siftr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/share/dtrace/siftr Wed Apr 29 18:07:58 2015 (r282242) @@ -0,0 +1,68 @@ +#!/usr/sbin/dtrace -s +/*- + * Copyright (c) 2015 George V. Neville-Neil + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + * + * The siftr D script collects data from the SIFTR kernel module. + * + * Usage: siftr + */ + +#pragma D option quiet +tcp:kernel::siftr +{ + printf("direction %s state %s local %d remote %d\n", + siftr_dir_string[args[0]->direction], + tcp_state_string[args[0]->conn_state], + args[0]->tcp_localport, + args[0]->tcp_foreignport); + printf("snd_cwnd %d snd_wnd %d rcv_wnd %d snd_bwnd %d snd_ssthresh %d\n", + args[0]->snd_cwnd, + args[0]->snd_wnd, + args[0]->rcv_wnd, + args[0]->snd_bwnd, + args[0]->snd_ssthresh); + printf("\tmax_seg_size %u smoothed_rtt %d sack_enabled %d\n", + args[0]->max_seg_size, + args[0]->smoothed_rtt, + args[0]->sack_enabled); + printf("\tsnd_scale %d rcv_scale %d flags 0x%x rxt_length %d\n", + args[0]->snd_scale, + args[0]->rcv_scale, + args[0]->flags, + args[0]->rxt_length); + printf("\tsnd_buf_hiwater %u snd_buf_cc %u rcv_buf_hiwater %u\n", + args[0]->snd_buf_hiwater, + args[0]->snd_buf_cc, + args[0]->rcv_buf_hiwater); + printf("\trcv_buf_cc %u sent_inflight_bytes %u t_segqlen %d\n", + args[0]->rcv_buf_cc, + args[0]->sent_inflight_bytes, + args[0]->t_segqlen); + printf("\tflowid %u flowtype %u\n", + args[0]->flowid, + args[0]->flowtype); +}