2 * Copyright (c) 2003,2004,2009 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
6 * and Alex Hornung <ahornung@gmail.com>
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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
16 * the documentation and/or other materials provided with the
18 * 3. Neither the name of The DragonFly Project nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific, prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * ----------------------------------------------------------------------------
36 * "THE BEER-WARE LICENSE" (Revision 42):
37 * <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
38 * can do whatever you want with this stuff. If we meet some day, and you think
39 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
40 * ----------------------------------------------------------------------------
42 * Copyright (c) 1982, 1986, 1988, 1993
43 * The Regents of the University of California. All rights reserved.
44 * (c) UNIX System Laboratories, Inc.
45 * All or some portions of this file are derived from material licensed
46 * to the University of California by American Telephone and Telegraph
47 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
48 * the permission of UNIX System Laboratories, Inc.
50 * Redistribution and use in source and binary forms, with or without
51 * modification, are permitted provided that the following conditions
53 * 1. Redistributions of source code must retain the above copyright
54 * notice, this list of conditions and the following disclaimer.
55 * 2. Redistributions in binary form must reproduce the above copyright
56 * notice, this list of conditions and the following disclaimer in the
57 * documentation and/or other materials provided with the distribution.
58 * 3. Neither the name of the University nor the names of its contributors
59 * may be used to endorse or promote products derived from this software
60 * without specific prior written permission.
62 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
63 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
64 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
65 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
66 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
67 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
68 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
69 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
70 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
71 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
74 * @(#)ufs_disksubr.c 8.5 (Berkeley) 1/21/94
75 * $FreeBSD: src/sys/kern/subr_disk.c,v 1.20.2.6 2001/10/05 07:14:57 peter Exp $
76 * $FreeBSD: src/sys/ufs/ufs/ufs_disksubr.c,v 1.44.2.3 2001/03/05 05:42:19 obrien Exp $
79 #include <sys/param.h>
80 #include <sys/systm.h>
81 #include <sys/kernel.h>
83 #include <sys/sysctl.h>
86 #include <sys/disklabel.h>
87 #include <sys/disklabel32.h>
88 #include <sys/disklabel64.h>
89 #include <sys/diskslice.h>
90 #include <sys/diskmbr.h>
92 #include <sys/kerneldump.h>
93 #include <sys/malloc.h>
94 #include <machine/md_var.h>
95 #include <sys/ctype.h>
96 #include <sys/syslog.h>
97 #include <sys/device.h>
98 #include <sys/msgport.h>
99 #include <sys/devfs.h>
100 #include <sys/thread.h>
101 #include <sys/dsched.h>
102 #include <sys/queue.h>
103 #include <sys/lock.h>
104 #include <sys/udev.h>
105 #include <sys/uuid.h>
107 #include <sys/buf2.h>
108 #include <sys/msgport2.h>
110 static MALLOC_DEFINE(M_DISK
, "disk", "disk data");
111 static int disk_debug_enable
= 0;
113 static void disk_msg_autofree_reply(lwkt_port_t
, lwkt_msg_t
);
114 static void disk_msg_core(void *);
115 static int disk_probe_slice(struct disk
*dp
, cdev_t dev
, int slice
, int reprobe
);
116 static void disk_probe(struct disk
*dp
, int reprobe
);
117 static void _setdiskinfo(struct disk
*disk
, struct disk_info
*info
);
118 static void bioqwritereorder(struct bio_queue_head
*bioq
);
119 static void disk_cleanserial(char *serno
);
120 static int disk_debug(int, char *, ...) __printflike(2, 3);
121 static cdev_t
_disk_create_named(const char *name
, int unit
, struct disk
*dp
,
122 struct dev_ops
*raw_ops
, int clone
);
124 static d_open_t diskopen
;
125 static d_close_t diskclose
;
126 static d_ioctl_t diskioctl
;
127 static d_strategy_t diskstrategy
;
128 static d_psize_t diskpsize
;
129 static d_dump_t diskdump
;
131 static LIST_HEAD(, disk
) disklist
= LIST_HEAD_INITIALIZER(&disklist
);
132 static struct lwkt_token disklist_token
;
133 static struct lwkt_token ds_token
;
135 static struct dev_ops disk1_ops
= {
136 { "disk", 0, D_DISK
| D_MPSAFE
| D_TRACKCLOSE
| D_KVABIO
},
138 .d_close
= diskclose
,
140 .d_write
= physwrite
,
141 .d_ioctl
= diskioctl
,
142 .d_strategy
= diskstrategy
,
144 .d_psize
= diskpsize
,
147 static struct dev_ops disk2_ops
= {
148 { "disk", 0, D_DISK
| D_MPSAFE
| D_TRACKCLOSE
| D_KVABIO
|
151 .d_close
= diskclose
,
153 .d_write
= physwrite
,
154 .d_ioctl
= diskioctl
,
155 .d_strategy
= diskstrategy
,
157 .d_psize
= diskpsize
,
160 static struct objcache
*disk_msg_cache
;
162 struct objcache_malloc_args disk_msg_malloc_args
= {
163 sizeof(struct disk_msg
), M_DISK
};
165 static struct lwkt_port disk_dispose_port
;
166 static struct lwkt_port disk_msg_port
;
169 disk_debug(int level
, char *fmt
, ...)
174 if (level
<= disk_debug_enable
)
182 disk_probe_slice(struct disk
*dp
, cdev_t dev
, int slice
, int reprobe
)
184 struct disk_info
*info
= &dp
->d_info
;
185 struct diskslice
*sp
= &dp
->d_slice
->dss_slices
[slice
];
187 struct dev_ops
*dops
;
188 struct partinfo part
;
195 disk_debug(2, "disk_probe_slice (begin): %s (%s)\n",
196 dev
->si_name
, dp
->d_cdev
->si_name
);
198 sno
= slice
? slice
- 1 : 0;
199 dops
= (dp
->d_rawdev
->si_ops
->head
.flags
& D_NOEMERGPGR
) ?
200 &disk2_ops
: &disk1_ops
;
202 ops
= &disklabel32_ops
;
203 msg
= ops
->op_readdisklabel(dev
, sp
, &sp
->ds_label
, info
);
204 if (msg
&& !strcmp(msg
, "no disk label")) {
205 ops
= &disklabel64_ops
;
206 msg
= ops
->op_readdisklabel(dev
, sp
, &sp
->ds_label
, info
);
210 char packname
[DISKLABEL_MAXPACKNAME
];
212 if (slice
!= WHOLE_DISK_SLICE
)
213 ops
->op_adjust_label_reserved(dp
->d_slice
, slice
, sp
);
217 ops
->op_getpackname(sp
->ds_label
, packname
, sizeof(packname
));
219 destroy_dev_alias(dev
, "by-label/*");
221 make_dev_alias(dev
, "by-label/%s", packname
);
224 for (i
= 0; i
< ops
->op_getnumparts(sp
->ds_label
); i
++) {
225 ops
->op_loadpartinfo(sp
->ds_label
, i
, &part
);
229 (ndev
= devfs_find_device_by_name("%s%c",
230 dev
->si_name
, 'a' + i
))
233 * Device already exists and
236 ndev
->si_flags
|= SI_REPROBE_TEST
;
239 * Destroy old UUID alias
241 destroy_dev_alias(ndev
,
243 destroy_dev_alias(ndev
,
246 /* Create UUID alias */
247 if (!kuuid_is_nil(&part
.storage_uuid
)) {
248 snprintf_uuid(uuid_buf
,
254 udev_dict_set_cstr(ndev
, "uuid", uuid_buf
);
258 "part-by-label/%s.%c",
262 ndev
= make_dev_covering(dops
,
263 dp
->d_rawdev
->si_ops
,
264 dkmakeminor(dkunit(dp
->d_cdev
),
266 UID_ROOT
, GID_OPERATOR
, 0640,
267 "%s%c", dev
->si_name
, 'a'+ i
);
268 ndev
->si_parent
= dev
;
269 ndev
->si_iosize_max
= dev
->si_iosize_max
;
271 udev_dict_set_cstr(ndev
, "subsystem", "disk");
272 /* Inherit parent's disk type */
273 if (dp
->d_disktype
) {
274 udev_dict_set_cstr(ndev
, "disk-type",
275 __DECONST(char *, dp
->d_disktype
));
278 /* Create serno alias */
279 if (dp
->d_info
.d_serialno
) {
282 dp
->d_info
.d_serialno
,
286 /* Create UUID alias */
287 if (!kuuid_is_nil(&part
.storage_uuid
)) {
288 snprintf_uuid(uuid_buf
,
294 udev_dict_set_cstr(ndev
, "uuid", uuid_buf
);
298 "part-by-label/%s.%c",
301 ndev
->si_flags
|= SI_REPROBE_TEST
;
305 } else if (info
->d_dsflags
& DSO_COMPATLABEL
) {
307 if (sp
->ds_size
>= 0x100000000ULL
)
308 ops
= &disklabel64_ops
;
310 ops
= &disklabel32_ops
;
311 sp
->ds_label
= ops
->op_clone_label(info
, sp
);
313 if (sp
->ds_type
== DOSPTYP_386BSD
|| /* XXX */
314 sp
->ds_type
== DOSPTYP_NETBSD
||
315 sp
->ds_type
== DOSPTYP_OPENBSD
||
316 sp
->ds_type
== DOSPTYP_DFLYBSD
) {
317 log(LOG_WARNING
, "%s: cannot find label (%s)\n",
321 if (sp
->ds_label
.opaque
!= NULL
&& sp
->ds_ops
!= NULL
) {
322 /* Clear out old label - it's not around anymore */
324 "disk_probe_slice: clear out old diskabel on %s\n",
327 sp
->ds_ops
->op_freedisklabel(&sp
->ds_label
);
333 sp
->ds_wlabel
= FALSE
;
336 return (msg
? EINVAL
: 0);
340 * This routine is only called for newly minted drives or to reprobe
341 * a drive with no open slices. disk_probe_slice() is called directly
342 * when reprobing partition changes within slices.
345 disk_probe(struct disk
*dp
, int reprobe
)
347 struct disk_info
*info
= &dp
->d_info
;
348 cdev_t dev
= dp
->d_cdev
;
351 struct diskslices
*osp
;
352 struct diskslice
*sp
;
353 struct dev_ops
*dops
;
357 * d_media_blksize can be 0 for non-disk storage devices such
360 if (info
->d_media_blksize
== 0)
364 dp
->d_slice
= dsmakeslicestruct(BASE_SLICE
, info
);
365 disk_debug(1, "disk_probe (begin): %s\n", dp
->d_cdev
->si_name
);
367 error
= mbrinit(dev
, info
, &(dp
->d_slice
));
373 dops
= (dp
->d_rawdev
->si_ops
->head
.flags
& D_NOEMERGPGR
) ?
374 &disk2_ops
: &disk1_ops
;
376 for (i
= 0; i
< dp
->d_slice
->dss_nslices
; i
++) {
378 * Ignore the whole-disk slice, it has already been created.
380 if (i
== WHOLE_DISK_SLICE
)
385 * Ignore the compatibility slice s0 if it's a device mapper
388 if ((i
== COMPATIBILITY_SLICE
) &&
389 (info
->d_dsflags
& DSO_DEVICEMAPPER
))
393 sp
= &dp
->d_slice
->dss_slices
[i
];
396 * Handle s0. s0 is a compatibility slice if there are no
397 * other slices and it has not otherwise been set up, else
400 if (i
== COMPATIBILITY_SLICE
) {
402 if (sp
->ds_type
== 0 &&
403 dp
->d_slice
->dss_nslices
== BASE_SLICE
) {
404 sp
->ds_size
= info
->d_media_blocks
;
413 * Ignore 0-length slices
415 if (sp
->ds_size
== 0)
419 (ndev
= devfs_find_device_by_name("%ss%d",
420 dev
->si_name
, sno
))) {
422 * Device already exists and is still valid
424 ndev
->si_flags
|= SI_REPROBE_TEST
;
427 * Destroy old UUID alias
429 destroy_dev_alias(ndev
, "slice-by-uuid/*");
431 /* Create UUID alias */
432 if (!kuuid_is_nil(&sp
->ds_stor_uuid
)) {
433 snprintf_uuid(uuid_buf
, sizeof(uuid_buf
),
435 make_dev_alias(ndev
, "slice-by-uuid/%s",
440 * Else create new device
442 ndev
= make_dev_covering(dops
, dp
->d_rawdev
->si_ops
,
443 dkmakewholeslice(dkunit(dev
), i
),
444 UID_ROOT
, GID_OPERATOR
, 0640,
445 (info
->d_dsflags
& DSO_DEVICEMAPPER
)?
446 "%s.s%d" : "%ss%d", dev
->si_name
, sno
);
447 ndev
->si_parent
= dev
;
448 ndev
->si_iosize_max
= dev
->si_iosize_max
;
449 udev_dict_set_cstr(ndev
, "subsystem", "disk");
450 /* Inherit parent's disk type */
451 if (dp
->d_disktype
) {
452 udev_dict_set_cstr(ndev
, "disk-type",
453 __DECONST(char *, dp
->d_disktype
));
456 /* Create serno alias */
457 if (dp
->d_info
.d_serialno
) {
458 make_dev_alias(ndev
, "serno/%s.s%d",
459 dp
->d_info
.d_serialno
, sno
);
462 /* Create UUID alias */
463 if (!kuuid_is_nil(&sp
->ds_stor_uuid
)) {
464 snprintf_uuid(uuid_buf
, sizeof(uuid_buf
),
466 make_dev_alias(ndev
, "slice-by-uuid/%s",
471 ndev
->si_flags
|= SI_REPROBE_TEST
;
476 * Probe appropriate slices for a disklabel
478 * XXX slice type 1 used by our gpt probe code.
479 * XXX slice type 0 used by mbr compat slice.
481 if (sp
->ds_type
== DOSPTYP_386BSD
||
482 sp
->ds_type
== DOSPTYP_NETBSD
||
483 sp
->ds_type
== DOSPTYP_OPENBSD
||
484 sp
->ds_type
== DOSPTYP_DFLYBSD
||
487 if (dp
->d_slice
->dss_first_bsd_slice
== 0)
488 dp
->d_slice
->dss_first_bsd_slice
= i
;
489 disk_probe_slice(dp
, ndev
, i
, reprobe
);
493 disk_debug(1, "disk_probe (end): %s\n", dp
->d_cdev
->si_name
);
498 disk_msg_core(void *arg
)
501 struct diskslice
*sp
;
505 lwkt_gettoken(&disklist_token
);
506 lwkt_initport_thread(&disk_msg_port
, curthread
);
507 wakeup(curthread
); /* synchronous startup */
508 lwkt_reltoken(&disklist_token
);
510 lwkt_gettoken(&ds_token
);
514 msg
= (disk_msg_t
)lwkt_waitport(&disk_msg_port
, 0);
516 switch (msg
->hdr
.u
.ms_result
) {
517 case DISK_DISK_PROBE
:
518 dp
= (struct disk
*)msg
->load
;
520 "DISK_DISK_PROBE: %s\n",
521 dp
->d_cdev
->si_name
);
522 disk_iocom_update(dp
);
525 case DISK_DISK_DESTROY
:
526 dp
= (struct disk
*)msg
->load
;
528 "DISK_DISK_DESTROY: %s\n",
529 dp
->d_cdev
->si_name
);
530 disk_iocom_uninit(dp
);
533 * Interlock against struct disk enumerations.
534 * Wait for enumerations to complete then remove
535 * the dp from the list before tearing it down.
536 * This avoids numerous races.
538 lwkt_gettoken(&disklist_token
);
540 tsleep(&dp
->d_refs
, 0, "diskdel", hz
/ 10);
541 LIST_REMOVE(dp
, d_list
);
543 dsched_disk_destroy(dp
);
544 devfs_destroy_related(dp
->d_cdev
);
545 destroy_dev(dp
->d_cdev
);
546 destroy_only_dev(dp
->d_rawdev
);
548 lwkt_reltoken(&disklist_token
);
550 if (dp
->d_info
.d_serialno
) {
551 kfree(dp
->d_info
.d_serialno
, M_TEMP
);
552 dp
->d_info
.d_serialno
= NULL
;
556 dp
= (struct disk
*)msg
->load
;
558 "DISK_DISK_UNPROBE: %s\n",
559 dp
->d_cdev
->si_name
);
560 devfs_destroy_related(dp
->d_cdev
);
562 case DISK_SLICE_REPROBE
:
563 dp
= (struct disk
*)msg
->load
;
564 sp
= (struct diskslice
*)msg
->load2
;
565 devfs_clr_related_flag(sp
->ds_dev
,
568 "DISK_SLICE_REPROBE: %s\n",
569 sp
->ds_dev
->si_name
);
570 disk_probe_slice(dp
, sp
->ds_dev
,
571 dkslice(sp
->ds_dev
), 1);
572 devfs_destroy_related_without_flag(
573 sp
->ds_dev
, SI_REPROBE_TEST
);
575 case DISK_DISK_REPROBE
:
576 dp
= (struct disk
*)msg
->load
;
577 devfs_clr_related_flag(dp
->d_cdev
, SI_REPROBE_TEST
);
579 "DISK_DISK_REPROBE: %s\n",
580 dp
->d_cdev
->si_name
);
582 devfs_destroy_related_without_flag(
583 dp
->d_cdev
, SI_REPROBE_TEST
);
586 disk_debug(1, "DISK_SYNC\n");
589 devfs_debug(DEVFS_DEBUG_WARNING
,
590 "disk_msg_core: unknown message "
591 "received at core\n");
594 lwkt_replymsg(&msg
->hdr
, 0);
596 lwkt_reltoken(&ds_token
);
602 * Acts as a message drain. Any message that is replied to here gets
603 * destroyed and the memory freed.
606 disk_msg_autofree_reply(lwkt_port_t port
, lwkt_msg_t msg
)
608 objcache_put(disk_msg_cache
, msg
);
613 disk_msg_send(uint32_t cmd
, void *load
, void *load2
)
616 lwkt_port_t port
= &disk_msg_port
;
618 disk_msg
= objcache_get(disk_msg_cache
, M_WAITOK
);
620 lwkt_initmsg(&disk_msg
->hdr
, &disk_dispose_port
, 0);
622 disk_msg
->hdr
.u
.ms_result
= cmd
;
623 disk_msg
->load
= load
;
624 disk_msg
->load2
= load2
;
626 lwkt_sendmsg(port
, &disk_msg
->hdr
);
630 disk_msg_send_sync(uint32_t cmd
, void *load
, void *load2
)
632 struct lwkt_port rep_port
;
636 disk_msg
= objcache_get(disk_msg_cache
, M_WAITOK
);
637 port
= &disk_msg_port
;
639 /* XXX could probably use curthread's built-in msgport */
640 lwkt_initport_thread(&rep_port
, curthread
);
641 lwkt_initmsg(&disk_msg
->hdr
, &rep_port
, 0);
643 disk_msg
->hdr
.u
.ms_result
= cmd
;
644 disk_msg
->load
= load
;
645 disk_msg
->load2
= load2
;
647 lwkt_domsg(port
, &disk_msg
->hdr
, 0);
648 objcache_put(disk_msg_cache
, disk_msg
);
652 * Create a raw device for the dev_ops template (which is returned). Also
653 * create a slice and unit managed disk and overload the user visible
654 * device space with it.
656 * NOTE: The returned raw device is NOT a slice and unit managed device.
657 * It is an actual raw device representing the raw disk as specified by
658 * the passed dev_ops. The disk layer not only returns such a raw device,
659 * it also uses it internally when passing (modified) commands through.
662 disk_create(int unit
, struct disk
*dp
, struct dev_ops
*raw_ops
)
664 return _disk_create_named(NULL
, unit
, dp
, raw_ops
, 0);
668 disk_create_clone(int unit
, struct disk
*dp
,
669 struct dev_ops
*raw_ops
)
671 return _disk_create_named(NULL
, unit
, dp
, raw_ops
, 1);
675 disk_create_named(const char *name
, int unit
, struct disk
*dp
,
676 struct dev_ops
*raw_ops
)
678 return _disk_create_named(name
, unit
, dp
, raw_ops
, 0);
682 disk_create_named_clone(const char *name
, int unit
, struct disk
*dp
,
683 struct dev_ops
*raw_ops
)
685 return _disk_create_named(name
, unit
, dp
, raw_ops
, 1);
689 _disk_create_named(const char *name
, int unit
, struct disk
*dp
,
690 struct dev_ops
*raw_ops
, int clone
)
693 struct dev_ops
*dops
;
695 disk_debug(1, "disk_create (begin): %s%d\n", name
, unit
);
698 rawdev
= make_only_dev(raw_ops
, dkmakewholedisk(unit
),
699 UID_ROOT
, GID_OPERATOR
, 0640, "%s", name
);
701 rawdev
= make_only_dev(raw_ops
, dkmakewholedisk(unit
),
702 UID_ROOT
, GID_OPERATOR
, 0640,
703 "%s%d", raw_ops
->head
.name
, unit
);
706 bzero(dp
, sizeof(*dp
));
708 dops
= (raw_ops
->head
.flags
& D_NOEMERGPGR
) ? &disk2_ops
: &disk1_ops
;
710 dp
->d_rawdev
= rawdev
;
711 dp
->d_raw_ops
= raw_ops
;
712 dp
->d_dev_ops
= dops
;
716 dp
->d_cdev
= make_only_dev_covering(
717 dops
, dp
->d_rawdev
->si_ops
,
718 dkmakewholedisk(unit
),
719 UID_ROOT
, GID_OPERATOR
, 0640,
722 dp
->d_cdev
= make_dev_covering(
723 dops
, dp
->d_rawdev
->si_ops
,
724 dkmakewholedisk(unit
),
725 UID_ROOT
, GID_OPERATOR
, 0640,
730 dp
->d_cdev
= make_only_dev_covering(
731 dops
, dp
->d_rawdev
->si_ops
,
732 dkmakewholedisk(unit
),
733 UID_ROOT
, GID_OPERATOR
, 0640,
734 "%s%d", raw_ops
->head
.name
, unit
);
736 dp
->d_cdev
= make_dev_covering(
737 dops
, dp
->d_rawdev
->si_ops
,
738 dkmakewholedisk(unit
),
739 UID_ROOT
, GID_OPERATOR
, 0640,
740 "%s%d", raw_ops
->head
.name
, unit
);
744 udev_dict_set_cstr(dp
->d_cdev
, "subsystem", "disk");
745 dp
->d_cdev
->si_disk
= dp
;
748 dsched_disk_create(dp
, name
, unit
);
750 dsched_disk_create(dp
, raw_ops
->head
.name
, unit
);
752 lwkt_gettoken(&disklist_token
);
753 LIST_INSERT_HEAD(&disklist
, dp
, d_list
);
754 lwkt_reltoken(&disklist_token
);
758 disk_debug(1, "disk_create (end): %s%d\n",
759 (name
!= NULL
)?(name
):(raw_ops
->head
.name
), unit
);
761 return (dp
->d_rawdev
);
765 disk_setdisktype(struct disk
*disk
, const char *type
)
769 KKASSERT(disk
!= NULL
);
771 disk
->d_disktype
= type
;
772 error
= udev_dict_set_cstr(disk
->d_cdev
, "disk-type",
773 __DECONST(char *, type
));
778 disk_getopencount(struct disk
*disk
)
780 return disk
->d_opencount
;
784 _setdiskinfo(struct disk
*disk
, struct disk_info
*info
)
788 oldserialno
= disk
->d_info
.d_serialno
;
789 bcopy(info
, &disk
->d_info
, sizeof(disk
->d_info
));
790 info
= &disk
->d_info
;
792 disk_debug(1, "_setdiskinfo: %s\n", disk
->d_cdev
->si_name
);
795 * The serial number is duplicated so the caller can throw
798 if (info
->d_serialno
&& info
->d_serialno
[0] &&
799 (info
->d_serialno
[0] != ' ' || strlen(info
->d_serialno
) > 1)) {
800 info
->d_serialno
= kstrdup(info
->d_serialno
, M_TEMP
);
801 disk_cleanserial(info
->d_serialno
);
803 make_dev_alias(disk
->d_cdev
, "serno/%s",
807 info
->d_serialno
= NULL
;
810 kfree(oldserialno
, M_TEMP
);
812 dsched_disk_update(disk
, info
);
815 * The caller may set d_media_size or d_media_blocks and we
816 * calculate the other.
818 KKASSERT(info
->d_media_size
== 0 || info
->d_media_blocks
== 0);
819 if (info
->d_media_size
== 0 && info
->d_media_blocks
) {
820 info
->d_media_size
= (u_int64_t
)info
->d_media_blocks
*
821 info
->d_media_blksize
;
822 } else if (info
->d_media_size
&& info
->d_media_blocks
== 0 &&
823 info
->d_media_blksize
) {
824 info
->d_media_blocks
= info
->d_media_size
/
825 info
->d_media_blksize
;
829 * The si_* fields for rawdev are not set until after the
830 * disk_create() call, so someone using the cooked version
831 * of the raw device (i.e. da0s0) will not get the right
832 * si_iosize_max unless we fix it up here.
834 if (disk
->d_cdev
&& disk
->d_rawdev
&&
835 disk
->d_cdev
->si_iosize_max
== 0) {
836 disk
->d_cdev
->si_iosize_max
= disk
->d_rawdev
->si_iosize_max
;
837 disk
->d_cdev
->si_bsize_phys
= disk
->d_rawdev
->si_bsize_phys
;
838 disk
->d_cdev
->si_bsize_best
= disk
->d_rawdev
->si_bsize_best
;
841 /* Add the serial number to the udev_dictionary */
842 if (info
->d_serialno
)
843 udev_dict_set_cstr(disk
->d_cdev
, "serno", info
->d_serialno
);
847 * Disk drivers must call this routine when media parameters are available
851 disk_setdiskinfo(struct disk
*disk
, struct disk_info
*info
)
853 _setdiskinfo(disk
, info
);
854 disk_msg_send(DISK_DISK_PROBE
, disk
, NULL
);
855 disk_debug(1, "disk_setdiskinfo: sent probe for %s\n",
856 disk
->d_cdev
->si_name
);
860 disk_setdiskinfo_sync(struct disk
*disk
, struct disk_info
*info
)
862 _setdiskinfo(disk
, info
);
863 disk_msg_send_sync(DISK_DISK_PROBE
, disk
, NULL
);
864 disk_debug(1, "disk_setdiskinfo_sync: sent probe for %s\n",
865 disk
->d_cdev
->si_name
);
869 * This routine is called when an adapter detaches. The higher level
870 * managed disk device is destroyed while the lower level raw device is
874 disk_destroy(struct disk
*disk
)
876 disk_msg_send_sync(DISK_DISK_DESTROY
, disk
, NULL
);
881 disk_dumpcheck(cdev_t dev
, u_int64_t
*size
,
882 u_int64_t
*blkno
, u_int32_t
*secsize
)
884 struct partinfo pinfo
;
888 *size
= 0; /* avoid gcc warnings */
890 *secsize
= 512; /* avoid gcc warnings */
891 bzero(&pinfo
, sizeof(pinfo
));
893 error
= dev_dioctl(dev
, DIOCGPART
, (void *)&pinfo
, 0,
894 proc0
.p_ucred
, NULL
, NULL
);
898 if (pinfo
.media_blksize
== 0)
901 if (blkno
) /* XXX: make sure this reserved stuff is right */
902 *blkno
= pinfo
.reserved_blocks
+
903 pinfo
.media_offset
/ pinfo
.media_blksize
;
905 *secsize
= pinfo
.media_blksize
;
907 *size
= (pinfo
.media_blocks
- pinfo
.reserved_blocks
);
913 disk_dumpconf(cdev_t dev
, u_int onoff
)
915 struct dumperinfo di
;
916 u_int64_t size
, blkno
;
921 return set_dumper(NULL
);
923 error
= disk_dumpcheck(dev
, &size
, &blkno
, &secsize
);
928 bzero(&di
, sizeof(struct dumperinfo
));
929 di
.dumper
= diskdump
;
931 di
.blocksize
= secsize
;
932 di
.maxiosize
= dev
->si_iosize_max
;
933 di
.mediaoffset
= blkno
* DEV_BSIZE
;
934 di
.mediasize
= size
* DEV_BSIZE
;
936 return set_dumper(&di
);
940 disk_unprobe(struct disk
*disk
)
945 disk_msg_send_sync(DISK_UNPROBE
, disk
, NULL
);
949 disk_invalidate (struct disk
*disk
)
951 dsgone(&disk
->d_slice
);
955 * Enumerate disks, pass a marker and an initial NULL dp to initialize,
956 * then loop with the previously returned dp.
958 * The returned dp will be referenced, preventing its destruction. When
959 * you pass the returned dp back into the loop the ref is dropped.
961 * WARNING: If terminating your loop early you must call
962 * disk_enumerate_stop().
965 disk_enumerate(struct disk
*marker
, struct disk
*dp
)
967 lwkt_gettoken(&disklist_token
);
970 dp
= LIST_NEXT(marker
, d_list
);
971 LIST_REMOVE(marker
, d_list
);
973 bzero(marker
, sizeof(*marker
));
974 marker
->d_flags
= DISKFLAG_MARKER
;
975 dp
= LIST_FIRST(&disklist
);
978 if ((dp
->d_flags
& DISKFLAG_MARKER
) == 0)
980 dp
= LIST_NEXT(dp
, d_list
);
984 LIST_INSERT_AFTER(dp
, marker
, d_list
);
986 lwkt_reltoken(&disklist_token
);
991 * Terminate an enumeration early. Do not call this function if the
992 * enumeration ended normally. dp can be NULL, indicating that you
993 * wish to retain the ref count on dp.
995 * This function removes the marker.
998 disk_enumerate_stop(struct disk
*marker
, struct disk
*dp
)
1000 lwkt_gettoken(&disklist_token
);
1001 LIST_REMOVE(marker
, d_list
);
1004 lwkt_reltoken(&disklist_token
);
1009 sysctl_disks(SYSCTL_HANDLER_ARGS
)
1019 while ((dp
= disk_enumerate(&marker
, dp
))) {
1021 error
= SYSCTL_OUT(req
, " ", 1);
1023 disk_enumerate_stop(&marker
, dp
);
1029 error
= SYSCTL_OUT(req
, dp
->d_rawdev
->si_name
,
1030 strlen(dp
->d_rawdev
->si_name
));
1032 disk_enumerate_stop(&marker
, dp
);
1037 error
= SYSCTL_OUT(req
, "", 1);
1041 SYSCTL_PROC(_kern
, OID_AUTO
, disks
, CTLTYPE_STRING
| CTLFLAG_RD
, NULL
, 0,
1042 sysctl_disks
, "A", "names of available disks");
1045 * Open a disk device or partition.
1049 diskopen(struct dev_open_args
*ap
)
1051 cdev_t dev
= ap
->a_head
.a_dev
;
1056 * dp can't be NULL here XXX.
1058 * d_slice will be NULL if setdiskinfo() has not been called yet.
1059 * setdiskinfo() is typically called whether the disk is present
1060 * or not (e.g. CD), but the base disk device is created first
1061 * and there may be a race.
1064 if (dp
== NULL
|| dp
->d_slice
== NULL
)
1069 * Deal with open races
1071 lwkt_gettoken(&ds_token
);
1072 while (dp
->d_flags
& DISKFLAG_LOCK
) {
1073 dp
->d_flags
|= DISKFLAG_WANTED
;
1074 error
= tsleep(dp
, PCATCH
, "diskopen", hz
);
1076 lwkt_reltoken(&ds_token
);
1080 dp
->d_flags
|= DISKFLAG_LOCK
;
1083 * Open the underlying raw device.
1085 if (!dsisopen(dp
->d_slice
)) {
1087 if (!pdev
->si_iosize_max
)
1088 pdev
->si_iosize_max
= dev
->si_iosize_max
;
1090 error
= dev_dopen(dp
->d_rawdev
, ap
->a_oflags
,
1091 ap
->a_devtype
, ap
->a_cred
, NULL
, NULL
);
1096 error
= dsopen(dev
, ap
->a_devtype
, dp
->d_info
.d_dsflags
,
1097 &dp
->d_slice
, &dp
->d_info
);
1098 if (!dsisopen(dp
->d_slice
)) {
1099 dev_dclose(dp
->d_rawdev
, ap
->a_oflags
, ap
->a_devtype
, NULL
);
1102 dp
->d_flags
&= ~DISKFLAG_LOCK
;
1103 if (dp
->d_flags
& DISKFLAG_WANTED
) {
1104 dp
->d_flags
&= ~DISKFLAG_WANTED
;
1107 lwkt_reltoken(&ds_token
);
1109 KKASSERT(dp
->d_opencount
>= 0);
1110 /* If the open was successful, bump open count */
1112 atomic_add_int(&dp
->d_opencount
, 1);
1118 * Close a disk device or partition
1122 diskclose(struct dev_close_args
*ap
)
1124 cdev_t dev
= ap
->a_head
.a_dev
;
1133 * The cdev_t represents the disk/slice/part. The shared
1134 * dp structure governs all cdevs associated with the disk.
1136 * As a safety only close the underlying raw device on the last
1137 * close the disk device if our tracking of the slices/partitions
1138 * also indicates nothing is open.
1140 KKASSERT(dp
->d_opencount
>= 1);
1141 lcount
= atomic_fetchadd_int(&dp
->d_opencount
, -1);
1143 lwkt_gettoken(&ds_token
);
1144 dsclose(dev
, ap
->a_devtype
, dp
->d_slice
);
1145 if (lcount
<= 1 && !dsisopen(dp
->d_slice
)) {
1146 error
= dev_dclose(dp
->d_rawdev
, ap
->a_fflag
, ap
->a_devtype
, NULL
);
1148 lwkt_reltoken(&ds_token
);
1154 * First execute the ioctl on the disk device, and if it isn't supported
1155 * try running it on the backing device.
1159 diskioctl(struct dev_ioctl_args
*ap
)
1161 cdev_t dev
= ap
->a_head
.a_dev
;
1170 devfs_debug(DEVFS_DEBUG_DEBUG
,
1171 "diskioctl: cmd is: %lx (name: %s)\n",
1172 ap
->a_cmd
, dev
->si_name
);
1173 devfs_debug(DEVFS_DEBUG_DEBUG
,
1174 "diskioctl: &dp->d_slice is: %p, %p\n",
1175 &dp
->d_slice
, dp
->d_slice
);
1177 if (ap
->a_cmd
== DIOCGKERNELDUMP
) {
1178 u
= *(u_int
*)ap
->a_data
;
1179 return disk_dumpconf(dev
, u
);
1182 if (ap
->a_cmd
== DIOCRECLUSTER
&& dev
== dp
->d_cdev
) {
1183 error
= disk_iocom_ioctl(dp
, ap
->a_cmd
, ap
->a_data
);
1187 if (&dp
->d_slice
== NULL
|| dp
->d_slice
== NULL
||
1188 ((dp
->d_info
.d_dsflags
& DSO_DEVICEMAPPER
) &&
1189 dkslice(dev
) == WHOLE_DISK_SLICE
)) {
1192 lwkt_gettoken(&ds_token
);
1193 error
= dsioctl(dev
, ap
->a_cmd
, ap
->a_data
, ap
->a_fflag
,
1194 &dp
->d_slice
, &dp
->d_info
);
1195 lwkt_reltoken(&ds_token
);
1198 if (error
== ENOIOCTL
) {
1199 error
= dev_dioctl(dp
->d_rawdev
, ap
->a_cmd
, ap
->a_data
,
1200 ap
->a_fflag
, ap
->a_cred
, NULL
, NULL
);
1206 * Execute strategy routine
1208 * WARNING! We are using the KVABIO API and must not access memory
1209 * through bp->b_data without first calling bkvasync(bp).
1213 diskstrategy(struct dev_strategy_args
*ap
)
1215 cdev_t dev
= ap
->a_head
.a_dev
;
1216 struct bio
*bio
= ap
->a_bio
;
1223 bio
->bio_buf
->b_error
= ENXIO
;
1224 bio
->bio_buf
->b_flags
|= B_ERROR
;
1228 KKASSERT(dev
->si_disk
== dp
);
1231 * The dscheck() function will also transform the slice relative
1232 * block number i.e. bio->bio_offset into a block number that can be
1233 * passed directly to the underlying raw device. If dscheck()
1234 * returns NULL it will have handled the bio for us (e.g. EOF
1235 * or error due to being beyond the device size).
1237 if ((nbio
= dscheck(dev
, bio
, dp
->d_slice
)) != NULL
) {
1238 dev_dstrategy(dp
->d_rawdev
, nbio
);
1246 * Return the partition size in ?blocks?
1250 diskpsize(struct dev_psize_args
*ap
)
1252 cdev_t dev
= ap
->a_head
.a_dev
;
1259 ap
->a_result
= dssize(dev
, &dp
->d_slice
);
1261 if ((ap
->a_result
== -1) &&
1262 (dp
->d_info
.d_dsflags
& DSO_RAWPSIZE
)) {
1263 ap
->a_head
.a_dev
= dp
->d_rawdev
;
1264 return dev_doperate(&ap
->a_head
);
1270 diskdump(struct dev_dump_args
*ap
)
1272 cdev_t dev
= ap
->a_head
.a_dev
;
1273 struct disk
*dp
= dev
->si_disk
;
1274 u_int64_t size
, offset
;
1277 error
= disk_dumpcheck(dev
, &size
, &ap
->a_blkno
, &ap
->a_secsize
);
1278 /* XXX: this should probably go in disk_dumpcheck somehow */
1279 if (ap
->a_length
!= 0) {
1281 offset
= ap
->a_blkno
* DEV_BSIZE
;
1282 if ((ap
->a_offset
< offset
) ||
1283 (ap
->a_offset
+ ap
->a_length
- offset
> size
)) {
1284 kprintf("Attempt to write outside dump "
1285 "device boundaries.\n");
1291 ap
->a_head
.a_dev
= dp
->d_rawdev
;
1292 error
= dev_doperate(&ap
->a_head
);
1299 SYSCTL_INT(_debug_sizeof
, OID_AUTO
, diskslices
, CTLFLAG_RD
,
1300 0, sizeof(struct diskslices
), "sizeof(struct diskslices)");
1302 SYSCTL_INT(_debug_sizeof
, OID_AUTO
, disk
, CTLFLAG_RD
,
1303 0, sizeof(struct disk
), "sizeof(struct disk)");
1306 * Reorder interval for burst write allowance and minor write
1309 * We always want to trickle some writes in to make use of the
1310 * disk's zone cache. Bursting occurs on a longer interval and only
1311 * runningbufspace is well over the hirunningspace limit.
1313 int bioq_reorder_burst_interval
= 60; /* should be multiple of minor */
1314 SYSCTL_INT(_kern
, OID_AUTO
, bioq_reorder_burst_interval
,
1315 CTLFLAG_RW
, &bioq_reorder_burst_interval
, 0, "");
1316 int bioq_reorder_minor_interval
= 5;
1317 SYSCTL_INT(_kern
, OID_AUTO
, bioq_reorder_minor_interval
,
1318 CTLFLAG_RW
, &bioq_reorder_minor_interval
, 0, "");
1320 int bioq_reorder_burst_bytes
= 3000000;
1321 SYSCTL_INT(_kern
, OID_AUTO
, bioq_reorder_burst_bytes
,
1322 CTLFLAG_RW
, &bioq_reorder_burst_bytes
, 0, "");
1323 int bioq_reorder_minor_bytes
= 262144;
1324 SYSCTL_INT(_kern
, OID_AUTO
, bioq_reorder_minor_bytes
,
1325 CTLFLAG_RW
, &bioq_reorder_minor_bytes
, 0, "");
1329 * Order I/Os. Generally speaking this code is designed to make better
1330 * use of drive zone caches. A drive zone cache can typically track linear
1331 * reads or writes for around 16 zones simultaniously.
1333 * Read prioritization issues: It is possible for hundreds of megabytes worth
1334 * of writes to be queued asynchronously. This creates a huge bottleneck
1335 * for reads which reduce read bandwidth to a trickle.
1337 * To solve this problem we generally reorder reads before writes.
1339 * However, a large number of random reads can also starve writes and
1340 * make poor use of the drive zone cache so we allow writes to trickle
1344 bioqdisksort(struct bio_queue_head
*bioq
, struct bio
*bio
)
1348 * The BIO wants to be ordered. Adding to the tail also
1349 * causes transition to be set to NULL, forcing the ordering
1350 * of all prior I/O's.
1352 if (bio
->bio_buf
->b_flags
& B_ORDERED
) {
1353 bioq_insert_tail(bioq
, bio
);
1358 switch(bio
->bio_buf
->b_cmd
) {
1360 if (bioq
->transition
) {
1362 * Insert before the first write. Bleedover writes
1363 * based on reorder intervals to prevent starvation.
1365 TAILQ_INSERT_BEFORE(bioq
->transition
, bio
, bio_act
);
1367 if (bioq
->reorder
% bioq_reorder_minor_interval
== 0) {
1368 bioqwritereorder(bioq
);
1369 if (bioq
->reorder
>=
1370 bioq_reorder_burst_interval
) {
1376 * No writes queued (or ordering was forced),
1379 TAILQ_INSERT_TAIL(&bioq
->queue
, bio
, bio_act
);
1384 * Writes are always appended. If no writes were previously
1385 * queued or an ordered tail insertion occured the transition
1386 * field will be NULL.
1388 TAILQ_INSERT_TAIL(&bioq
->queue
, bio
, bio_act
);
1389 if (bioq
->transition
== NULL
)
1390 bioq
->transition
= bio
;
1394 * All other request types are forced to be ordered.
1396 bioq_insert_tail(bioq
, bio
);
1402 * Move the read-write transition point to prevent reads from
1403 * completely starving our writes. This brings a number of writes into
1404 * the fold every N reads.
1406 * We bring a few linear writes into the fold on a minor interval
1407 * and we bring a non-linear burst of writes into the fold on a major
1408 * interval. Bursting only occurs if runningbufspace is really high
1409 * (typically from syncs, fsyncs, or HAMMER flushes).
1413 bioqwritereorder(struct bio_queue_head
*bioq
)
1421 if (bioq
->reorder
< bioq_reorder_burst_interval
||
1422 !buf_runningbufspace_severe()) {
1423 left
= (size_t)bioq_reorder_minor_bytes
;
1426 left
= (size_t)bioq_reorder_burst_bytes
;
1430 next_offset
= bioq
->transition
->bio_offset
;
1431 while ((bio
= bioq
->transition
) != NULL
&&
1432 (check_off
== 0 || next_offset
== bio
->bio_offset
)
1434 n
= bio
->bio_buf
->b_bcount
;
1435 next_offset
= bio
->bio_offset
+ n
;
1436 bioq
->transition
= TAILQ_NEXT(bio
, bio_act
);
1444 * Bounds checking against the media size, used for the raw partition.
1445 * secsize, mediasize and b_blkno must all be the same units.
1446 * Possibly this has to be DEV_BSIZE (512).
1449 bounds_check_with_mediasize(struct bio
*bio
, int secsize
, uint64_t mediasize
)
1451 struct buf
*bp
= bio
->bio_buf
;
1454 sz
= howmany(bp
->b_bcount
, secsize
);
1456 if (bio
->bio_offset
/DEV_BSIZE
+ sz
> mediasize
) {
1457 sz
= mediasize
- bio
->bio_offset
/DEV_BSIZE
;
1459 /* If exactly at end of disk, return EOF. */
1460 bp
->b_resid
= bp
->b_bcount
;
1464 /* If past end of disk, return EINVAL. */
1465 bp
->b_error
= EINVAL
;
1468 /* Otherwise, truncate request. */
1469 bp
->b_bcount
= sz
* secsize
;
1476 * Disk error is the preface to plaintive error messages
1477 * about failing disk transfers. It prints messages of the form
1479 hp0g: hard error reading fsbn 12345 of 12344-12347 (hp0 bn %d cn %d tn %d sn %d)
1481 * if the offset of the error in the transfer and a disk label
1482 * are both available. blkdone should be -1 if the position of the error
1483 * is unknown; the disklabel pointer may be null from drivers that have not
1484 * been converted to use them. The message is printed with kprintf
1485 * if pri is LOG_PRINTF, otherwise it uses log at the specified priority.
1486 * The message should be completed (with at least a newline) with kprintf
1487 * or log(-1, ...), respectively. There is no trailing space.
1490 diskerr(struct bio
*bio
, cdev_t dev
, const char *what
, int pri
, int donecnt
)
1492 struct buf
*bp
= bio
->bio_buf
;
1506 kprintf("%s: %s %sing ", dev
->si_name
, what
, term
);
1507 kprintf("offset %012llx for %d",
1508 (long long)bio
->bio_offset
,
1512 kprintf(" (%d bytes completed)", donecnt
);
1516 * Locate a disk device
1519 disk_locate(const char *devname
)
1521 return devfs_find_device_by_name("%s", devname
);
1525 disk_config(void *arg
)
1527 disk_msg_send_sync(DISK_SYNC
, NULL
, NULL
);
1533 struct thread
* td_core
;
1535 disk_msg_cache
= objcache_create("disk-msg-cache", 0, 0,
1537 objcache_malloc_alloc
,
1538 objcache_malloc_free
,
1539 &disk_msg_malloc_args
);
1541 lwkt_token_init(&disklist_token
, "disks");
1542 lwkt_token_init(&ds_token
, "ds");
1545 * Initialize the reply-only port which acts as a message drain
1547 lwkt_initport_replyonly(&disk_dispose_port
, disk_msg_autofree_reply
);
1549 lwkt_gettoken(&disklist_token
);
1550 lwkt_create(disk_msg_core
, /*args*/NULL
, &td_core
, NULL
,
1551 0, -1, "disk_msg_core");
1552 tsleep(td_core
, 0, "diskcore", 0);
1553 lwkt_reltoken(&disklist_token
);
1559 objcache_destroy(disk_msg_cache
);
1563 * Clean out illegal characters in serial numbers.
1566 disk_cleanserial(char *serno
)
1570 while ((c
= *serno
) != 0) {
1571 if (c
>= 'a' && c
<= 'z')
1573 else if (c
>= 'A' && c
<= 'Z')
1575 else if (c
>= '0' && c
<= '9')
1577 else if (c
== '-' || c
== '@' || c
== '+' || c
== '.')
1585 TUNABLE_INT("kern.disk_debug", &disk_debug_enable
);
1586 SYSCTL_INT(_kern
, OID_AUTO
, disk_debug
, CTLFLAG_RW
, &disk_debug_enable
,
1587 0, "Enable subr_disk debugging");
1589 SYSINIT(disk_register
, SI_SUB_PRE_DRIVERS
, SI_ORDER_FIRST
, disk_init
, NULL
);
1590 SYSUNINIT(disk_register
, SI_SUB_PRE_DRIVERS
, SI_ORDER_ANY
, disk_uninit
, NULL
);