From owner-cvs-src@FreeBSD.ORG Sun Nov 16 15:05:54 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F40916A4CE; Sun, 16 Nov 2003 15:05:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D679B43F85; Sun, 16 Nov 2003 15:05:53 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAGN5rXJ027825; Sun, 16 Nov 2003 15:05:53 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAGN5r8P027824; Sun, 16 Nov 2003 15:05:53 -0800 (PST) (envelope-from bde) Message-Id: <200311162305.hAGN5r8P027824@repoman.freebsd.org> From: Bruce Evans Date: Sun, 16 Nov 2003 15:05:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sio sio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Nov 2003 23:05:54 -0000 bde 2003/11/16 15:05:53 PST FreeBSD src repository Modified files: sys/dev/sio sio.c Log: Don't waste so much space for the latency debugging buffer. Its size will now need editing except for spot checks. Changed this buffer from a circular one to a linear one. This is more useful for some cases and the sysctl that prints it doesn't support circular buffers. Fixed (output) formatting bugs in this sysctl. An off by 1 error caused a garbage byte to be returned after annotation of large deltas, and a race with the writer sometimes caused premature string termination. Revision Changes Path 1.415 +8 -10 src/sys/dev/sio/sio.c