Home | History | Annotate | Line # | Download | only in kern
subr_iostat.c revision 1.6
      1  1.3   yamt /*	$NetBSD: subr_iostat.c,v 1.6 2006/04/21 13:51:24 yamt Exp $	*/
      2  1.1  blymn /*	NetBSD: subr_disk.c,v 1.69 2005/05/29 22:24:15 christos Exp	*/
      3  1.1  blymn 
      4  1.1  blymn /*-
      5  1.1  blymn  * Copyright (c) 1996, 1997, 1999, 2000 The NetBSD Foundation, Inc.
      6  1.1  blymn  * All rights reserved.
      7  1.1  blymn  *
      8  1.1  blymn  * This code is derived from software contributed to The NetBSD Foundation
      9  1.1  blymn  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
     10  1.1  blymn  * NASA Ames Research Center.
     11  1.1  blymn  *
     12  1.1  blymn  * Redistribution and use in source and binary forms, with or without
     13  1.1  blymn  * modification, are permitted provided that the following conditions
     14  1.1  blymn  * are met:
     15  1.1  blymn  * 1. Redistributions of source code must retain the above copyright
     16  1.1  blymn  *    notice, this list of conditions and the following disclaimer.
     17  1.1  blymn  * 2. Redistributions in binary form must reproduce the above copyright
     18  1.1  blymn  *    notice, this list of conditions and the following disclaimer in the
     19  1.1  blymn  *    documentation and/or other materials provided with the distribution.
     20  1.1  blymn  * 3. All advertising materials mentioning features or use of this software
     21  1.1  blymn  *    must display the following acknowledgement:
     22  1.1  blymn  *	This product includes software developed by the NetBSD
     23  1.1  blymn  *	Foundation, Inc. and its contributors.
     24  1.1  blymn  * 4. Neither the name of The NetBSD Foundation nor the names of its
     25  1.1  blymn  *    contributors may be used to endorse or promote products derived
     26  1.1  blymn  *    from this software without specific prior written permission.
     27  1.1  blymn  *
     28  1.1  blymn  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     29  1.1  blymn  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     30  1.1  blymn  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     31  1.1  blymn  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     32  1.1  blymn  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     33  1.1  blymn  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     34  1.1  blymn  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     35  1.1  blymn  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     36  1.1  blymn  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     37  1.1  blymn  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     38  1.1  blymn  * POSSIBILITY OF SUCH DAMAGE.
     39  1.1  blymn  */
     40  1.1  blymn 
     41  1.1  blymn /*
     42  1.1  blymn  * Copyright (c) 1982, 1986, 1988, 1993
     43  1.1  blymn  *	The Regents of the University of California.  All rights reserved.
     44  1.1  blymn  * (c) UNIX System Laboratories, Inc.
     45  1.1  blymn  * All or some portions of this file are derived from material licensed
     46  1.1  blymn  * to the University of California by American Telephone and Telegraph
     47  1.1  blymn  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     48  1.1  blymn  * the permission of UNIX System Laboratories, Inc.
     49  1.1  blymn  *
     50  1.1  blymn  * Redistribution and use in source and binary forms, with or without
     51  1.1  blymn  * modification, are permitted provided that the following conditions
     52  1.1  blymn  * are met:
     53  1.1  blymn  * 1. Redistributions of source code must retain the above copyright
     54  1.1  blymn  *    notice, this list of conditions and the following disclaimer.
     55  1.1  blymn  * 2. Redistributions in binary form must reproduce the above copyright
     56  1.1  blymn  *    notice, this list of conditions and the following disclaimer in the
     57  1.1  blymn  *    documentation and/or other materials provided with the distribution.
     58  1.1  blymn  * 3. Neither the name of the University nor the names of its contributors
     59  1.1  blymn  *    may be used to endorse or promote products derived from this software
     60  1.1  blymn  *    without specific prior written permission.
     61  1.1  blymn  *
     62  1.1  blymn  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     63  1.1  blymn  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     64  1.1  blymn  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     65  1.1  blymn  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     66  1.1  blymn  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     67  1.1  blymn  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     68  1.1  blymn  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     69  1.1  blymn  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     70  1.1  blymn  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     71  1.1  blymn  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     72  1.1  blymn  * SUCH DAMAGE.
     73  1.1  blymn  *
     74  1.1  blymn  *	@(#)ufs_disksubr.c	8.5 (Berkeley) 1/21/94
     75  1.1  blymn  */
     76  1.1  blymn 
     77  1.1  blymn #include <sys/cdefs.h>
     78  1.3   yamt __KERNEL_RCSID(0, "$NetBSD: subr_iostat.c,v 1.6 2006/04/21 13:51:24 yamt Exp $");
     79  1.1  blymn 
     80  1.1  blymn #include "opt_compat_netbsd.h"
     81  1.1  blymn 
     82  1.1  blymn #include <sys/param.h>
     83  1.1  blymn #include <sys/kernel.h>
     84  1.1  blymn #include <sys/malloc.h>
     85  1.6   yamt #include <sys/iostat.h>
     86  1.1  blymn #include <sys/sysctl.h>
     87  1.1  blymn 
     88  1.1  blymn /*
     89  1.1  blymn  * Function prototypes for sysctl nodes
     90  1.1  blymn  */
     91  1.1  blymn static int	sysctl_hw_disknames(SYSCTLFN_PROTO);
     92  1.1  blymn static int	sysctl_hw_iostatnames(SYSCTLFN_PROTO);
     93  1.1  blymn static int	sysctl_hw_iostats(SYSCTLFN_PROTO);
     94  1.1  blymn 
     95  1.1  blymn static int
     96  1.1  blymn iostati_getnames(int disk_only, char *oldp, size_t *oldlenp, const void *newp,
     97  1.1  blymn 		u_int namelen);
     98  1.1  blymn 
     99  1.1  blymn /*
    100  1.1  blymn  * A global list of all drives attached to the system.  May grow or
    101  1.1  blymn  * shrink over time.
    102  1.1  blymn  */
    103  1.3   yamt struct iostatlist_head iostatlist = TAILQ_HEAD_INITIALIZER(iostatlist);
    104  1.3   yamt int iostat_count;		/* number of drives in global drivelist */
    105  1.1  blymn struct simplelock iostatlist_slock = SIMPLELOCK_INITIALIZER;
    106  1.1  blymn 
    107  1.1  blymn /*
    108  1.1  blymn  * Searches the iostatlist for the iostat corresponding to the
    109  1.1  blymn  * name provided.
    110  1.1  blymn  */
    111  1.1  blymn struct io_stats *
    112  1.1  blymn iostat_find(char *name)
    113  1.1  blymn {
    114  1.1  blymn 	struct io_stats *iostatp;
    115  1.1  blymn 
    116  1.1  blymn 	if ((name == NULL) || (iostat_count <= 0))
    117  1.1  blymn 		return (NULL);
    118  1.1  blymn 
    119  1.1  blymn 	simple_lock(&iostatlist_slock);
    120  1.1  blymn 	for (iostatp = TAILQ_FIRST(&iostatlist); iostatp != NULL;
    121  1.2  blymn 	    iostatp = TAILQ_NEXT(iostatp, io_link))
    122  1.2  blymn 		if (strcmp(iostatp->io_name, name) == 0) {
    123  1.1  blymn 			simple_unlock(&iostatlist_slock);
    124  1.1  blymn 			return (iostatp);
    125  1.1  blymn 		}
    126  1.1  blymn 	simple_unlock(&iostatlist_slock);
    127  1.1  blymn 
    128  1.1  blymn 	return (NULL);
    129  1.1  blymn }
    130  1.1  blymn 
    131  1.1  blymn /*
    132  1.1  blymn  * Allocate and initialise memory for the i/o statistics.
    133  1.1  blymn  */
    134  1.3   yamt struct io_stats *
    135  1.3   yamt iostat_alloc(int32_t type)
    136  1.1  blymn {
    137  1.1  blymn 	int s;
    138  1.1  blymn 	struct io_stats *stats;
    139  1.1  blymn 
    140  1.5   yamt 	stats = malloc(sizeof(struct io_stats), M_DEVBUF, M_WAITOK);
    141  1.1  blymn 	if (stats == NULL)
    142  1.4   yamt 		panic("iostat_alloc: cannot allocate memory for stats buffer");
    143  1.1  blymn 
    144  1.2  blymn 	stats->io_type = type;
    145  1.2  blymn 	stats->io_rxfer = 0;
    146  1.2  blymn 	stats->io_rbytes = 0;
    147  1.2  blymn 	stats->io_wxfer = 0;
    148  1.2  blymn 	stats->io_wbytes = 0;
    149  1.1  blymn 
    150  1.1  blymn 	/*
    151  1.1  blymn 	 * Set the attached timestamp.
    152  1.1  blymn 	 */
    153  1.1  blymn 	s = splclock();
    154  1.2  blymn 	stats->io_attachtime = mono_time;
    155  1.1  blymn 	splx(s);
    156  1.1  blymn 
    157  1.2  blymn 	timerclear(&stats->io_time);
    158  1.2  blymn 	timerclear(&stats->io_timestamp);
    159  1.1  blymn 
    160  1.1  blymn 	/*
    161  1.1  blymn 	 * Link into the drivelist.
    162  1.1  blymn 	 */
    163  1.1  blymn 	simple_lock(&iostatlist_slock);
    164  1.2  blymn 	TAILQ_INSERT_TAIL(&iostatlist, stats, io_link);
    165  1.1  blymn 	iostat_count++;
    166  1.1  blymn 	simple_unlock(&iostatlist_slock);
    167  1.1  blymn 
    168  1.1  blymn 	return stats;
    169  1.1  blymn }
    170  1.1  blymn 
    171  1.1  blymn /*
    172  1.1  blymn  * Remove i/o from stats collection.
    173  1.1  blymn  */
    174  1.1  blymn void
    175  1.1  blymn iostat_free(struct io_stats *stats)
    176  1.1  blymn {
    177  1.1  blymn 
    178  1.3   yamt 	/*
    179  1.3   yamt 	 * Remove from the iostat list.
    180  1.3   yamt 	 */
    181  1.1  blymn 	if (iostat_count == 0)
    182  1.1  blymn 		panic("iostat_free: iostat_count == 0");
    183  1.1  blymn 	simple_lock(&iostatlist_slock);
    184  1.2  blymn 	TAILQ_REMOVE(&iostatlist, stats, io_link);
    185  1.1  blymn 	iostat_count--;
    186  1.1  blymn 	simple_unlock(&iostatlist_slock);
    187  1.1  blymn 	free(stats, M_DEVBUF);
    188  1.1  blymn }
    189  1.1  blymn 
    190  1.1  blymn /*
    191  1.1  blymn  * Increment a iostat busy counter.  If the counter is going from
    192  1.1  blymn  * 0 to 1, set the timestamp.
    193  1.1  blymn  */
    194  1.1  blymn void
    195  1.1  blymn iostat_busy(struct io_stats *stats)
    196  1.1  blymn {
    197  1.1  blymn 	int s;
    198  1.1  blymn 
    199  1.1  blymn 	/*
    200  1.1  blymn 	 * XXX We'd like to use something as accurate as microtime(),
    201  1.1  blymn 	 * but that doesn't depend on the system TOD clock.
    202  1.1  blymn 	 */
    203  1.2  blymn 	if (stats->io_busy++ == 0) {
    204  1.1  blymn 		s = splclock();
    205  1.2  blymn 		stats->io_timestamp = mono_time;
    206  1.1  blymn 		splx(s);
    207  1.1  blymn 	}
    208  1.1  blymn }
    209  1.1  blymn 
    210  1.1  blymn /*
    211  1.1  blymn  * Decrement a iostat busy counter, increment the byte count, total busy
    212  1.1  blymn  * time, and reset the timestamp.
    213  1.1  blymn  */
    214  1.1  blymn void
    215  1.1  blymn iostat_unbusy(struct io_stats *stats, long bcount, int read)
    216  1.1  blymn {
    217  1.1  blymn 	int s;
    218  1.1  blymn 	struct timeval dv_time, diff_time;
    219  1.1  blymn 
    220  1.2  blymn 	if (stats->io_busy-- == 0) {
    221  1.2  blymn 		printf("%s: busy < 0\n", stats->io_name);
    222  1.1  blymn 		panic("iostat_unbusy");
    223  1.1  blymn 	}
    224  1.1  blymn 
    225  1.1  blymn 	s = splclock();
    226  1.1  blymn 	dv_time = mono_time;
    227  1.1  blymn 	splx(s);
    228  1.1  blymn 
    229  1.2  blymn 	timersub(&dv_time, &stats->io_timestamp, &diff_time);
    230  1.2  blymn 	timeradd(&stats->io_time, &diff_time, &stats->io_time);
    231  1.1  blymn 
    232  1.2  blymn 	stats->io_timestamp = dv_time;
    233  1.1  blymn 	if (bcount > 0) {
    234  1.1  blymn 		if (read) {
    235  1.2  blymn 			stats->io_rbytes += bcount;
    236  1.2  blymn 			stats->io_rxfer++;
    237  1.1  blymn 		} else {
    238  1.2  blymn 			stats->io_wbytes += bcount;
    239  1.2  blymn 			stats->io_wxfer++;
    240  1.1  blymn 		}
    241  1.1  blymn 	}
    242  1.1  blymn }
    243  1.1  blymn 
    244  1.1  blymn /*
    245  1.1  blymn  * Increment the seek counter.  This does look almost redundant but it
    246  1.1  blymn  * abstracts the stats gathering.
    247  1.1  blymn  */
    248  1.1  blymn void
    249  1.1  blymn iostat_seek(struct io_stats *stats)
    250  1.1  blymn {
    251  1.3   yamt 
    252  1.2  blymn 	stats->io_seek++;
    253  1.1  blymn }
    254  1.1  blymn 
    255  1.1  blymn static int
    256  1.1  blymn sysctl_hw_disknames(SYSCTLFN_ARGS)
    257  1.1  blymn {
    258  1.3   yamt 
    259  1.1  blymn 	return iostati_getnames(1, oldp, oldlenp, newp, namelen);
    260  1.1  blymn }
    261  1.1  blymn 
    262  1.1  blymn static int
    263  1.1  blymn sysctl_hw_iostatnames(SYSCTLFN_ARGS)
    264  1.1  blymn {
    265  1.3   yamt 
    266  1.1  blymn 	return iostati_getnames(0, oldp, oldlenp, newp, namelen);
    267  1.1  blymn }
    268  1.1  blymn 
    269  1.1  blymn static int
    270  1.1  blymn iostati_getnames(int disk_only, char *oldp, size_t *oldlenp, const void *newp,
    271  1.1  blymn 		 u_int namelen)
    272  1.1  blymn {
    273  1.1  blymn 	char bf[IOSTATNAMELEN + 1];
    274  1.1  blymn 	char *where = oldp;
    275  1.1  blymn 	struct io_stats *stats;
    276  1.1  blymn 	size_t needed, left, slen;
    277  1.1  blymn 	int error, first;
    278  1.1  blymn 
    279  1.1  blymn 	if (newp != NULL)
    280  1.1  blymn 		return (EPERM);
    281  1.1  blymn 	if (namelen != 0)
    282  1.1  blymn 		return (EINVAL);
    283  1.1  blymn 
    284  1.1  blymn 	first = 1;
    285  1.1  blymn 	error = 0;
    286  1.1  blymn 	needed = 0;
    287  1.1  blymn 	left = *oldlenp;
    288  1.1  blymn 
    289  1.1  blymn 	simple_lock(&iostatlist_slock);
    290  1.1  blymn 	for (stats = TAILQ_FIRST(&iostatlist); stats != NULL;
    291  1.2  blymn 	    stats = TAILQ_NEXT(stats, io_link)) {
    292  1.2  blymn 		if ((disk_only == 1) && (stats->io_type != IOSTAT_DISK))
    293  1.1  blymn 			continue;
    294  1.1  blymn 
    295  1.1  blymn 		if (where == NULL)
    296  1.2  blymn 			needed += strlen(stats->io_name) + 1;
    297  1.1  blymn 		else {
    298  1.1  blymn 			memset(bf, 0, sizeof(bf));
    299  1.1  blymn 			if (first) {
    300  1.2  blymn 				strncpy(bf, stats->io_name, sizeof(bf));
    301  1.1  blymn 				first = 0;
    302  1.1  blymn 			} else {
    303  1.1  blymn 				bf[0] = ' ';
    304  1.2  blymn 				strncpy(bf + 1, stats->io_name,
    305  1.1  blymn 				    sizeof(bf) - 1);
    306  1.1  blymn 			}
    307  1.1  blymn 			bf[IOSTATNAMELEN] = '\0';
    308  1.1  blymn 			slen = strlen(bf);
    309  1.1  blymn 			if (left < slen + 1)
    310  1.1  blymn 				break;
    311  1.1  blymn 			/* +1 to copy out the trailing NUL byte */
    312  1.1  blymn 			error = copyout(bf, where, slen + 1);
    313  1.1  blymn 			if (error)
    314  1.1  blymn 				break;
    315  1.1  blymn 			where += slen;
    316  1.1  blymn 			needed += slen;
    317  1.1  blymn 			left -= slen;
    318  1.1  blymn 		}
    319  1.1  blymn 	}
    320  1.1  blymn 	simple_unlock(&iostatlist_slock);
    321  1.1  blymn 	*oldlenp = needed;
    322  1.1  blymn 	return (error);
    323  1.1  blymn }
    324  1.1  blymn 
    325  1.1  blymn static int
    326  1.1  blymn sysctl_hw_iostats(SYSCTLFN_ARGS)
    327  1.1  blymn {
    328  1.1  blymn 	struct io_sysctl sdrive;
    329  1.1  blymn 	struct io_stats *stats;
    330  1.1  blymn 	char *where = oldp;
    331  1.1  blymn 	size_t tocopy, left;
    332  1.1  blymn 	int error;
    333  1.1  blymn 
    334  1.1  blymn 	if (newp != NULL)
    335  1.1  blymn 		return (EPERM);
    336  1.1  blymn 
    337  1.1  blymn 	/*
    338  1.1  blymn 	 * The original hw.diskstats call was broken and did not require
    339  1.1  blymn 	 * the userland to pass in it's size of struct disk_sysctl.  This
    340  1.1  blymn 	 * was fixed after NetBSD 1.6 was released, and any applications
    341  1.1  blymn 	 * that do not pass in the size are given an error only, unless
    342  1.1  blymn 	 * we care about 1.6 compatibility.
    343  1.1  blymn 	 */
    344  1.1  blymn 	if (namelen == 0)
    345  1.1  blymn #ifdef COMPAT_16
    346  1.1  blymn 		tocopy = offsetof(struct io_sysctl, busy);
    347  1.1  blymn #else
    348  1.1  blymn 		return (EINVAL);
    349  1.1  blymn #endif
    350  1.1  blymn 	else
    351  1.1  blymn 		tocopy = name[0];
    352  1.1  blymn 
    353  1.1  blymn 	if (where == NULL) {
    354  1.1  blymn 		*oldlenp = iostat_count * tocopy;
    355  1.1  blymn 		return (0);
    356  1.1  blymn 	}
    357  1.1  blymn 
    358  1.1  blymn 	error = 0;
    359  1.1  blymn 	left = *oldlenp;
    360  1.1  blymn 	memset(&sdrive, 0, sizeof(sdrive));
    361  1.1  blymn 	*oldlenp = 0;
    362  1.1  blymn 
    363  1.1  blymn 	simple_lock(&iostatlist_slock);
    364  1.2  blymn 	TAILQ_FOREACH(stats, &iostatlist, io_link) {
    365  1.1  blymn 		if (left < tocopy)
    366  1.1  blymn 			break;
    367  1.2  blymn 		strncpy(sdrive.name, stats->io_name, sizeof(sdrive.name));
    368  1.2  blymn 		sdrive.xfer = stats->io_rxfer + stats->io_wxfer;
    369  1.2  blymn 		sdrive.rxfer = stats->io_rxfer;
    370  1.2  blymn 		sdrive.wxfer = stats->io_wxfer;
    371  1.2  blymn 		sdrive.seek = stats->io_seek;
    372  1.2  blymn 		sdrive.bytes = stats->io_rbytes + stats->io_wbytes;
    373  1.2  blymn 		sdrive.rbytes = stats->io_rbytes;
    374  1.2  blymn 		sdrive.wbytes = stats->io_wbytes;
    375  1.2  blymn 		sdrive.attachtime_sec = stats->io_attachtime.tv_sec;
    376  1.2  blymn 		sdrive.attachtime_usec = stats->io_attachtime.tv_usec;
    377  1.2  blymn 		sdrive.timestamp_sec = stats->io_timestamp.tv_sec;
    378  1.2  blymn 		sdrive.timestamp_usec = stats->io_timestamp.tv_usec;
    379  1.2  blymn 		sdrive.time_sec = stats->io_time.tv_sec;
    380  1.2  blymn 		sdrive.time_usec = stats->io_time.tv_usec;
    381  1.2  blymn 		sdrive.busy = stats->io_busy;
    382  1.1  blymn 
    383  1.1  blymn 		error = copyout(&sdrive, where, min(tocopy, sizeof(sdrive)));
    384  1.1  blymn 		if (error)
    385  1.1  blymn 			break;
    386  1.1  blymn 		where += tocopy;
    387  1.1  blymn 		*oldlenp += tocopy;
    388  1.1  blymn 		left -= tocopy;
    389  1.1  blymn 	}
    390  1.1  blymn 	simple_unlock(&iostatlist_slock);
    391  1.1  blymn 	return (error);
    392  1.1  blymn }
    393  1.1  blymn 
    394  1.1  blymn SYSCTL_SETUP(sysctl_io_stats_setup, "sysctl i/o stats setup")
    395  1.1  blymn {
    396  1.3   yamt 
    397  1.1  blymn 	sysctl_createv(clog, 0, NULL, NULL,
    398  1.1  blymn 		       CTLFLAG_PERMANENT,
    399  1.1  blymn 		       CTLTYPE_STRING, "disknames",
    400  1.1  blymn 		       SYSCTL_DESCR("List of disk drives present"),
    401  1.1  blymn 		       sysctl_hw_disknames, 0, NULL, 0,
    402  1.1  blymn 		       CTL_HW, HW_DISKNAMES, CTL_EOL);
    403  1.1  blymn 	sysctl_createv(clog, 0, NULL, NULL,
    404  1.1  blymn 		       CTLFLAG_PERMANENT,
    405  1.1  blymn 		       CTLTYPE_STRING, "iostatnames",
    406  1.1  blymn 		       SYSCTL_DESCR("I/O stats are being collected for these"
    407  1.1  blymn 				    " devices"),
    408  1.1  blymn 		       sysctl_hw_iostatnames, 0, NULL, 0,
    409  1.1  blymn 		       CTL_HW, HW_IOSTATNAMES, CTL_EOL);
    410  1.1  blymn 	sysctl_createv(clog, 0, NULL, NULL,
    411  1.1  blymn 		       CTLFLAG_PERMANENT,
    412  1.1  blymn 		       CTLTYPE_STRUCT, "drivestats",
    413  1.1  blymn 		       SYSCTL_DESCR("Statistics on device I/O operations"),
    414  1.1  blymn 		       sysctl_hw_iostats, 0, NULL, 0,
    415  1.1  blymn 		       CTL_HW, HW_IOSTATS, CTL_EOL);
    416  1.1  blymn }
    417