From owner-freebsd-arch@FreeBSD.ORG Thu Oct 1 13:31:35 2009 Return-Path: Delivered-To: arch@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFC9D1065676; Thu, 1 Oct 2009 13:31:35 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail06.syd.optusnet.com.au (mail06.syd.optusnet.com.au [211.29.132.187]) by mx1.freebsd.org (Postfix) with ESMTP id 7463A8FC12; Thu, 1 Oct 2009 13:31:34 +0000 (UTC) Received: from c122-107-125-150.carlnfd1.nsw.optusnet.com.au (c122-107-125-150.carlnfd1.nsw.optusnet.com.au [122.107.125.150]) by mail06.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id n91DVWBB018121 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 1 Oct 2009 23:31:33 +1000 Date: Thu, 1 Oct 2009 23:31:32 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Rui Paulo In-Reply-To: <95A6555E-09DE-45E4-BF80-D2C524CD33C3@gmail.com> Message-ID: <20091001225842.X21418@delplex.bde.org> References: <200909301732.20589.jhb@freebsd.org> <20091001090218.L21015@delplex.bde.org> <95A6555E-09DE-45E4-BF80-D2C524CD33C3@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: arch@freebsd.org Subject: Re: Interrupt Descriptions X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2009 13:31:36 -0000 On Thu, 1 Oct 2009, Rui Paulo wrote: > On 1 Oct 2009, at 01:02, Bruce Evans wrote: > >> On Wed, 30 Sep 2009, John Baldwin wrote: >> >>> A few folks have asked recently for the ability to add descriptive strings >>> to >>> registered interrupt handlers. This is especially true since the advent >>> of >>> MSI with multiple interrupts per device. I hacked up a prototype today >>> that >> >> Interrupt names should be no longer than 4 (5 works sometimes) characters >> so >> that they can be displayed by systat -v. Make that: "Interrupt names must must contain only characters that take 1 space to print, and must be no longer than 10 characters, or unique and without garbage when blindly truncated to 10 characters, or in a special form that can easily be understood and compressed to <= 10 characters. The special forms are..." Similarly for device names (max length 4 or 5) and sleep message strings (max length 6). > We should just change systat, IMHO, but I know it's not easy. It's impossible to make changes that increase display resource requirements without breaking something. Either small displays stop working or scrolling is required. Bruce