Home | History | Annotate | Line # | Download | only in kern
subr_iostat.c revision 1.23.8.1
      1  1.23.8.1  pgoyette /*	$NetBSD: subr_iostat.c,v 1.23.8.1 2018/09/06 06:56:42 pgoyette 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.17        ad  * Copyright (c) 1996, 1997, 1999, 2000, 2009 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  *
     21       1.1     blymn  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     22       1.1     blymn  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23       1.1     blymn  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24       1.1     blymn  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     25       1.1     blymn  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26       1.1     blymn  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27       1.1     blymn  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28       1.1     blymn  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29       1.1     blymn  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30       1.1     blymn  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31       1.1     blymn  * POSSIBILITY OF SUCH DAMAGE.
     32       1.1     blymn  */
     33       1.1     blymn 
     34       1.1     blymn /*
     35       1.1     blymn  * Copyright (c) 1982, 1986, 1988, 1993
     36       1.1     blymn  *	The Regents of the University of California.  All rights reserved.
     37       1.1     blymn  * (c) UNIX System Laboratories, Inc.
     38       1.1     blymn  * All or some portions of this file are derived from material licensed
     39       1.1     blymn  * to the University of California by American Telephone and Telegraph
     40       1.1     blymn  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     41       1.1     blymn  * the permission of UNIX System Laboratories, Inc.
     42       1.1     blymn  *
     43       1.1     blymn  * Redistribution and use in source and binary forms, with or without
     44       1.1     blymn  * modification, are permitted provided that the following conditions
     45       1.1     blymn  * are met:
     46       1.1     blymn  * 1. Redistributions of source code must retain the above copyright
     47       1.1     blymn  *    notice, this list of conditions and the following disclaimer.
     48       1.1     blymn  * 2. Redistributions in binary form must reproduce the above copyright
     49       1.1     blymn  *    notice, this list of conditions and the following disclaimer in the
     50       1.1     blymn  *    documentation and/or other materials provided with the distribution.
     51       1.1     blymn  * 3. Neither the name of the University nor the names of its contributors
     52       1.1     blymn  *    may be used to endorse or promote products derived from this software
     53       1.1     blymn  *    without specific prior written permission.
     54       1.1     blymn  *
     55       1.1     blymn  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     56       1.1     blymn  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     57       1.1     blymn  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     58       1.1     blymn  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     59       1.1     blymn  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     60       1.1     blymn  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     61       1.1     blymn  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     62       1.1     blymn  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     63       1.1     blymn  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     64       1.1     blymn  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     65       1.1     blymn  * SUCH DAMAGE.
     66       1.1     blymn  *
     67       1.1     blymn  *	@(#)ufs_disksubr.c	8.5 (Berkeley) 1/21/94
     68       1.1     blymn  */
     69       1.1     blymn 
     70       1.1     blymn #include <sys/cdefs.h>
     71  1.23.8.1  pgoyette __KERNEL_RCSID(0, "$NetBSD: subr_iostat.c,v 1.23.8.1 2018/09/06 06:56:42 pgoyette Exp $");
     72       1.1     blymn 
     73       1.1     blymn #include <sys/param.h>
     74       1.1     blymn #include <sys/kernel.h>
     75      1.16      yamt #include <sys/kmem.h>
     76       1.6      yamt #include <sys/iostat.h>
     77       1.1     blymn #include <sys/sysctl.h>
     78      1.13        ad #include <sys/rwlock.h>
     79       1.1     blymn 
     80       1.1     blymn /*
     81       1.1     blymn  * Function prototypes for sysctl nodes
     82       1.1     blymn  */
     83       1.1     blymn static int	sysctl_hw_disknames(SYSCTLFN_PROTO);
     84       1.1     blymn static int	sysctl_hw_iostatnames(SYSCTLFN_PROTO);
     85       1.1     blymn static int	sysctl_hw_iostats(SYSCTLFN_PROTO);
     86       1.1     blymn 
     87       1.1     blymn static int
     88       1.1     blymn iostati_getnames(int disk_only, char *oldp, size_t *oldlenp, const void *newp,
     89       1.1     blymn 		u_int namelen);
     90       1.1     blymn 
     91       1.1     blymn /*
     92       1.1     blymn  * A global list of all drives attached to the system.  May grow or
     93       1.1     blymn  * shrink over time.
     94       1.1     blymn  */
     95       1.3      yamt struct iostatlist_head iostatlist = TAILQ_HEAD_INITIALIZER(iostatlist);
     96       1.3      yamt int iostat_count;		/* number of drives in global drivelist */
     97      1.13        ad krwlock_t iostatlist_lock;
     98      1.12        ad 
     99      1.18     pooka static void sysctl_io_stats_setup(struct sysctllog **);
    100      1.18     pooka 
    101      1.12        ad /*
    102      1.12        ad  * Initialise the iostat subsystem.
    103      1.12        ad  */
    104      1.12        ad void
    105      1.12        ad iostat_init(void)
    106      1.12        ad {
    107      1.12        ad 
    108      1.13        ad 	rw_init(&iostatlist_lock);
    109      1.18     pooka 	sysctl_io_stats_setup(NULL);
    110      1.12        ad }
    111       1.1     blymn 
    112       1.1     blymn /*
    113       1.1     blymn  * Searches the iostatlist for the iostat corresponding to the
    114       1.1     blymn  * name provided.
    115       1.1     blymn  */
    116       1.1     blymn struct io_stats *
    117       1.8      yamt iostat_find(const char *name)
    118       1.1     blymn {
    119       1.1     blymn 	struct io_stats *iostatp;
    120       1.1     blymn 
    121       1.8      yamt 	KASSERT(name != NULL);
    122       1.1     blymn 
    123      1.13        ad 	rw_enter(&iostatlist_lock, RW_READER);
    124       1.8      yamt 	TAILQ_FOREACH(iostatp, &iostatlist, io_link) {
    125       1.2     blymn 		if (strcmp(iostatp->io_name, name) == 0) {
    126       1.8      yamt 			break;
    127       1.1     blymn 		}
    128       1.8      yamt 	}
    129      1.13        ad 	rw_exit(&iostatlist_lock);
    130       1.1     blymn 
    131       1.8      yamt 	return iostatp;
    132       1.1     blymn }
    133       1.1     blymn 
    134       1.1     blymn /*
    135       1.1     blymn  * Allocate and initialise memory for the i/o statistics.
    136       1.1     blymn  */
    137       1.3      yamt struct io_stats *
    138      1.11  christos iostat_alloc(int32_t type, void *parent, const char *name)
    139       1.1     blymn {
    140       1.1     blymn 	struct io_stats *stats;
    141       1.1     blymn 
    142      1.16      yamt 	stats = kmem_zalloc(sizeof(*stats), KM_SLEEP);
    143       1.2     blymn 	stats->io_type = type;
    144      1.11  christos 	stats->io_parent = parent;
    145      1.11  christos 	(void)strlcpy(stats->io_name, name, sizeof(stats->io_name));
    146       1.1     blymn 
    147       1.1     blymn 	/*
    148       1.1     blymn 	 * Set the attached timestamp.
    149       1.1     blymn 	 */
    150      1.10    kardel 	getmicrouptime(&stats->io_attachtime);
    151       1.1     blymn 
    152       1.1     blymn 	/*
    153       1.1     blymn 	 * Link into the drivelist.
    154       1.1     blymn 	 */
    155      1.13        ad 	rw_enter(&iostatlist_lock, RW_WRITER);
    156       1.2     blymn 	TAILQ_INSERT_TAIL(&iostatlist, stats, io_link);
    157       1.1     blymn 	iostat_count++;
    158      1.13        ad 	rw_exit(&iostatlist_lock);
    159       1.1     blymn 
    160       1.1     blymn 	return stats;
    161       1.1     blymn }
    162       1.1     blymn 
    163       1.1     blymn /*
    164       1.1     blymn  * Remove i/o from stats collection.
    165       1.1     blymn  */
    166       1.1     blymn void
    167       1.1     blymn iostat_free(struct io_stats *stats)
    168       1.1     blymn {
    169       1.1     blymn 
    170       1.3      yamt 	/*
    171       1.3      yamt 	 * Remove from the iostat list.
    172       1.3      yamt 	 */
    173       1.1     blymn 	if (iostat_count == 0)
    174       1.1     blymn 		panic("iostat_free: iostat_count == 0");
    175      1.13        ad 	rw_enter(&iostatlist_lock, RW_WRITER);
    176       1.2     blymn 	TAILQ_REMOVE(&iostatlist, stats, io_link);
    177       1.1     blymn 	iostat_count--;
    178      1.13        ad 	rw_exit(&iostatlist_lock);
    179      1.16      yamt 	kmem_free(stats, sizeof(*stats));
    180       1.1     blymn }
    181       1.1     blymn 
    182       1.1     blymn /*
    183      1.22   mlelstv  * multiply timeval by unsigned integer and add to result
    184      1.22   mlelstv  */
    185      1.22   mlelstv static void
    186      1.22   mlelstv timermac(struct timeval *a, uint64_t count, struct timeval *res)
    187      1.22   mlelstv {
    188      1.22   mlelstv 	struct timeval part = *a;
    189      1.22   mlelstv 
    190      1.22   mlelstv 	while (count) {
    191      1.22   mlelstv 		if (count & 1)
    192      1.22   mlelstv 			timeradd(res, &part, res);
    193      1.22   mlelstv 		timeradd(&part, &part, &part);
    194      1.22   mlelstv 		count >>= 1;
    195      1.22   mlelstv 	}
    196      1.22   mlelstv }
    197      1.22   mlelstv 
    198      1.22   mlelstv /*
    199      1.22   mlelstv  * Increment the iostat wait counter.
    200      1.22   mlelstv  * Accumulate wait time and timesum.
    201      1.22   mlelstv  *
    202      1.22   mlelstv  * Wait time is spent in the device bufq.
    203      1.22   mlelstv  */
    204      1.22   mlelstv void
    205      1.22   mlelstv iostat_wait(struct io_stats *stats)
    206      1.22   mlelstv {
    207      1.22   mlelstv 	struct timeval dv_time, diff_time;
    208      1.22   mlelstv 	int32_t count;
    209      1.22   mlelstv 
    210      1.22   mlelstv 	KASSERT(stats->io_wait >= 0);
    211      1.22   mlelstv 
    212      1.22   mlelstv 	getmicrouptime(&dv_time);
    213      1.22   mlelstv 
    214      1.22   mlelstv 	timersub(&dv_time, &stats->io_waitstamp, &diff_time);
    215      1.22   mlelstv 	count = stats->io_wait++;
    216      1.22   mlelstv 	if (count != 0) {
    217      1.22   mlelstv 		timermac(&diff_time, count, &stats->io_waitsum);
    218      1.22   mlelstv 		timeradd(&stats->io_waittime, &diff_time, &stats->io_waittime);
    219      1.22   mlelstv 	}
    220      1.22   mlelstv 	stats->io_waitstamp = dv_time;
    221      1.22   mlelstv }
    222      1.22   mlelstv 
    223      1.22   mlelstv /*
    224      1.22   mlelstv  * Decrement the iostat wait counter.
    225      1.22   mlelstv  * Increment the iostat busy counter.
    226      1.22   mlelstv  * Accumulate wait and busy times and timesums.
    227      1.22   mlelstv  *
    228      1.22   mlelstv  * Busy time is spent being processed by the device.
    229      1.22   mlelstv  *
    230      1.22   mlelstv  * Old devices do not yet measure wait time, so skip
    231      1.22   mlelstv  * processing it if the counter is still zero.
    232       1.1     blymn  */
    233       1.1     blymn void
    234       1.1     blymn iostat_busy(struct io_stats *stats)
    235       1.1     blymn {
    236      1.22   mlelstv 	struct timeval dv_time, diff_time;
    237      1.22   mlelstv 	int32_t count;
    238      1.22   mlelstv 
    239      1.22   mlelstv 	KASSERT(stats->io_wait >= 0); /* > 0 when iostat_wait is used */
    240      1.22   mlelstv 	KASSERT(stats->io_busy >= 0);
    241      1.22   mlelstv 
    242      1.22   mlelstv 	getmicrouptime(&dv_time);
    243       1.1     blymn 
    244      1.22   mlelstv 	timersub(&dv_time, &stats->io_waitstamp, &diff_time);
    245      1.22   mlelstv 	if (stats->io_wait != 0) {
    246      1.22   mlelstv 		count = stats->io_wait--;
    247      1.22   mlelstv 		timermac(&diff_time, count, &stats->io_waitsum);
    248      1.22   mlelstv 		timeradd(&stats->io_waittime, &diff_time, &stats->io_waittime);
    249      1.22   mlelstv 	}
    250      1.22   mlelstv 	stats->io_waitstamp = dv_time;
    251      1.22   mlelstv 
    252      1.22   mlelstv 	timersub(&dv_time, &stats->io_busystamp, &diff_time);
    253      1.22   mlelstv 	count = stats->io_busy++;
    254      1.22   mlelstv 	if (count != 0) {
    255      1.22   mlelstv 		timermac(&diff_time, count, &stats->io_busysum);
    256      1.22   mlelstv 		timeradd(&stats->io_busytime, &diff_time, &stats->io_busytime);
    257      1.22   mlelstv 	}
    258      1.22   mlelstv 	stats->io_busystamp = dv_time;
    259       1.1     blymn }
    260       1.1     blymn 
    261       1.1     blymn /*
    262      1.22   mlelstv  * Decrement the iostat busy counter, increment the byte count.
    263      1.22   mlelstv  * Accumulate busy time and timesum.
    264       1.1     blymn  */
    265       1.1     blymn void
    266       1.1     blymn iostat_unbusy(struct io_stats *stats, long bcount, int read)
    267       1.1     blymn {
    268       1.1     blymn 	struct timeval dv_time, diff_time;
    269      1.22   mlelstv 	int32_t count;
    270       1.1     blymn 
    271      1.22   mlelstv 	KASSERT(stats->io_busy > 0);
    272       1.1     blymn 
    273      1.10    kardel 	getmicrouptime(&dv_time);
    274      1.22   mlelstv 	stats->io_timestamp = dv_time;
    275       1.1     blymn 
    276      1.22   mlelstv 	/* any op */
    277      1.22   mlelstv 	timersub(&dv_time, &stats->io_busystamp, &diff_time);
    278      1.22   mlelstv 	count = stats->io_busy--;
    279      1.22   mlelstv 	timermac(&diff_time, count, &stats->io_busysum);
    280      1.22   mlelstv 	timeradd(&stats->io_busytime, &diff_time, &stats->io_busytime);
    281      1.22   mlelstv 	stats->io_busystamp = dv_time;
    282       1.1     blymn 
    283       1.1     blymn 	if (bcount > 0) {
    284       1.1     blymn 		if (read) {
    285       1.2     blymn 			stats->io_rbytes += bcount;
    286       1.2     blymn 			stats->io_rxfer++;
    287       1.1     blymn 		} else {
    288       1.2     blymn 			stats->io_wbytes += bcount;
    289       1.2     blymn 			stats->io_wxfer++;
    290       1.1     blymn 		}
    291       1.1     blymn 	}
    292       1.1     blymn }
    293       1.1     blymn 
    294       1.1     blymn /*
    295      1.17        ad  * Return non-zero if a device has an I/O request in flight.
    296      1.17        ad  */
    297      1.17        ad bool
    298      1.17        ad iostat_isbusy(struct io_stats *stats)
    299      1.17        ad {
    300      1.17        ad 
    301      1.17        ad 	return stats->io_busy != 0;
    302      1.17        ad }
    303      1.17        ad 
    304      1.17        ad /*
    305       1.1     blymn  * Increment the seek counter.  This does look almost redundant but it
    306       1.1     blymn  * abstracts the stats gathering.
    307       1.1     blymn  */
    308       1.1     blymn void
    309       1.1     blymn iostat_seek(struct io_stats *stats)
    310       1.1     blymn {
    311       1.3      yamt 
    312       1.2     blymn 	stats->io_seek++;
    313       1.1     blymn }
    314       1.1     blymn 
    315       1.1     blymn static int
    316       1.1     blymn sysctl_hw_disknames(SYSCTLFN_ARGS)
    317       1.1     blymn {
    318       1.3      yamt 
    319       1.1     blymn 	return iostati_getnames(1, oldp, oldlenp, newp, namelen);
    320       1.1     blymn }
    321       1.1     blymn 
    322       1.1     blymn static int
    323       1.1     blymn sysctl_hw_iostatnames(SYSCTLFN_ARGS)
    324       1.1     blymn {
    325       1.3      yamt 
    326       1.1     blymn 	return iostati_getnames(0, oldp, oldlenp, newp, namelen);
    327       1.1     blymn }
    328       1.1     blymn 
    329       1.1     blymn static int
    330       1.1     blymn iostati_getnames(int disk_only, char *oldp, size_t *oldlenp, const void *newp,
    331       1.1     blymn 		 u_int namelen)
    332       1.1     blymn {
    333       1.1     blymn 	char bf[IOSTATNAMELEN + 1];
    334       1.1     blymn 	char *where = oldp;
    335       1.1     blymn 	struct io_stats *stats;
    336       1.1     blymn 	size_t needed, left, slen;
    337       1.1     blymn 	int error, first;
    338       1.1     blymn 
    339       1.1     blymn 	if (newp != NULL)
    340       1.1     blymn 		return (EPERM);
    341       1.1     blymn 	if (namelen != 0)
    342       1.1     blymn 		return (EINVAL);
    343       1.1     blymn 
    344       1.1     blymn 	first = 1;
    345       1.1     blymn 	error = 0;
    346       1.1     blymn 	needed = 0;
    347       1.1     blymn 	left = *oldlenp;
    348       1.1     blymn 
    349      1.13        ad 	rw_enter(&iostatlist_lock, RW_READER);
    350       1.1     blymn 	for (stats = TAILQ_FIRST(&iostatlist); stats != NULL;
    351       1.2     blymn 	    stats = TAILQ_NEXT(stats, io_link)) {
    352       1.2     blymn 		if ((disk_only == 1) && (stats->io_type != IOSTAT_DISK))
    353       1.1     blymn 			continue;
    354       1.1     blymn 
    355       1.1     blymn 		if (where == NULL)
    356       1.2     blymn 			needed += strlen(stats->io_name) + 1;
    357       1.1     blymn 		else {
    358       1.1     blymn 			memset(bf, 0, sizeof(bf));
    359       1.1     blymn 			if (first) {
    360       1.2     blymn 				strncpy(bf, stats->io_name, sizeof(bf));
    361       1.1     blymn 				first = 0;
    362       1.1     blymn 			} else {
    363       1.1     blymn 				bf[0] = ' ';
    364       1.2     blymn 				strncpy(bf + 1, stats->io_name,
    365       1.1     blymn 				    sizeof(bf) - 1);
    366       1.1     blymn 			}
    367       1.1     blymn 			bf[IOSTATNAMELEN] = '\0';
    368       1.1     blymn 			slen = strlen(bf);
    369       1.1     blymn 			if (left < slen + 1)
    370       1.1     blymn 				break;
    371       1.1     blymn 			/* +1 to copy out the trailing NUL byte */
    372       1.1     blymn 			error = copyout(bf, where, slen + 1);
    373       1.1     blymn 			if (error)
    374       1.1     blymn 				break;
    375       1.1     blymn 			where += slen;
    376       1.1     blymn 			needed += slen;
    377       1.1     blymn 			left -= slen;
    378       1.1     blymn 		}
    379       1.1     blymn 	}
    380      1.13        ad 	rw_exit(&iostatlist_lock);
    381       1.1     blymn 	*oldlenp = needed;
    382       1.1     blymn 	return (error);
    383       1.1     blymn }
    384       1.1     blymn 
    385       1.1     blymn static int
    386       1.1     blymn sysctl_hw_iostats(SYSCTLFN_ARGS)
    387       1.1     blymn {
    388       1.1     blymn 	struct io_sysctl sdrive;
    389       1.1     blymn 	struct io_stats *stats;
    390       1.1     blymn 	char *where = oldp;
    391       1.1     blymn 	size_t tocopy, left;
    392       1.1     blymn 	int error;
    393       1.1     blymn 
    394       1.1     blymn 	if (newp != NULL)
    395       1.1     blymn 		return (EPERM);
    396       1.1     blymn 
    397       1.1     blymn 	/*
    398       1.1     blymn 	 * The original hw.diskstats call was broken and did not require
    399      1.21       snj 	 * the userland to pass in its size of struct disk_sysctl.  This
    400      1.15        ad 	 * was fixed after NetBSD 1.6 was released.
    401       1.1     blymn 	 */
    402       1.1     blymn 	if (namelen == 0)
    403       1.1     blymn 		tocopy = offsetof(struct io_sysctl, busy);
    404       1.1     blymn 	else
    405       1.1     blymn 		tocopy = name[0];
    406       1.1     blymn 
    407       1.1     blymn 	if (where == NULL) {
    408       1.1     blymn 		*oldlenp = iostat_count * tocopy;
    409       1.1     blymn 		return (0);
    410       1.1     blymn 	}
    411       1.1     blymn 
    412       1.1     blymn 	error = 0;
    413       1.1     blymn 	left = *oldlenp;
    414       1.1     blymn 	memset(&sdrive, 0, sizeof(sdrive));
    415       1.1     blymn 	*oldlenp = 0;
    416       1.1     blymn 
    417      1.13        ad 	rw_enter(&iostatlist_lock, RW_READER);
    418       1.2     blymn 	TAILQ_FOREACH(stats, &iostatlist, io_link) {
    419       1.1     blymn 		if (left < tocopy)
    420       1.1     blymn 			break;
    421      1.22   mlelstv 
    422       1.2     blymn 		strncpy(sdrive.name, stats->io_name, sizeof(sdrive.name));
    423      1.22   mlelstv 		sdrive.attachtime_sec = stats->io_attachtime.tv_sec;
    424      1.22   mlelstv 		sdrive.attachtime_usec = stats->io_attachtime.tv_usec;
    425      1.22   mlelstv 		sdrive.timestamp_sec = stats->io_busystamp.tv_sec;
    426      1.22   mlelstv 		sdrive.timestamp_usec = stats->io_busystamp.tv_usec;
    427      1.22   mlelstv 
    428      1.22   mlelstv 		sdrive.time_sec = stats->io_busytime.tv_sec;
    429      1.22   mlelstv 		sdrive.time_usec = stats->io_busytime.tv_usec;
    430      1.22   mlelstv 
    431      1.22   mlelstv 		sdrive.seek = stats->io_seek;
    432      1.22   mlelstv 
    433       1.2     blymn 		sdrive.rxfer = stats->io_rxfer;
    434       1.2     blymn 		sdrive.wxfer = stats->io_wxfer;
    435      1.22   mlelstv 		sdrive.xfer = stats->io_rxfer + stats->io_wxfer;
    436      1.22   mlelstv 
    437       1.2     blymn 		sdrive.rbytes = stats->io_rbytes;
    438       1.2     blymn 		sdrive.wbytes = stats->io_wbytes;
    439      1.22   mlelstv 		sdrive.bytes = stats->io_rbytes + stats->io_wbytes;
    440      1.22   mlelstv 
    441      1.22   mlelstv 		sdrive.wait_sec = stats->io_waittime.tv_sec;
    442      1.22   mlelstv 		sdrive.wait_usec = stats->io_waittime.tv_usec;
    443      1.22   mlelstv 
    444      1.22   mlelstv 		sdrive.time_sec = stats->io_busytime.tv_sec;
    445      1.22   mlelstv 		sdrive.time_usec = stats->io_busytime.tv_usec;
    446      1.22   mlelstv 
    447      1.22   mlelstv 		sdrive.waitsum_sec = stats->io_waitsum.tv_sec;
    448      1.22   mlelstv 		sdrive.waitsum_usec = stats->io_waitsum.tv_usec;
    449      1.22   mlelstv 
    450      1.22   mlelstv 		sdrive.busysum_sec = stats->io_busysum.tv_sec;
    451      1.22   mlelstv 		sdrive.busysum_usec = stats->io_busysum.tv_usec;
    452      1.22   mlelstv 
    453       1.2     blymn 		sdrive.busy = stats->io_busy;
    454       1.1     blymn 
    455  1.23.8.1  pgoyette 		error = copyout(&sdrive, where, uimin(tocopy, sizeof(sdrive)));
    456       1.1     blymn 		if (error)
    457       1.1     blymn 			break;
    458       1.1     blymn 		where += tocopy;
    459       1.1     blymn 		*oldlenp += tocopy;
    460       1.1     blymn 		left -= tocopy;
    461       1.1     blymn 	}
    462      1.13        ad 	rw_exit(&iostatlist_lock);
    463       1.1     blymn 	return (error);
    464       1.1     blymn }
    465       1.1     blymn 
    466      1.18     pooka static void
    467      1.18     pooka sysctl_io_stats_setup(struct sysctllog **clog)
    468       1.1     blymn {
    469       1.3      yamt 
    470       1.1     blymn 	sysctl_createv(clog, 0, NULL, NULL,
    471       1.1     blymn 		       CTLFLAG_PERMANENT,
    472       1.1     blymn 		       CTLTYPE_STRING, "disknames",
    473       1.1     blymn 		       SYSCTL_DESCR("List of disk drives present"),
    474       1.1     blymn 		       sysctl_hw_disknames, 0, NULL, 0,
    475       1.1     blymn 		       CTL_HW, HW_DISKNAMES, CTL_EOL);
    476       1.1     blymn 	sysctl_createv(clog, 0, NULL, NULL,
    477       1.1     blymn 		       CTLFLAG_PERMANENT,
    478       1.1     blymn 		       CTLTYPE_STRING, "iostatnames",
    479       1.1     blymn 		       SYSCTL_DESCR("I/O stats are being collected for these"
    480       1.1     blymn 				    " devices"),
    481       1.1     blymn 		       sysctl_hw_iostatnames, 0, NULL, 0,
    482       1.1     blymn 		       CTL_HW, HW_IOSTATNAMES, CTL_EOL);
    483       1.1     blymn 	sysctl_createv(clog, 0, NULL, NULL,
    484       1.1     blymn 		       CTLFLAG_PERMANENT,
    485       1.7      yamt 		       CTLTYPE_STRUCT, "iostats",
    486       1.1     blymn 		       SYSCTL_DESCR("Statistics on device I/O operations"),
    487       1.1     blymn 		       sysctl_hw_iostats, 0, NULL, 0,
    488       1.1     blymn 		       CTL_HW, HW_IOSTATS, CTL_EOL);
    489       1.1     blymn }
    490