From owner-freebsd-current Sat Nov 23 05:33:50 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA26538 for current-outgoing; Sat, 23 Nov 1996 05:33:50 -0800 (PST) Received: from news.via.nl (news.via.nl [193.78.61.101]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id FAA26527 for ; Sat, 23 Nov 1996 05:33:37 -0800 (PST) Received: (qmail 5828 invoked by uid 1000); 23 Nov 1996 10:33:13 -0000 Date: Sat, 23 Nov 1996 11:33:12 +0100 (MET) From: frank To: freebsd-current@freebsd.org Subject: more drives in iostat? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi, I don't know if this is the right place but I've been wondering why there are only 4 drives showed by iostat. I've done this patch for the last few months: news# diff iostat.c iostat.backup 252c252 < for (i = 0; i < dk_ndrive && ndrives < 8; i++) { --- > for (i = 0; i < dk_ndrive && ndrives < 4; i++) { 262c262 < for (i = 0; i < dk_ndrive && ndrives < 8; i++) { --- > for (i = 0; i < dk_ndrive && ndrives < 4; i++) { I changed the number of drives from 4 to 8. Even though I only have 5 at the moment. Could this maybe be done to the original too? Every time I now update my source I have to do this again. Groetjes, Frank Ederveen