xref: /freebsd/usr.sbin/diskinfo/diskinfo.c (revision 4d3fc8b0)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 2003 Poul-Henning Kamp
5  * Copyright (c) 2015 Spectra Logic Corporation
6  * Copyright (c) 2017 Alexander Motin <mav@FreeBSD.org>
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. The names of the authors may not be used to endorse or promote
18  *    products derived from this software without specific prior written
19  *    permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  * $FreeBSD$
34  */
35 
36 #include <stdbool.h>
37 #include <stdio.h>
38 #include <stdint.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <strings.h>
42 #include <unistd.h>
43 #include <errno.h>
44 #include <fcntl.h>
45 #include <libutil.h>
46 #include <paths.h>
47 #include <err.h>
48 #include <geom/geom_disk.h>
49 #include <sysexits.h>
50 #include <sys/aio.h>
51 #include <sys/disk.h>
52 #include <sys/param.h>
53 #include <sys/stat.h>
54 #include <sys/time.h>
55 
56 #define	NAIO	128
57 #define	MAXTX	(8*1024*1024)
58 #define	MEGATX	(1024*1024)
59 
60 static void
61 usage(void)
62 {
63 	fprintf(stderr, "usage: diskinfo [-cipsStvw] disk ...\n");
64 	exit (1);
65 }
66 
67 static int opt_c, opt_i, opt_p, opt_s, opt_S, opt_t, opt_v, opt_w;
68 
69 static bool candelete(int fd);
70 static void speeddisk(int fd, off_t mediasize, u_int sectorsize);
71 static void commandtime(int fd, off_t mediasize, u_int sectorsize);
72 static void iopsbench(int fd, off_t mediasize, u_int sectorsize);
73 static void rotationrate(int fd, char *buf, size_t buflen);
74 static void slogbench(int fd, int isreg, off_t mediasize, u_int sectorsize);
75 static int zonecheck(int fd, uint32_t *zone_mode, char *zone_str,
76 		     size_t zone_str_len);
77 
78 static uint8_t *buf;
79 
80 int
81 main(int argc, char **argv)
82 {
83 	struct stat sb;
84 	int i, ch, fd, error, exitval = 0;
85 	char tstr[BUFSIZ], ident[DISK_IDENT_SIZE], physpath[MAXPATHLEN];
86 	char zone_desc[64];
87 	char rrate[64];
88 	struct diocgattr_arg arg;
89 	off_t	mediasize, stripesize, stripeoffset;
90 	u_int	sectorsize, fwsectors, fwheads, zoned = 0, isreg;
91 	uint32_t zone_mode;
92 
93 	while ((ch = getopt(argc, argv, "cipsStvw")) != -1) {
94 		switch (ch) {
95 		case 'c':
96 			opt_c = 1;
97 			opt_v = 1;
98 			break;
99 		case 'i':
100 			opt_i = 1;
101 			opt_v = 1;
102 			break;
103 		case 'p':
104 			opt_p = 1;
105 			break;
106 		case 's':
107 			opt_s = 1;
108 			break;
109 		case 'S':
110 			opt_S = 1;
111 			opt_v = 1;
112 			break;
113 		case 't':
114 			opt_t = 1;
115 			opt_v = 1;
116 			break;
117 		case 'v':
118 			opt_v = 1;
119 			break;
120 		case 'w':
121 			opt_w = 1;
122 			break;
123 		default:
124 			usage();
125 		}
126 	}
127 	argc -= optind;
128 	argv += optind;
129 
130 	if (argc < 1)
131 		usage();
132 
133 	if ((opt_p && opt_s) || ((opt_p || opt_s) && (opt_c || opt_i || opt_t || opt_v))) {
134 		warnx("-p or -s cannot be used with other options");
135 		usage();
136 	}
137 
138 	if (opt_S && !opt_w) {
139 		warnx("-S require also -w");
140 		usage();
141 	}
142 
143 	if (posix_memalign((void **)&buf, PAGE_SIZE, MAXTX))
144 		errx(1, "Can't allocate memory buffer");
145 	for (i = 0; i < argc; i++) {
146 		fd = open(argv[i], (opt_w ? O_RDWR : O_RDONLY) | O_DIRECT);
147 		if (fd < 0 && errno == ENOENT && *argv[i] != '/') {
148 			snprintf(tstr, sizeof(tstr), "%s%s", _PATH_DEV, argv[i]);
149 			fd = open(tstr, O_RDONLY);
150 		}
151 		if (fd < 0) {
152 			warn("%s", argv[i]);
153 			exit(1);
154 		}
155 		error = fstat(fd, &sb);
156 		if (error != 0) {
157 			warn("cannot stat %s", argv[i]);
158 			exitval = 1;
159 			goto out;
160 		}
161 		isreg = S_ISREG(sb.st_mode);
162 		if (isreg) {
163 			mediasize = sb.st_size;
164 			sectorsize = S_BLKSIZE;
165 			fwsectors = 0;
166 			fwheads = 0;
167 			stripesize = sb.st_blksize;
168 			stripeoffset = 0;
169 			if (opt_p || opt_s) {
170 				warnx("-p and -s only operate on physical devices: %s", argv[i]);
171 				goto out;
172 			}
173 		} else {
174 			if (opt_p) {
175 				if (ioctl(fd, DIOCGPHYSPATH, physpath) == 0) {
176 					printf("%s\n", physpath);
177 				} else {
178 					warnx("Failed to determine physpath for: %s", argv[i]);
179 				}
180 				goto out;
181 			}
182 			if (opt_s) {
183 				if (ioctl(fd, DIOCGIDENT, ident) == 0) {
184 					printf("%s\n", ident);
185 				} else {
186 					warnx("Failed to determine serial number for: %s", argv[i]);
187 				}
188 				goto out;
189 			}
190 			error = ioctl(fd, DIOCGMEDIASIZE, &mediasize);
191 			if (error) {
192 				warnx("%s: ioctl(DIOCGMEDIASIZE) failed, probably not a disk.", argv[i]);
193 				exitval = 1;
194 				goto out;
195 			}
196 			error = ioctl(fd, DIOCGSECTORSIZE, &sectorsize);
197 			if (error) {
198 				warnx("%s: ioctl(DIOCGSECTORSIZE) failed, probably not a disk.", argv[i]);
199 				exitval = 1;
200 				goto out;
201 			}
202 			error = ioctl(fd, DIOCGFWSECTORS, &fwsectors);
203 			if (error)
204 				fwsectors = 0;
205 			error = ioctl(fd, DIOCGFWHEADS, &fwheads);
206 			if (error)
207 				fwheads = 0;
208 			error = ioctl(fd, DIOCGSTRIPESIZE, &stripesize);
209 			if (error)
210 				stripesize = 0;
211 			error = ioctl(fd, DIOCGSTRIPEOFFSET, &stripeoffset);
212 			if (error)
213 				stripeoffset = 0;
214 			error = zonecheck(fd, &zone_mode, zone_desc, sizeof(zone_desc));
215 			if (error == 0)
216 				zoned = 1;
217 		}
218 		if (!opt_v) {
219 			printf("%s", argv[i]);
220 			printf("\t%u", sectorsize);
221 			printf("\t%jd", (intmax_t)mediasize);
222 			printf("\t%jd", (intmax_t)mediasize/sectorsize);
223 			printf("\t%jd", (intmax_t)stripesize);
224 			printf("\t%jd", (intmax_t)stripeoffset);
225 			if (fwsectors != 0 && fwheads != 0) {
226 				printf("\t%jd", (intmax_t)mediasize /
227 				    (fwsectors * fwheads * sectorsize));
228 				printf("\t%u", fwheads);
229 				printf("\t%u", fwsectors);
230 			}
231 		} else {
232 			humanize_number(tstr, 5, (int64_t)mediasize, "",
233 			    HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL);
234 			printf("%s\n", argv[i]);
235 			printf("\t%-12u\t# sectorsize\n", sectorsize);
236 			printf("\t%-12jd\t# mediasize in bytes (%s)\n",
237 			    (intmax_t)mediasize, tstr);
238 			printf("\t%-12jd\t# mediasize in sectors\n",
239 			    (intmax_t)mediasize/sectorsize);
240 			printf("\t%-12jd\t# stripesize\n", stripesize);
241 			printf("\t%-12jd\t# stripeoffset\n", stripeoffset);
242 			if (fwsectors != 0 && fwheads != 0) {
243 				printf("\t%-12jd\t# Cylinders according to firmware.\n", (intmax_t)mediasize /
244 				    (fwsectors * fwheads * sectorsize));
245 				printf("\t%-12u\t# Heads according to firmware.\n", fwheads);
246 				printf("\t%-12u\t# Sectors according to firmware.\n", fwsectors);
247 			}
248 			strlcpy(arg.name, "GEOM::descr", sizeof(arg.name));
249 			arg.len = sizeof(arg.value.str);
250 			if (ioctl(fd, DIOCGATTR, &arg) == 0)
251 				printf("\t%-12s\t# Disk descr.\n", arg.value.str);
252 			if (ioctl(fd, DIOCGIDENT, ident) == 0)
253 				printf("\t%-12s\t# Disk ident.\n", ident);
254 			strlcpy(arg.name, "GEOM::attachment", sizeof(arg.name));
255 			arg.len = sizeof(arg.value.str);
256 			if (ioctl(fd, DIOCGATTR, &arg) == 0)
257 				printf("\t%-12s\t# Attachment\n", arg.value.str);
258 			if (ioctl(fd, DIOCGPHYSPATH, physpath) == 0)
259 				printf("\t%-12s\t# Physical path\n", physpath);
260 			printf("\t%-12s\t# TRIM/UNMAP support\n",
261 			    candelete(fd) ? "Yes" : "No");
262 			rotationrate(fd, rrate, sizeof(rrate));
263 			printf("\t%-12s\t# Rotation rate in RPM\n", rrate);
264 			if (zoned != 0)
265 				printf("\t%-12s\t# Zone Mode\n", zone_desc);
266 		}
267 		printf("\n");
268 		if (opt_c)
269 			commandtime(fd, mediasize, sectorsize);
270 		if (opt_t)
271 			speeddisk(fd, mediasize, sectorsize);
272 		if (opt_i)
273 			iopsbench(fd, mediasize, sectorsize);
274 		if (opt_S)
275 			slogbench(fd, isreg, mediasize, sectorsize);
276 out:
277 		close(fd);
278 	}
279 	free(buf);
280 	exit (exitval);
281 }
282 
283 static bool
284 candelete(int fd)
285 {
286 	struct diocgattr_arg arg;
287 
288 	strlcpy(arg.name, "GEOM::candelete", sizeof(arg.name));
289 	arg.len = sizeof(arg.value.i);
290 	if (ioctl(fd, DIOCGATTR, &arg) == 0)
291 		return (arg.value.i != 0);
292 	else
293 		return (false);
294 }
295 
296 static void
297 rotationrate(int fd, char *rate, size_t buflen)
298 {
299 	struct diocgattr_arg arg;
300 	int ret;
301 
302 	strlcpy(arg.name, "GEOM::rotation_rate", sizeof(arg.name));
303 	arg.len = sizeof(arg.value.u16);
304 
305 	ret = ioctl(fd, DIOCGATTR, &arg);
306 	if (ret < 0 || arg.value.u16 == DISK_RR_UNKNOWN)
307 		snprintf(rate, buflen, "Unknown");
308 	else if (arg.value.u16 == DISK_RR_NON_ROTATING)
309 		snprintf(rate, buflen, "%d", 0);
310 	else if (arg.value.u16 >= DISK_RR_MIN && arg.value.u16 <= DISK_RR_MAX)
311 		snprintf(rate, buflen, "%d", arg.value.u16);
312 	else
313 		snprintf(rate, buflen, "Invalid");
314 }
315 
316 static void
317 rdsect(int fd, off_t blockno, u_int sectorsize)
318 {
319 	int error;
320 
321 	if (lseek(fd, (off_t)blockno * sectorsize, SEEK_SET) == -1)
322 		err(1, "lseek");
323 	error = read(fd, buf, sectorsize);
324 	if (error == -1)
325 		err(1, "read");
326 	if (error != (int)sectorsize)
327 		errx(1, "disk too small for test.");
328 }
329 
330 static void
331 rdmega(int fd)
332 {
333 	int error;
334 
335 	error = read(fd, buf, MEGATX);
336 	if (error == -1)
337 		err(1, "read");
338 	if (error != MEGATX)
339 		errx(1, "disk too small for test.");
340 }
341 
342 static struct timeval tv1, tv2;
343 
344 static void
345 T0(void)
346 {
347 
348 	fflush(stdout);
349 	sync();
350 	sleep(1);
351 	sync();
352 	sync();
353 	gettimeofday(&tv1, NULL);
354 }
355 
356 static double
357 delta_t(void)
358 {
359 	double dt;
360 
361 	gettimeofday(&tv2, NULL);
362 	dt = (tv2.tv_usec - tv1.tv_usec) / 1e6;
363 	dt += (tv2.tv_sec - tv1.tv_sec);
364 
365 	return (dt);
366 }
367 
368 static void
369 TN(int count)
370 {
371 	double dt;
372 
373 	dt = delta_t();
374 	printf("%5d iter in %10.6f sec = %8.3f msec\n",
375 		count, dt, dt * 1000.0 / count);
376 }
377 
378 static void
379 TR(double count)
380 {
381 	double dt;
382 
383 	dt = delta_t();
384 	printf("%8.0f kbytes in %10.6f sec = %8.0f kbytes/sec\n",
385 		count, dt, count / dt);
386 }
387 
388 static void
389 TI(double count)
390 {
391 	double dt;
392 
393 	dt = delta_t();
394 	printf("%8.0f ops in  %10.6f sec = %8.0f IOPS\n",
395 		count, dt, count / dt);
396 }
397 
398 static void
399 TS(u_int size, int count)
400 {
401 	double dt;
402 
403 	dt = delta_t();
404 	printf("%8.1f usec/IO = %8.1f Mbytes/s\n",
405 	    dt * 1000000.0 / count, (double)size * count / dt / (1024 * 1024));
406 }
407 
408 static void
409 speeddisk(int fd, off_t mediasize, u_int sectorsize)
410 {
411 	int bulk, i;
412 	off_t b0, b1, sectorcount, step;
413 
414 	/*
415 	 * Drives smaller than 1MB produce negative sector numbers,
416 	 * as do 2048 or fewer sectors.
417 	 */
418 	sectorcount = mediasize / sectorsize;
419 	if (mediasize < 1024 * 1024 || sectorcount < 2048)
420 		return;
421 
422 
423 	step = 1ULL << (flsll(sectorcount / (4 * 200)) - 1);
424 	if (step > 16384)
425 		step = 16384;
426 	bulk = mediasize / (1024 * 1024);
427 	if (bulk > 100)
428 		bulk = 100;
429 
430 	printf("Seek times:\n");
431 	printf("\tFull stroke:\t");
432 	b0 = 0;
433 	b1 = sectorcount - step;
434 	T0();
435 	for (i = 0; i < 125; i++) {
436 		rdsect(fd, b0, sectorsize);
437 		b0 += step;
438 		rdsect(fd, b1, sectorsize);
439 		b1 -= step;
440 	}
441 	TN(250);
442 
443 	printf("\tHalf stroke:\t");
444 	b0 = sectorcount / 4;
445 	b1 = b0 + sectorcount / 2;
446 	T0();
447 	for (i = 0; i < 125; i++) {
448 		rdsect(fd, b0, sectorsize);
449 		b0 += step;
450 		rdsect(fd, b1, sectorsize);
451 		b1 += step;
452 	}
453 	TN(250);
454 	printf("\tQuarter stroke:\t");
455 	b0 = sectorcount / 4;
456 	b1 = b0 + sectorcount / 4;
457 	T0();
458 	for (i = 0; i < 250; i++) {
459 		rdsect(fd, b0, sectorsize);
460 		b0 += step;
461 		rdsect(fd, b1, sectorsize);
462 		b1 += step;
463 	}
464 	TN(500);
465 
466 	printf("\tShort forward:\t");
467 	b0 = sectorcount / 2;
468 	T0();
469 	for (i = 0; i < 400; i++) {
470 		rdsect(fd, b0, sectorsize);
471 		b0 += step;
472 	}
473 	TN(400);
474 
475 	printf("\tShort backward:\t");
476 	b0 = sectorcount / 2;
477 	T0();
478 	for (i = 0; i < 400; i++) {
479 		rdsect(fd, b0, sectorsize);
480 		b0 -= step;
481 	}
482 	TN(400);
483 
484 	printf("\tSeq outer:\t");
485 	b0 = 0;
486 	T0();
487 	for (i = 0; i < 2048; i++) {
488 		rdsect(fd, b0, sectorsize);
489 		b0++;
490 	}
491 	TN(2048);
492 
493 	printf("\tSeq inner:\t");
494 	b0 = sectorcount - 2048;
495 	T0();
496 	for (i = 0; i < 2048; i++) {
497 		rdsect(fd, b0, sectorsize);
498 		b0++;
499 	}
500 	TN(2048);
501 
502 	printf("\nTransfer rates:\n");
503 	printf("\toutside:     ");
504 	rdsect(fd, 0, sectorsize);
505 	T0();
506 	for (i = 0; i < bulk; i++) {
507 		rdmega(fd);
508 	}
509 	TR(bulk * 1024);
510 
511 	printf("\tmiddle:      ");
512 	b0 = sectorcount / 2 - bulk * (1024*1024 / sectorsize) / 2 - 1;
513 	rdsect(fd, b0, sectorsize);
514 	T0();
515 	for (i = 0; i < bulk; i++) {
516 		rdmega(fd);
517 	}
518 	TR(bulk * 1024);
519 
520 	printf("\tinside:      ");
521 	b0 = sectorcount - bulk * (1024*1024 / sectorsize) - 1;
522 	rdsect(fd, b0, sectorsize);
523 	T0();
524 	for (i = 0; i < bulk; i++) {
525 		rdmega(fd);
526 	}
527 	TR(bulk * 1024);
528 
529 	printf("\n");
530 }
531 
532 static void
533 commandtime(int fd, off_t mediasize, u_int sectorsize)
534 {
535 	double dtmega, dtsector;
536 	int i;
537 
538 	printf("I/O command overhead:\n");
539 	i = mediasize;
540 	rdsect(fd, 0, sectorsize);
541 	T0();
542 	for (i = 0; i < 10; i++)
543 		rdmega(fd);
544 	dtmega = delta_t();
545 
546 	printf("\ttime to read 10MB block    %10.6f sec\t= %8.3f msec/sector\n",
547 		dtmega, dtmega*100/2048);
548 
549 	rdsect(fd, 0, sectorsize);
550 	T0();
551 	for (i = 0; i < 20480; i++)
552 		rdsect(fd, 0, sectorsize);
553 	dtsector = delta_t();
554 
555 	printf("\ttime to read 20480 sectors %10.6f sec\t= %8.3f msec/sector\n",
556 		dtsector, dtsector*100/2048);
557 	printf("\tcalculated command overhead\t\t\t= %8.3f msec/sector\n",
558 		(dtsector - dtmega)*100/2048);
559 
560 	printf("\n");
561 }
562 
563 static void
564 iops(int fd, off_t mediasize, u_int sectorsize)
565 {
566 	struct aiocb aios[NAIO], *aiop;
567 	ssize_t ret;
568 	off_t sectorcount;
569 	int error, i, queued, completed;
570 
571 	sectorcount = mediasize / sectorsize;
572 
573 	for (i = 0; i < NAIO; i++) {
574 		aiop = &(aios[i]);
575 		bzero(aiop, sizeof(*aiop));
576 		aiop->aio_buf = malloc(sectorsize);
577 		if (aiop->aio_buf == NULL)
578 			err(1, "malloc");
579 	}
580 
581 	T0();
582 	for (i = 0; i < NAIO; i++) {
583 		aiop = &(aios[i]);
584 
585 		aiop->aio_fildes = fd;
586 		aiop->aio_offset = (random() % (sectorcount)) * sectorsize;
587 		aiop->aio_nbytes = sectorsize;
588 
589 		error = aio_read(aiop);
590 		if (error != 0)
591 			err(1, "aio_read");
592 	}
593 
594 	queued = i;
595 	completed = 0;
596 
597 	for (;;) {
598 		ret = aio_waitcomplete(&aiop, NULL);
599 		if (ret < 0)
600 			err(1, "aio_waitcomplete");
601 		if (ret != (ssize_t)sectorsize)
602 			errx(1, "short read");
603 
604 		completed++;
605 
606 		if (delta_t() < 3.0) {
607 			aiop->aio_fildes = fd;
608 			aiop->aio_offset = (random() % (sectorcount)) * sectorsize;
609 			aiop->aio_nbytes = sectorsize;
610 
611 			error = aio_read(aiop);
612 			if (error != 0)
613 				err(1, "aio_read");
614 
615 			queued++;
616 		} else if (completed == queued) {
617 			break;
618 		}
619 	}
620 
621 	TI(completed);
622 }
623 
624 static void
625 iopsbench(int fd, off_t mediasize, u_int sectorsize)
626 {
627 	printf("Asynchronous random reads:\n");
628 
629 	printf("\tsectorsize:  ");
630 	iops(fd, mediasize, sectorsize);
631 
632 	if (sectorsize != 4096) {
633 		printf("\t4 kbytes:    ");
634 		iops(fd, mediasize, 4096);
635 	}
636 
637 	printf("\t32 kbytes:   ");
638 	iops(fd, mediasize, 32 * 1024);
639 
640 	printf("\t128 kbytes:  ");
641 	iops(fd, mediasize, 128 * 1024);
642 
643 	printf("\t1024 kbytes: ");
644 	iops(fd, mediasize, 1024 * 1024);
645 
646 	printf("\n");
647 }
648 
649 #define MAXIO (128*1024)
650 #define MAXIOS (MAXTX / MAXIO)
651 
652 static void
653 parwrite(int fd, size_t size, off_t off)
654 {
655 	struct aiocb aios[MAXIOS];
656 	off_t o;
657 	int n, error;
658 	struct aiocb *aiop;
659 
660 	// if size > MAXIO, use AIO to write n - 1 pieces in parallel
661 	for (n = 0, o = 0; size > MAXIO; n++, size -= MAXIO, o += MAXIO) {
662 		aiop = &aios[n];
663 		bzero(aiop, sizeof(*aiop));
664 		aiop->aio_buf = &buf[o];
665 		aiop->aio_fildes = fd;
666 		aiop->aio_offset = off + o;
667 		aiop->aio_nbytes = MAXIO;
668 		error = aio_write(aiop);
669 		if (error != 0)
670 			err(EX_IOERR, "AIO write submit error");
671 	}
672 	// Use synchronous writes for the runt of size <= MAXIO
673 	error = pwrite(fd, &buf[o], size, off + o);
674 	if (error < 0)
675 		err(EX_IOERR, "Sync write error");
676 	for (; n > 0; n--) {
677 		error = aio_waitcomplete(&aiop, NULL);
678 		if (error < 0)
679 			err(EX_IOERR, "AIO write wait error");
680 	}
681 }
682 
683 static void
684 slogbench(int fd, int isreg, off_t mediasize, u_int sectorsize)
685 {
686 	off_t off;
687 	u_int size;
688 	int error, n, N, nowritecache = 0;
689 
690 	printf("Synchronous random writes:\n");
691 	for (size = sectorsize; size <= MAXTX; size *= 2) {
692 		printf("\t%4.4g kbytes: ", (double)size / 1024);
693 		N = 0;
694 		T0();
695 		do {
696 			for (n = 0; n < 250; n++) {
697 				off = random() % (mediasize / size);
698 				parwrite(fd, size, off * size);
699 				if (nowritecache)
700 					continue;
701 				if (isreg)
702 					error = fsync(fd);
703 				else
704 					error = ioctl(fd, DIOCGFLUSH);
705 				if (error < 0) {
706 					if (errno == ENOTSUP)
707 						nowritecache = 1;
708 					else
709 						err(EX_IOERR, "Flush error");
710 				}
711 			}
712 			N += 250;
713 		} while (delta_t() < 1.0);
714 		TS(size, N);
715 	}
716 }
717 
718 static int
719 zonecheck(int fd, uint32_t *zone_mode, char *zone_str, size_t zone_str_len)
720 {
721 	struct disk_zone_args zone_args;
722 	int error;
723 
724 	bzero(&zone_args, sizeof(zone_args));
725 
726 	zone_args.zone_cmd = DISK_ZONE_GET_PARAMS;
727 	error = ioctl(fd, DIOCZONECMD, &zone_args);
728 
729 	if (error == 0) {
730 		*zone_mode = zone_args.zone_params.disk_params.zone_mode;
731 
732 		switch (*zone_mode) {
733 		case DISK_ZONE_MODE_NONE:
734 			snprintf(zone_str, zone_str_len, "Not_Zoned");
735 			break;
736 		case DISK_ZONE_MODE_HOST_AWARE:
737 			snprintf(zone_str, zone_str_len, "Host_Aware");
738 			break;
739 		case DISK_ZONE_MODE_DRIVE_MANAGED:
740 			snprintf(zone_str, zone_str_len, "Drive_Managed");
741 			break;
742 		case DISK_ZONE_MODE_HOST_MANAGED:
743 			snprintf(zone_str, zone_str_len, "Host_Managed");
744 			break;
745 		default:
746 			snprintf(zone_str, zone_str_len, "Unknown_zone_mode_%u",
747 			    *zone_mode);
748 			break;
749 		}
750 	}
751 	return (error);
752 }
753