From owner-svn-src-stable-10@FreeBSD.ORG Fri Feb 13 09:17:52 2015 Return-Path: Delivered-To: svn-src-stable-10@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 EF89829D; Fri, 13 Feb 2015 09:17:51 +0000 (UTC) Received: from mail.sysgo.com (mail.sysgo.com [176.9.53.133]) (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 B15D7107; Fri, 13 Feb 2015 09:17:51 +0000 (UTC) Date: Fri, 13 Feb 2015 10:11:45 +0100 From: Thomas Mueller To: Sean Bruno Subject: Re: svn commit: r278650 - in stable/10: sys/kern tools/sched usr.bin/man Message-ID: <20150213101145.0f26b06f@tmu.ulm.sysgo.com> In-Reply-To: <201502130029.t1D0TwbR002255@svn.freebsd.org> References: <201502130029.t1D0TwbR002255@svn.freebsd.org> Organization: SYSGO AG X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; amd64-portbld-freebsd10.1) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-10@freebsd.org X-BeenThere: svn-src-stable-10@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for only the 10-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2015 09:17:52 -0000 On Fri, 13 Feb 2015 00:29:58 +0000 (UTC), Sean Bruno wrote: > Author: sbruno > Date: Fri Feb 13 00:29:57 2015 > New Revision: 278650 > URL: https://svnweb.freebsd.org/changeset/base/278650 > > Log: > MFC 272315 272757 274091 274902 > > r272315 > Explicitly return None for negative event indices. Prior to this, > eventat(-1) would return the next-to-last event causing the back button > to cycle back to the end of an event source instead of stopping at the > start. > > r272757 > Add schedgraph traces for callout handlers. Specifically, a callwheel logs > a running event each time it executes a callout function. The event > includes the function pointer, argument, and whether or not it was run from > hardware interrupt context. The callwheel is marked idle when each handler > completes. This effectively logs the duration of each callout routine in > the graph. > > r274091 > Bind Ctrl-Q as a global hotkey to exit. Bind Ctrl-W as a hotkey to close > dialogs. > > r274902 > Add a new thread state "spinning" to schedgraph and add tracepoints at the > start and stop of spinning waits in lock primitives. > > Reviewed by: jhb > > Modified: > stable/10/sys/kern/kern_lock.c > stable/10/sys/kern/kern_mutex.c > stable/10/sys/kern/kern_rwlock.c > stable/10/sys/kern/kern_sx.c > stable/10/sys/kern/kern_timeout.c > stable/10/tools/sched/schedgraph.py > stable/10/usr.bin/man/man.sh ~~~~~~~~~~~~~~~~~~~~~~~~~~ > [...] That change to man.sh does not seem to be related to any of the mentioned MFCs. tmu:~$ man ls eval: preconv: not found This manpage needs groff(1) to be rendered First install groff(1): pkg install groff tmu:~$ echo $LANG en_US.ISO8859-1 tmu:~$ LANG= man ls *** works as expected -- Thomas Mueller