Home | History | Annotate | Line # | Download | only in dev
ld.c revision 1.44.2.3
      1  1.44.2.3      yamt /*	$NetBSD: ld.c,v 1.44.2.3 2007/05/07 10:55:23 yamt Exp $	*/
      2       1.1        ad 
      3       1.1        ad /*-
      4       1.1        ad  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
      5       1.1        ad  * All rights reserved.
      6       1.1        ad  *
      7       1.1        ad  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1        ad  * by Andrew Doran and Charles M. Hannum.
      9       1.1        ad  *
     10       1.1        ad  * Redistribution and use in source and binary forms, with or without
     11       1.1        ad  * modification, are permitted provided that the following conditions
     12       1.1        ad  * are met:
     13       1.1        ad  * 1. Redistributions of source code must retain the above copyright
     14       1.1        ad  *    notice, this list of conditions and the following disclaimer.
     15       1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     17       1.1        ad  *    documentation and/or other materials provided with the distribution.
     18       1.1        ad  * 3. All advertising materials mentioning features or use of this software
     19       1.1        ad  *    must display the following acknowledgement:
     20       1.1        ad  *        This product includes software developed by the NetBSD
     21       1.1        ad  *        Foundation, Inc. and its contributors.
     22       1.1        ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1        ad  *    contributors may be used to endorse or promote products derived
     24       1.1        ad  *    from this software without specific prior written permission.
     25       1.1        ad  *
     26       1.1        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1        ad  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1        ad  */
     38       1.1        ad 
     39       1.1        ad /*
     40       1.1        ad  * Disk driver for use by RAID controllers.
     41       1.1        ad  */
     42      1.12     lukem 
     43      1.12     lukem #include <sys/cdefs.h>
     44  1.44.2.3      yamt __KERNEL_RCSID(0, "$NetBSD: ld.c,v 1.44.2.3 2007/05/07 10:55:23 yamt Exp $");
     45       1.1        ad 
     46       1.1        ad #include "rnd.h"
     47       1.1        ad 
     48       1.1        ad #include <sys/param.h>
     49       1.1        ad #include <sys/systm.h>
     50       1.1        ad #include <sys/kernel.h>
     51       1.1        ad #include <sys/device.h>
     52       1.1        ad #include <sys/queue.h>
     53       1.1        ad #include <sys/proc.h>
     54       1.1        ad #include <sys/buf.h>
     55      1.33      yamt #include <sys/bufq.h>
     56       1.1        ad #include <sys/endian.h>
     57       1.1        ad #include <sys/disklabel.h>
     58       1.1        ad #include <sys/disk.h>
     59       1.1        ad #include <sys/dkio.h>
     60       1.1        ad #include <sys/stat.h>
     61       1.1        ad #include <sys/lock.h>
     62       1.1        ad #include <sys/conf.h>
     63       1.1        ad #include <sys/fcntl.h>
     64       1.2        ad #include <sys/vnode.h>
     65       1.1        ad #include <sys/syslog.h>
     66      1.44        ad #include <sys/mutex.h>
     67       1.1        ad #if NRND > 0
     68       1.1        ad #include <sys/rnd.h>
     69       1.1        ad #endif
     70       1.1        ad 
     71       1.1        ad #include <dev/ldvar.h>
     72       1.1        ad 
     73      1.43       riz #include <prop/proplib.h>
     74      1.43       riz 
     75       1.1        ad static void	ldgetdefaultlabel(struct ld_softc *, struct disklabel *);
     76       1.1        ad static void	ldgetdisklabel(struct ld_softc *);
     77       1.1        ad static void	ldminphys(struct buf *bp);
     78       1.1        ad static void	ldshutdown(void *);
     79      1.44        ad static void	ldstart(struct ld_softc *, struct buf *);
     80      1.43       riz static void	ld_set_properties(struct ld_softc *);
     81  1.44.2.1      yamt static void	ld_config_interrupts (struct device *);
     82       1.1        ad 
     83       1.1        ad extern struct	cfdriver ld_cd;
     84       1.1        ad 
     85      1.29   thorpej static dev_type_open(ldopen);
     86      1.29   thorpej static dev_type_close(ldclose);
     87      1.29   thorpej static dev_type_read(ldread);
     88      1.29   thorpej static dev_type_write(ldwrite);
     89      1.29   thorpej static dev_type_ioctl(ldioctl);
     90      1.29   thorpej static dev_type_strategy(ldstrategy);
     91      1.29   thorpej static dev_type_dump(lddump);
     92      1.29   thorpej static dev_type_size(ldsize);
     93      1.16   gehenna 
     94      1.16   gehenna const struct bdevsw ld_bdevsw = {
     95      1.16   gehenna 	ldopen, ldclose, ldstrategy, ldioctl, lddump, ldsize, D_DISK
     96      1.16   gehenna };
     97      1.16   gehenna 
     98      1.16   gehenna const struct cdevsw ld_cdevsw = {
     99      1.16   gehenna 	ldopen, ldclose, ldread, ldwrite, ldioctl,
    100      1.17  jdolecek 	nostop, notty, nopoll, nommap, nokqfilter, D_DISK
    101      1.16   gehenna };
    102      1.16   gehenna 
    103      1.30   thorpej static struct	dkdriver lddkdriver = { ldstrategy, ldminphys };
    104       1.1        ad static void	*ld_sdh;
    105       1.1        ad 
    106       1.1        ad void
    107       1.1        ad ldattach(struct ld_softc *sc)
    108       1.1        ad {
    109      1.37  christos 	char tbuf[9];
    110       1.1        ad 
    111      1.44        ad 	mutex_init(&sc->sc_mutex, MUTEX_DRIVER, IPL_BIO);
    112      1.44        ad 
    113       1.7        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0) {
    114      1.34    briggs 		aprint_normal("%s: disabled\n", sc->sc_dv.dv_xname);
    115       1.7        ad 		return;
    116       1.7        ad 	}
    117       1.7        ad 
    118       1.1        ad 	/* Initialise and attach the disk structure. */
    119       1.1        ad 	sc->sc_dk.dk_driver = &lddkdriver;
    120       1.1        ad 	sc->sc_dk.dk_name = sc->sc_dv.dv_xname;
    121       1.1        ad 	disk_attach(&sc->sc_dk);
    122       1.1        ad 
    123       1.1        ad 	if (sc->sc_maxxfer > MAXPHYS)
    124       1.1        ad 		sc->sc_maxxfer = MAXPHYS;
    125       1.9        ad 
    126      1.19   thorpej 	/* Build synthetic geometry if necessary. */
    127      1.19   thorpej 	if (sc->sc_nheads == 0 || sc->sc_nsectors == 0 ||
    128      1.19   thorpej 	    sc->sc_ncylinders == 0) {
    129      1.28       dbj 		uint64_t ncyl;
    130      1.28       dbj 
    131      1.19   thorpej 		if (sc->sc_secperunit <= 528 * 2048)		/* 528MB */
    132      1.19   thorpej 			sc->sc_nheads = 16;
    133      1.19   thorpej 		else if (sc->sc_secperunit <= 1024 * 2048)	/* 1GB */
    134      1.19   thorpej 			sc->sc_nheads = 32;
    135      1.19   thorpej 		else if (sc->sc_secperunit <= 21504 * 2048)	/* 21GB */
    136      1.19   thorpej 			sc->sc_nheads = 64;
    137      1.19   thorpej 		else if (sc->sc_secperunit <= 43008 * 2048)	/* 42GB */
    138      1.19   thorpej 			sc->sc_nheads = 128;
    139      1.19   thorpej 		else
    140      1.19   thorpej 			sc->sc_nheads = 255;
    141      1.19   thorpej 
    142      1.19   thorpej 		sc->sc_nsectors = 63;
    143      1.28       dbj 		sc->sc_ncylinders = INT_MAX;
    144      1.35     perry 		ncyl = sc->sc_secperunit /
    145      1.19   thorpej 		    (sc->sc_nheads * sc->sc_nsectors);
    146      1.28       dbj 		if (ncyl < INT_MAX)
    147      1.28       dbj 			sc->sc_ncylinders = (int)ncyl;
    148      1.19   thorpej 	}
    149       1.1        ad 
    150      1.37  christos 	format_bytes(tbuf, sizeof(tbuf), sc->sc_secperunit *
    151       1.1        ad 	    sc->sc_secsize);
    152      1.34    briggs 	aprint_normal("%s: %s, %d cyl, %d head, %d sec, %d bytes/sect x %"PRIu64" sectors\n",
    153      1.37  christos 	    sc->sc_dv.dv_xname, tbuf, sc->sc_ncylinders, sc->sc_nheads,
    154       1.1        ad 	    sc->sc_nsectors, sc->sc_secsize, sc->sc_secperunit);
    155       1.1        ad 
    156      1.43       riz 	ld_set_properties(sc);
    157      1.43       riz 
    158       1.1        ad #if NRND > 0
    159       1.1        ad 	/* Attach the device into the rnd source list. */
    160       1.1        ad 	rnd_attach_source(&sc->sc_rnd_source, sc->sc_dv.dv_xname,
    161       1.1        ad 	    RND_TYPE_DISK, 0);
    162       1.1        ad #endif
    163       1.1        ad 
    164       1.1        ad 	/* Set the `shutdownhook'. */
    165       1.1        ad 	if (ld_sdh == NULL)
    166       1.1        ad 		ld_sdh = shutdownhook_establish(ldshutdown, NULL);
    167      1.38      yamt 	bufq_alloc(&sc->sc_bufq, BUFQ_DISK_DEFAULT_STRAT, BUFQ_SORT_RAWBLOCK);
    168      1.30   thorpej 
    169      1.30   thorpej 	/* Discover wedges on this disk. */
    170  1.44.2.1      yamt 	config_interrupts(&sc->sc_dv, ld_config_interrupts);
    171       1.1        ad }
    172       1.1        ad 
    173       1.3        ad int
    174      1.37  christos ldadjqparam(struct ld_softc *sc, int xmax)
    175       1.3        ad {
    176      1.24   thorpej 	int s;
    177       1.7        ad 
    178       1.7        ad 	s = splbio();
    179      1.37  christos 	sc->sc_maxqueuecnt = xmax;
    180       1.7        ad 	splx(s);
    181       1.7        ad 
    182      1.24   thorpej 	return (0);
    183       1.7        ad }
    184       1.7        ad 
    185       1.7        ad int
    186       1.7        ad ldbegindetach(struct ld_softc *sc, int flags)
    187       1.7        ad {
    188      1.24   thorpej 	int s, rv = 0;
    189       1.7        ad 
    190       1.7        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    191       1.7        ad 		return (0);
    192       1.3        ad 
    193       1.3        ad 	if ((flags & DETACH_FORCE) == 0 && sc->sc_dk.dk_openmask != 0)
    194       1.3        ad 		return (EBUSY);
    195       1.3        ad 
    196       1.3        ad 	s = splbio();
    197      1.24   thorpej 	sc->sc_maxqueuecnt = 0;
    198       1.7        ad 	sc->sc_flags |= LDF_DETACH;
    199      1.24   thorpej 	while (sc->sc_queuecnt > 0) {
    200      1.24   thorpej 		sc->sc_flags |= LDF_DRAIN;
    201      1.24   thorpej 		rv = tsleep(&sc->sc_queuecnt, PRIBIO, "lddrn", 0);
    202      1.24   thorpej 		if (rv)
    203      1.24   thorpej 			break;
    204      1.24   thorpej 	}
    205       1.3        ad 	splx(s);
    206       1.7        ad 
    207       1.7        ad 	return (rv);
    208       1.3        ad }
    209       1.3        ad 
    210       1.2        ad void
    211       1.7        ad ldenddetach(struct ld_softc *sc)
    212       1.2        ad {
    213      1.13  drochner 	int s, bmaj, cmaj, i, mn;
    214       1.2        ad 
    215       1.7        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    216       1.7        ad 		return;
    217       1.7        ad 
    218       1.2        ad 	/* Wait for commands queued with the hardware to complete. */
    219       1.2        ad 	if (sc->sc_queuecnt != 0)
    220       1.7        ad 		if (tsleep(&sc->sc_queuecnt, PRIBIO, "lddtch", 30 * hz))
    221       1.7        ad 			printf("%s: not drained\n", sc->sc_dv.dv_xname);
    222       1.2        ad 
    223       1.2        ad 	/* Locate the major numbers. */
    224      1.16   gehenna 	bmaj = bdevsw_lookup_major(&ld_bdevsw);
    225      1.16   gehenna 	cmaj = cdevsw_lookup_major(&ld_cdevsw);
    226       1.2        ad 
    227       1.2        ad 	/* Kill off any queued buffers. */
    228       1.2        ad 	s = splbio();
    229      1.38      yamt 	bufq_drain(sc->sc_bufq);
    230      1.36      yamt 	splx(s);
    231      1.36      yamt 
    232      1.38      yamt 	bufq_free(sc->sc_bufq);
    233       1.2        ad 
    234       1.2        ad 	/* Nuke the vnodes for any open instances. */
    235      1.13  drochner 	for (i = 0; i < MAXPARTITIONS; i++) {
    236      1.40   thorpej 		mn = DISKMINOR(device_unit(&sc->sc_dv), i);
    237      1.13  drochner 		vdevgone(bmaj, mn, mn, VBLK);
    238      1.13  drochner 		vdevgone(cmaj, mn, mn, VCHR);
    239      1.13  drochner 	}
    240      1.13  drochner 
    241      1.30   thorpej 	/* Delete all of our wedges. */
    242      1.30   thorpej 	dkwedge_delall(&sc->sc_dk);
    243      1.30   thorpej 
    244       1.2        ad 	/* Detach from the disk list. */
    245       1.2        ad 	disk_detach(&sc->sc_dk);
    246       1.2        ad 
    247       1.2        ad #if NRND > 0
    248       1.2        ad 	/* Unhook the entropy source. */
    249       1.2        ad 	rnd_detach_source(&sc->sc_rnd_source);
    250       1.2        ad #endif
    251       1.2        ad 
    252      1.24   thorpej 	/*
    253      1.24   thorpej 	 * XXX We can't really flush the cache here, beceause the
    254      1.24   thorpej 	 * XXX device may already be non-existent from the controller's
    255      1.24   thorpej 	 * XXX perspective.
    256      1.24   thorpej 	 */
    257      1.24   thorpej #if 0
    258       1.2        ad 	/* Flush the device's cache. */
    259       1.2        ad 	if (sc->sc_flush != NULL)
    260       1.2        ad 		if ((*sc->sc_flush)(sc) != 0)
    261       1.2        ad 			printf("%s: unable to flush cache\n",
    262       1.2        ad 			    sc->sc_dv.dv_xname);
    263      1.24   thorpej #endif
    264       1.2        ad }
    265       1.2        ad 
    266       1.8     lukem /* ARGSUSED */
    267       1.1        ad static void
    268      1.42  christos ldshutdown(void *cookie)
    269       1.1        ad {
    270       1.1        ad 	struct ld_softc *sc;
    271       1.1        ad 	int i;
    272       1.1        ad 
    273       1.1        ad 	for (i = 0; i < ld_cd.cd_ndevs; i++) {
    274       1.1        ad 		if ((sc = device_lookup(&ld_cd, i)) == NULL)
    275       1.1        ad 			continue;
    276       1.1        ad 		if (sc->sc_flush != NULL && (*sc->sc_flush)(sc) != 0)
    277       1.1        ad 			printf("%s: unable to flush cache\n",
    278       1.1        ad 			    sc->sc_dv.dv_xname);
    279       1.1        ad 	}
    280       1.1        ad }
    281       1.1        ad 
    282       1.8     lukem /* ARGSUSED */
    283      1.29   thorpej static int
    284      1.42  christos ldopen(dev_t dev, int flags, int fmt, struct lwp *l)
    285       1.1        ad {
    286       1.1        ad 	struct ld_softc *sc;
    287      1.30   thorpej 	int error, unit, part;
    288       1.1        ad 
    289       1.1        ad 	unit = DISKUNIT(dev);
    290      1.30   thorpej 	if ((sc = device_lookup(&ld_cd, unit)) == NULL)
    291       1.1        ad 		return (ENXIO);
    292       1.1        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    293       1.1        ad 		return (ENODEV);
    294       1.1        ad 	part = DISKPART(dev);
    295      1.30   thorpej 
    296      1.30   thorpej 	if ((error = lockmgr(&sc->sc_dk.dk_openlock, LK_EXCLUSIVE, NULL)) != 0)
    297      1.30   thorpej 		return (error);
    298       1.1        ad 
    299      1.22   thorpej 	if (sc->sc_dk.dk_openmask == 0) {
    300      1.22   thorpej 		/* Load the partition info if not already loaded. */
    301      1.22   thorpej 		if ((sc->sc_flags & LDF_VLABEL) == 0)
    302      1.22   thorpej 			ldgetdisklabel(sc);
    303      1.22   thorpej 	}
    304       1.1        ad 
    305       1.1        ad 	/* Check that the partition exists. */
    306       1.1        ad 	if (part != RAW_PART && (part >= sc->sc_dk.dk_label->d_npartitions ||
    307       1.1        ad 	    sc->sc_dk.dk_label->d_partitions[part].p_fstype == FS_UNUSED)) {
    308      1.30   thorpej 		error = ENXIO;
    309      1.30   thorpej 		goto bad1;
    310       1.1        ad 	}
    311       1.1        ad 
    312       1.1        ad 	/* Ensure only one open at a time. */
    313       1.1        ad 	switch (fmt) {
    314       1.1        ad 	case S_IFCHR:
    315       1.1        ad 		sc->sc_dk.dk_copenmask |= (1 << part);
    316       1.1        ad 		break;
    317       1.1        ad 	case S_IFBLK:
    318       1.1        ad 		sc->sc_dk.dk_bopenmask |= (1 << part);
    319       1.1        ad 		break;
    320       1.1        ad 	}
    321       1.1        ad 	sc->sc_dk.dk_openmask =
    322       1.1        ad 	    sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask;
    323       1.1        ad 
    324      1.30   thorpej 	(void) lockmgr(&sc->sc_dk.dk_openlock, LK_RELEASE, NULL);
    325       1.1        ad 	return (0);
    326      1.30   thorpej 
    327      1.30   thorpej  bad1:
    328      1.30   thorpej 	(void) lockmgr(&sc->sc_dk.dk_openlock, LK_RELEASE, NULL);
    329      1.30   thorpej 	return (error);
    330       1.1        ad }
    331       1.1        ad 
    332       1.8     lukem /* ARGSUSED */
    333      1.29   thorpej static int
    334      1.42  christos ldclose(dev_t dev, int flags, int fmt, struct lwp *l)
    335       1.1        ad {
    336       1.1        ad 	struct ld_softc *sc;
    337      1.30   thorpej 	int error, part, unit;
    338       1.1        ad 
    339       1.1        ad 	unit = DISKUNIT(dev);
    340       1.1        ad 	part = DISKPART(dev);
    341       1.1        ad 	sc = device_lookup(&ld_cd, unit);
    342      1.30   thorpej 
    343      1.30   thorpej 	if ((error = lockmgr(&sc->sc_dk.dk_openlock, LK_EXCLUSIVE, NULL)) != 0)
    344      1.30   thorpej 		return (error);
    345       1.1        ad 
    346       1.1        ad 	switch (fmt) {
    347       1.1        ad 	case S_IFCHR:
    348       1.1        ad 		sc->sc_dk.dk_copenmask &= ~(1 << part);
    349       1.1        ad 		break;
    350       1.1        ad 	case S_IFBLK:
    351       1.1        ad 		sc->sc_dk.dk_bopenmask &= ~(1 << part);
    352       1.1        ad 		break;
    353       1.1        ad 	}
    354       1.1        ad 	sc->sc_dk.dk_openmask =
    355       1.1        ad 	    sc->sc_dk.dk_copenmask | sc->sc_dk.dk_bopenmask;
    356       1.1        ad 
    357      1.22   thorpej 	if (sc->sc_dk.dk_openmask == 0) {
    358      1.22   thorpej 		if (sc->sc_flush != NULL && (*sc->sc_flush)(sc) != 0)
    359       1.1        ad 			printf("%s: unable to flush cache\n",
    360       1.1        ad 			    sc->sc_dv.dv_xname);
    361      1.22   thorpej 		if ((sc->sc_flags & LDF_KLABEL) == 0)
    362      1.22   thorpej 			sc->sc_flags &= ~LDF_VLABEL;
    363      1.22   thorpej 	}
    364       1.1        ad 
    365      1.30   thorpej 	(void) lockmgr(&sc->sc_dk.dk_openlock, LK_RELEASE, NULL);
    366       1.1        ad 	return (0);
    367       1.1        ad }
    368       1.1        ad 
    369       1.8     lukem /* ARGSUSED */
    370      1.29   thorpej static int
    371      1.42  christos ldread(dev_t dev, struct uio *uio, int ioflag)
    372       1.1        ad {
    373       1.1        ad 
    374       1.1        ad 	return (physio(ldstrategy, NULL, dev, B_READ, ldminphys, uio));
    375       1.1        ad }
    376       1.1        ad 
    377       1.8     lukem /* ARGSUSED */
    378      1.29   thorpej static int
    379      1.42  christos ldwrite(dev_t dev, struct uio *uio, int ioflag)
    380       1.1        ad {
    381       1.1        ad 
    382       1.1        ad 	return (physio(ldstrategy, NULL, dev, B_WRITE, ldminphys, uio));
    383       1.1        ad }
    384       1.1        ad 
    385       1.8     lukem /* ARGSUSED */
    386      1.29   thorpej static int
    387  1.44.2.2     rmind ldioctl(dev_t dev, u_long cmd, void *addr, int32_t flag, struct lwp *l)
    388       1.1        ad {
    389       1.1        ad 	struct ld_softc *sc;
    390       1.1        ad 	int part, unit, error;
    391       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    392       1.6    itojun 	struct disklabel newlabel;
    393       1.4      fvdl #endif
    394       1.6    itojun 	struct disklabel *lp;
    395       1.1        ad 
    396       1.1        ad 	unit = DISKUNIT(dev);
    397       1.1        ad 	part = DISKPART(dev);
    398       1.1        ad 	sc = device_lookup(&ld_cd, unit);
    399       1.1        ad 
    400      1.43       riz 	error = disk_ioctl(&sc->sc_dk, cmd, addr, flag, l);
    401      1.43       riz 	if (error != EPASSTHROUGH)
    402      1.43       riz 		return (error);
    403      1.43       riz 
    404  1.44.2.3      yamt 	error = 0;
    405       1.1        ad 	switch (cmd) {
    406       1.1        ad 	case DIOCGDINFO:
    407       1.1        ad 		memcpy(addr, sc->sc_dk.dk_label, sizeof(struct disklabel));
    408       1.1        ad 		return (0);
    409       1.1        ad 
    410       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    411       1.4      fvdl 	case ODIOCGDINFO:
    412       1.4      fvdl 		newlabel = *(sc->sc_dk.dk_label);
    413       1.4      fvdl 		if (newlabel.d_npartitions > OLDMAXPARTITIONS)
    414       1.5      fvdl 			return ENOTTY;
    415       1.4      fvdl 		memcpy(addr, &newlabel, sizeof(struct olddisklabel));
    416       1.4      fvdl 		return (0);
    417       1.4      fvdl #endif
    418       1.4      fvdl 
    419       1.1        ad 	case DIOCGPART:
    420       1.1        ad 		((struct partinfo *)addr)->disklab = sc->sc_dk.dk_label;
    421       1.1        ad 		((struct partinfo *)addr)->part =
    422       1.1        ad 		    &sc->sc_dk.dk_label->d_partitions[part];
    423       1.1        ad 		break;
    424       1.1        ad 
    425       1.1        ad 	case DIOCWDINFO:
    426       1.1        ad 	case DIOCSDINFO:
    427       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    428       1.4      fvdl 	case ODIOCWDINFO:
    429       1.4      fvdl 	case ODIOCSDINFO:
    430       1.4      fvdl 
    431       1.4      fvdl 		if (cmd == ODIOCSDINFO || cmd == ODIOCWDINFO) {
    432       1.4      fvdl 			memset(&newlabel, 0, sizeof newlabel);
    433       1.4      fvdl 			memcpy(&newlabel, addr, sizeof (struct olddisklabel));
    434       1.4      fvdl 			lp = &newlabel;
    435       1.4      fvdl 		} else
    436       1.4      fvdl #endif
    437       1.4      fvdl 		lp = (struct disklabel *)addr;
    438       1.4      fvdl 
    439       1.1        ad 		if ((flag & FWRITE) == 0)
    440       1.1        ad 			return (EBADF);
    441       1.1        ad 
    442      1.30   thorpej 		if ((error = lockmgr(&sc->sc_dk.dk_openlock, LK_EXCLUSIVE,
    443      1.31  jdolecek 				     NULL)) != 0)
    444       1.1        ad 			return (error);
    445       1.1        ad 		sc->sc_flags |= LDF_LABELLING;
    446       1.1        ad 
    447       1.1        ad 		error = setdisklabel(sc->sc_dk.dk_label,
    448       1.4      fvdl 		    lp, /*sc->sc_dk.dk_openmask : */0,
    449       1.1        ad 		    sc->sc_dk.dk_cpulabel);
    450       1.4      fvdl 		if (error == 0 && (cmd == DIOCWDINFO
    451       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    452       1.4      fvdl 		    || cmd == ODIOCWDINFO
    453       1.4      fvdl #endif
    454       1.4      fvdl 		    ))
    455       1.1        ad 			error = writedisklabel(
    456      1.35     perry 			    MAKEDISKDEV(major(dev), DISKUNIT(dev), RAW_PART),
    457      1.35     perry 			    ldstrategy, sc->sc_dk.dk_label,
    458       1.1        ad 			    sc->sc_dk.dk_cpulabel);
    459       1.1        ad 
    460       1.1        ad 		sc->sc_flags &= ~LDF_LABELLING;
    461      1.30   thorpej 		(void) lockmgr(&sc->sc_dk.dk_openlock, LK_RELEASE, NULL);
    462       1.1        ad 		break;
    463       1.1        ad 
    464      1.22   thorpej 	case DIOCKLABEL:
    465      1.22   thorpej 		if ((flag & FWRITE) == 0)
    466      1.22   thorpej 			return (EBADF);
    467      1.22   thorpej 		if (*(int *)addr)
    468      1.22   thorpej 			sc->sc_flags |= LDF_KLABEL;
    469      1.22   thorpej 		else
    470      1.22   thorpej 			sc->sc_flags &= ~LDF_KLABEL;
    471      1.22   thorpej 		break;
    472      1.22   thorpej 
    473       1.1        ad 	case DIOCWLABEL:
    474       1.1        ad 		if ((flag & FWRITE) == 0)
    475       1.1        ad 			return (EBADF);
    476       1.1        ad 		if (*(int *)addr)
    477       1.1        ad 			sc->sc_flags |= LDF_WLABEL;
    478       1.1        ad 		else
    479       1.1        ad 			sc->sc_flags &= ~LDF_WLABEL;
    480       1.1        ad 		break;
    481       1.1        ad 
    482       1.1        ad 	case DIOCGDEFLABEL:
    483       1.1        ad 		ldgetdefaultlabel(sc, (struct disklabel *)addr);
    484       1.1        ad 		break;
    485       1.4      fvdl 
    486       1.4      fvdl #ifdef __HAVE_OLD_DISKLABEL
    487       1.4      fvdl 	case ODIOCGDEFLABEL:
    488       1.4      fvdl 		ldgetdefaultlabel(sc, &newlabel);
    489       1.4      fvdl 		if (newlabel.d_npartitions > OLDMAXPARTITIONS)
    490       1.5      fvdl 			return ENOTTY;
    491       1.4      fvdl 		memcpy(addr, &newlabel, sizeof (struct olddisklabel));
    492       1.4      fvdl 		break;
    493       1.4      fvdl #endif
    494       1.1        ad 
    495      1.32   thorpej 	case DIOCCACHESYNC:
    496      1.32   thorpej 		/*
    497      1.32   thorpej 		 * XXX Do we really need to care about having a writable
    498      1.32   thorpej 		 * file descriptor here?
    499      1.32   thorpej 		 */
    500      1.32   thorpej 		if ((flag & FWRITE) == 0)
    501      1.32   thorpej 			error = EBADF;
    502      1.32   thorpej 		else if (sc->sc_flush)
    503      1.32   thorpej 			error = (*sc->sc_flush)(sc);
    504      1.32   thorpej 		else
    505      1.32   thorpej 			error = 0;	/* XXX Error out instead? */
    506      1.32   thorpej 		break;
    507      1.32   thorpej 
    508      1.30   thorpej 	case DIOCAWEDGE:
    509      1.30   thorpej 	    {
    510      1.30   thorpej 	    	struct dkwedge_info *dkw = (void *) addr;
    511      1.30   thorpej 
    512      1.30   thorpej 		if ((flag & FWRITE) == 0)
    513      1.30   thorpej 			return (EBADF);
    514      1.30   thorpej 
    515      1.30   thorpej 		/* If the ioctl happens here, the parent is us. */
    516      1.30   thorpej 		strcpy(dkw->dkw_parent, sc->sc_dv.dv_xname);
    517      1.30   thorpej 		return (dkwedge_add(dkw));
    518      1.30   thorpej 	    }
    519      1.35     perry 
    520      1.30   thorpej 	case DIOCDWEDGE:
    521      1.30   thorpej 	    {
    522      1.30   thorpej 	    	struct dkwedge_info *dkw = (void *) addr;
    523      1.30   thorpej 
    524      1.30   thorpej 		if ((flag & FWRITE) == 0)
    525      1.30   thorpej 			return (EBADF);
    526      1.30   thorpej 
    527      1.30   thorpej 		/* If the ioctl happens here, the parent is us. */
    528      1.30   thorpej 		strcpy(dkw->dkw_parent, sc->sc_dv.dv_xname);
    529      1.30   thorpej 		return (dkwedge_del(dkw));
    530      1.30   thorpej 	    }
    531      1.35     perry 
    532      1.30   thorpej 	case DIOCLWEDGES:
    533      1.30   thorpej 	    {
    534      1.30   thorpej 	    	struct dkwedge_list *dkwl = (void *) addr;
    535      1.30   thorpej 
    536      1.39  christos 		return (dkwedge_list(&sc->sc_dk, dkwl, l));
    537      1.30   thorpej 	    }
    538      1.30   thorpej 
    539       1.1        ad 	default:
    540       1.1        ad 		error = ENOTTY;
    541       1.1        ad 		break;
    542       1.1        ad 	}
    543       1.1        ad 
    544       1.1        ad 	return (error);
    545       1.1        ad }
    546       1.1        ad 
    547      1.29   thorpej static void
    548       1.1        ad ldstrategy(struct buf *bp)
    549       1.1        ad {
    550       1.1        ad 	struct ld_softc *sc;
    551      1.23   thorpej 	struct disklabel *lp;
    552      1.23   thorpej 	daddr_t blkno;
    553      1.23   thorpej 	int s, part;
    554       1.1        ad 
    555       1.1        ad 	sc = device_lookup(&ld_cd, DISKUNIT(bp->b_dev));
    556      1.23   thorpej 	part = DISKPART(bp->b_dev);
    557       1.1        ad 
    558       1.7        ad 	if ((sc->sc_flags & LDF_DETACH) != 0) {
    559       1.2        ad 		bp->b_error = EIO;
    560      1.23   thorpej 		goto bad;
    561       1.2        ad 	}
    562       1.2        ad 
    563       1.1        ad 	lp = sc->sc_dk.dk_label;
    564       1.1        ad 
    565       1.1        ad 	/*
    566       1.1        ad 	 * The transfer must be a whole number of blocks and the offset must
    567       1.1        ad 	 * not be negative.
    568       1.1        ad 	 */
    569       1.1        ad 	if ((bp->b_bcount % lp->d_secsize) != 0 || bp->b_blkno < 0) {
    570      1.23   thorpej 		bp->b_error = EINVAL;
    571      1.23   thorpej 		goto bad;
    572       1.1        ad 	}
    573       1.1        ad 
    574      1.23   thorpej 	/* If it's a null transfer, return immediately. */
    575      1.23   thorpej 	if (bp->b_bcount == 0)
    576      1.23   thorpej 		goto done;
    577       1.1        ad 
    578       1.1        ad 	/*
    579       1.1        ad 	 * Do bounds checking and adjust the transfer.  If error, process.
    580       1.1        ad 	 * If past the end of partition, just return.
    581       1.1        ad 	 */
    582       1.1        ad 	if (part != RAW_PART &&
    583      1.20   thorpej 	    bounds_check_with_label(&sc->sc_dk, bp,
    584       1.1        ad 	    (sc->sc_flags & (LDF_WLABEL | LDF_LABELLING)) != 0) <= 0) {
    585      1.23   thorpej 		goto done;
    586       1.1        ad 	}
    587       1.1        ad 
    588       1.1        ad 	/*
    589      1.23   thorpej 	 * Convert the block number to absolute and put it in terms
    590      1.23   thorpej 	 * of the device's logical block size.
    591       1.1        ad 	 */
    592      1.23   thorpej 	if (lp->d_secsize == DEV_BSIZE)
    593      1.23   thorpej 		blkno = bp->b_blkno;
    594      1.23   thorpej 	else if (lp->d_secsize > DEV_BSIZE)
    595      1.23   thorpej 		blkno = bp->b_blkno / (lp->d_secsize / DEV_BSIZE);
    596       1.1        ad 	else
    597      1.23   thorpej 		blkno = bp->b_blkno * (DEV_BSIZE / lp->d_secsize);
    598       1.1        ad 
    599      1.11   thorpej 	if (part != RAW_PART)
    600      1.23   thorpej 		blkno += lp->d_partitions[part].p_offset;
    601      1.23   thorpej 
    602      1.23   thorpej 	bp->b_rawblkno = blkno;
    603       1.1        ad 
    604       1.1        ad 	s = splbio();
    605      1.44        ad 	ldstart(sc, bp);
    606       1.1        ad 	splx(s);
    607      1.23   thorpej 	return;
    608      1.23   thorpej 
    609      1.23   thorpej  bad:
    610      1.23   thorpej 	bp->b_flags |= B_ERROR;
    611      1.23   thorpej  done:
    612      1.23   thorpej 	bp->b_resid = bp->b_bcount;
    613      1.23   thorpej 	biodone(bp);
    614      1.23   thorpej }
    615      1.23   thorpej 
    616      1.23   thorpej static void
    617      1.44        ad ldstart(struct ld_softc *sc, struct buf *bp)
    618      1.23   thorpej {
    619      1.23   thorpej 	int error;
    620       1.1        ad 
    621      1.44        ad 	mutex_enter(&sc->sc_mutex);
    622      1.44        ad 
    623      1.44        ad 	if (bp != NULL)
    624      1.44        ad 		BUFQ_PUT(sc->sc_bufq, bp);
    625      1.44        ad 
    626      1.23   thorpej 	while (sc->sc_queuecnt < sc->sc_maxqueuecnt) {
    627      1.23   thorpej 		/* See if there is work to do. */
    628      1.38      yamt 		if ((bp = BUFQ_PEEK(sc->sc_bufq)) == NULL)
    629      1.23   thorpej 			break;
    630      1.23   thorpej 
    631      1.23   thorpej 		disk_busy(&sc->sc_dk);
    632      1.23   thorpej 		sc->sc_queuecnt++;
    633      1.23   thorpej 
    634      1.23   thorpej 		if (__predict_true((error = (*sc->sc_start)(sc, bp)) == 0)) {
    635      1.23   thorpej 			/*
    636      1.23   thorpej 			 * The back-end is running the job; remove it from
    637      1.23   thorpej 			 * the queue.
    638      1.23   thorpej 			 */
    639      1.38      yamt 			(void) BUFQ_GET(sc->sc_bufq);
    640      1.23   thorpej 		} else  {
    641      1.23   thorpej 			disk_unbusy(&sc->sc_dk, 0, (bp->b_flags & B_READ));
    642      1.23   thorpej 			sc->sc_queuecnt--;
    643      1.23   thorpej 			if (error == EAGAIN) {
    644      1.23   thorpej 				/*
    645      1.23   thorpej 				 * Temporary resource shortage in the
    646      1.23   thorpej 				 * back-end; just defer the job until
    647      1.23   thorpej 				 * later.
    648      1.23   thorpej 				 *
    649      1.23   thorpej 				 * XXX We might consider a watchdog timer
    650      1.23   thorpej 				 * XXX to make sure we are kicked into action.
    651      1.23   thorpej 				 */
    652      1.23   thorpej 				break;
    653      1.23   thorpej 			} else {
    654      1.38      yamt 				(void) BUFQ_GET(sc->sc_bufq);
    655      1.23   thorpej 				bp->b_error = error;
    656      1.23   thorpej 				bp->b_flags |= B_ERROR;
    657      1.23   thorpej 				bp->b_resid = bp->b_bcount;
    658      1.44        ad 				mutex_exit(&sc->sc_mutex);
    659      1.23   thorpej 				biodone(bp);
    660      1.44        ad 				mutex_enter(&sc->sc_mutex);
    661      1.23   thorpej 			}
    662      1.23   thorpej 		}
    663       1.1        ad 	}
    664      1.44        ad 
    665      1.44        ad 	mutex_exit(&sc->sc_mutex);
    666       1.1        ad }
    667       1.1        ad 
    668       1.1        ad void
    669       1.1        ad lddone(struct ld_softc *sc, struct buf *bp)
    670       1.1        ad {
    671       1.1        ad 
    672       1.1        ad 	if ((bp->b_flags & B_ERROR) != 0) {
    673       1.1        ad 		diskerr(bp, "ld", "error", LOG_PRINTF, 0, sc->sc_dk.dk_label);
    674       1.1        ad 		printf("\n");
    675       1.1        ad 	}
    676       1.1        ad 
    677      1.18       mrg 	disk_unbusy(&sc->sc_dk, bp->b_bcount - bp->b_resid,
    678      1.18       mrg 	    (bp->b_flags & B_READ));
    679       1.1        ad #if NRND > 0
    680       1.1        ad 	rnd_add_uint32(&sc->sc_rnd_source, bp->b_rawblkno);
    681       1.1        ad #endif
    682       1.1        ad 	biodone(bp);
    683       1.1        ad 
    684      1.44        ad 	mutex_enter(&sc->sc_mutex);
    685       1.7        ad 	if (--sc->sc_queuecnt <= sc->sc_maxqueuecnt) {
    686      1.24   thorpej 		if ((sc->sc_flags & LDF_DRAIN) != 0) {
    687      1.24   thorpej 			sc->sc_flags &= ~LDF_DRAIN;
    688       1.7        ad 			wakeup(&sc->sc_queuecnt);
    689      1.24   thorpej 		}
    690      1.44        ad 		mutex_exit(&sc->sc_mutex);
    691      1.44        ad 		ldstart(sc, NULL);
    692      1.44        ad 	} else
    693      1.44        ad 		mutex_exit(&sc->sc_mutex);
    694       1.1        ad }
    695       1.1        ad 
    696      1.29   thorpej static int
    697       1.1        ad ldsize(dev_t dev)
    698       1.1        ad {
    699       1.1        ad 	struct ld_softc *sc;
    700       1.1        ad 	int part, unit, omask, size;
    701       1.1        ad 
    702       1.1        ad 	unit = DISKUNIT(dev);
    703       1.1        ad 	if ((sc = device_lookup(&ld_cd, unit)) == NULL)
    704       1.1        ad 		return (ENODEV);
    705       1.1        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    706       1.1        ad 		return (ENODEV);
    707       1.1        ad 	part = DISKPART(dev);
    708       1.1        ad 
    709       1.1        ad 	omask = sc->sc_dk.dk_openmask & (1 << part);
    710       1.1        ad 
    711       1.1        ad 	if (omask == 0 && ldopen(dev, 0, S_IFBLK, NULL) != 0)
    712       1.1        ad 		return (-1);
    713       1.1        ad 	else if (sc->sc_dk.dk_label->d_partitions[part].p_fstype != FS_SWAP)
    714       1.1        ad 		size = -1;
    715       1.1        ad 	else
    716       1.1        ad 		size = sc->sc_dk.dk_label->d_partitions[part].p_size *
    717       1.1        ad 		    (sc->sc_dk.dk_label->d_secsize / DEV_BSIZE);
    718       1.1        ad 	if (omask == 0 && ldclose(dev, 0, S_IFBLK, NULL) != 0)
    719       1.1        ad 		return (-1);
    720       1.1        ad 
    721       1.1        ad 	return (size);
    722       1.1        ad }
    723       1.1        ad 
    724       1.1        ad /*
    725       1.1        ad  * Load the label information from the specified device.
    726       1.1        ad  */
    727       1.1        ad static void
    728       1.1        ad ldgetdisklabel(struct ld_softc *sc)
    729       1.1        ad {
    730       1.1        ad 	const char *errstring;
    731       1.1        ad 
    732       1.1        ad 	ldgetdefaultlabel(sc, sc->sc_dk.dk_label);
    733       1.1        ad 
    734       1.1        ad 	/* Call the generic disklabel extraction routine. */
    735      1.40   thorpej 	errstring = readdisklabel(MAKEDISKDEV(0, device_unit(&sc->sc_dv),
    736      1.40   thorpej 	    RAW_PART), ldstrategy, sc->sc_dk.dk_label, sc->sc_dk.dk_cpulabel);
    737       1.1        ad 	if (errstring != NULL)
    738       1.1        ad 		printf("%s: %s\n", sc->sc_dv.dv_xname, errstring);
    739      1.22   thorpej 
    740      1.22   thorpej 	/* In-core label now valid. */
    741      1.22   thorpej 	sc->sc_flags |= LDF_VLABEL;
    742       1.1        ad }
    743       1.1        ad 
    744       1.1        ad /*
    745       1.1        ad  * Construct a ficticious label.
    746       1.1        ad  */
    747       1.1        ad static void
    748       1.1        ad ldgetdefaultlabel(struct ld_softc *sc, struct disklabel *lp)
    749       1.1        ad {
    750       1.1        ad 
    751       1.1        ad 	memset(lp, 0, sizeof(struct disklabel));
    752       1.1        ad 
    753       1.1        ad 	lp->d_secsize = sc->sc_secsize;
    754       1.1        ad 	lp->d_ntracks = sc->sc_nheads;
    755       1.1        ad 	lp->d_nsectors = sc->sc_nsectors;
    756       1.1        ad 	lp->d_ncylinders = sc->sc_ncylinders;
    757       1.1        ad 	lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;
    758       1.1        ad 	lp->d_type = DTYPE_LD;
    759      1.21    itojun 	strlcpy(lp->d_typename, "unknown", sizeof(lp->d_typename));
    760      1.21    itojun 	strlcpy(lp->d_packname, "fictitious", sizeof(lp->d_packname));
    761       1.1        ad 	lp->d_secperunit = sc->sc_secperunit;
    762       1.1        ad 	lp->d_rpm = 7200;
    763       1.1        ad 	lp->d_interleave = 1;
    764       1.1        ad 	lp->d_flags = 0;
    765       1.1        ad 
    766       1.1        ad 	lp->d_partitions[RAW_PART].p_offset = 0;
    767       1.1        ad 	lp->d_partitions[RAW_PART].p_size =
    768       1.1        ad 	    lp->d_secperunit * (lp->d_secsize / DEV_BSIZE);
    769       1.1        ad 	lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
    770       1.1        ad 	lp->d_npartitions = RAW_PART + 1;
    771       1.1        ad 
    772       1.1        ad 	lp->d_magic = DISKMAGIC;
    773       1.1        ad 	lp->d_magic2 = DISKMAGIC;
    774       1.1        ad 	lp->d_checksum = dkcksum(lp);
    775       1.1        ad }
    776       1.1        ad 
    777       1.1        ad /*
    778       1.1        ad  * Take a dump.
    779       1.1        ad  */
    780      1.29   thorpej static int
    781  1.44.2.2     rmind lddump(dev_t dev, daddr_t blkno, void *vav, size_t size)
    782       1.1        ad {
    783  1.44.2.2     rmind 	char *va = vav;
    784       1.1        ad 	struct ld_softc *sc;
    785       1.1        ad 	struct disklabel *lp;
    786       1.1        ad 	int unit, part, nsects, sectoff, towrt, nblk, maxblkcnt, rv;
    787       1.1        ad 	static int dumping;
    788       1.1        ad 
    789       1.1        ad 	unit = DISKUNIT(dev);
    790       1.1        ad 	if ((sc = device_lookup(&ld_cd, unit)) == NULL)
    791       1.1        ad 		return (ENXIO);
    792       1.1        ad 	if ((sc->sc_flags & LDF_ENABLED) == 0)
    793       1.1        ad 		return (ENODEV);
    794       1.3        ad 	if (sc->sc_dump == NULL)
    795       1.3        ad 		return (ENXIO);
    796       1.3        ad 
    797       1.3        ad 	/* Check if recursive dump; if so, punt. */
    798       1.3        ad 	if (dumping)
    799       1.3        ad 		return (EFAULT);
    800       1.3        ad 	dumping = 1;
    801       1.1        ad 
    802       1.1        ad 	/* Convert to disk sectors.  Request must be a multiple of size. */
    803       1.3        ad 	part = DISKPART(dev);
    804       1.1        ad 	lp = sc->sc_dk.dk_label;
    805       1.1        ad 	if ((size % lp->d_secsize) != 0)
    806       1.1        ad 		return (EFAULT);
    807       1.1        ad 	towrt = size / lp->d_secsize;
    808       1.1        ad 	blkno = dbtob(blkno) / lp->d_secsize;	/* blkno in DEV_BSIZE units */
    809       1.1        ad 
    810       1.1        ad 	nsects = lp->d_partitions[part].p_size;
    811       1.1        ad 	sectoff = lp->d_partitions[part].p_offset;
    812       1.1        ad 
    813       1.1        ad 	/* Check transfer bounds against partition size. */
    814       1.1        ad 	if ((blkno < 0) || ((blkno + towrt) > nsects))
    815       1.1        ad 		return (EINVAL);
    816       1.1        ad 
    817       1.1        ad 	/* Offset block number to start of partition. */
    818       1.1        ad 	blkno += sectoff;
    819       1.1        ad 
    820       1.1        ad 	/* Start dumping and return when done. */
    821       1.3        ad 	maxblkcnt = sc->sc_maxxfer / sc->sc_secsize - 1;
    822       1.1        ad 	while (towrt > 0) {
    823       1.3        ad 		nblk = min(maxblkcnt, towrt);
    824       1.1        ad 
    825       1.1        ad 		if ((rv = (*sc->sc_dump)(sc, va, blkno, nblk)) != 0)
    826       1.1        ad 			return (rv);
    827       1.1        ad 
    828       1.1        ad 		towrt -= nblk;
    829       1.1        ad 		blkno += nblk;
    830       1.1        ad 		va += nblk * sc->sc_secsize;
    831       1.1        ad 	}
    832       1.1        ad 
    833       1.1        ad 	dumping = 0;
    834       1.1        ad 	return (0);
    835       1.1        ad }
    836       1.1        ad 
    837       1.1        ad /*
    838       1.1        ad  * Adjust the size of a transfer.
    839       1.1        ad  */
    840       1.1        ad static void
    841       1.1        ad ldminphys(struct buf *bp)
    842       1.1        ad {
    843       1.1        ad 	struct ld_softc *sc;
    844       1.1        ad 
    845       1.1        ad 	sc = device_lookup(&ld_cd, DISKUNIT(bp->b_dev));
    846       1.1        ad 
    847       1.1        ad 	if (bp->b_bcount > sc->sc_maxxfer)
    848       1.1        ad 		bp->b_bcount = sc->sc_maxxfer;
    849       1.1        ad 	minphys(bp);
    850       1.1        ad }
    851      1.43       riz 
    852      1.43       riz static void
    853      1.43       riz ld_set_properties(struct ld_softc *ld)
    854      1.43       riz {
    855      1.43       riz 	prop_dictionary_t disk_info, odisk_info, geom;
    856      1.43       riz 
    857      1.43       riz 	disk_info = prop_dictionary_create();
    858      1.43       riz 
    859      1.43       riz 	geom = prop_dictionary_create();
    860      1.43       riz 
    861      1.43       riz 	prop_dictionary_set_uint64(geom, "sectors-per-unit",
    862      1.43       riz 	    ld->sc_secperunit);
    863      1.43       riz 
    864      1.43       riz 	prop_dictionary_set_uint32(geom, "sector-size",
    865      1.43       riz 	    ld->sc_secsize);
    866      1.43       riz 
    867      1.43       riz 	prop_dictionary_set_uint16(geom, "sectors-per-track",
    868      1.43       riz 	    ld->sc_nsectors);
    869      1.43       riz 
    870      1.43       riz 	prop_dictionary_set_uint16(geom, "tracks-per-cylinder",
    871      1.43       riz 	    ld->sc_nheads);
    872      1.43       riz 
    873      1.43       riz 	prop_dictionary_set_uint64(geom, "cylinders-per-unit",
    874      1.43       riz 	    ld->sc_ncylinders);
    875      1.43       riz 
    876      1.43       riz 	prop_dictionary_set(disk_info, "geometry", geom);
    877      1.43       riz 	prop_object_release(geom);
    878      1.43       riz 
    879      1.43       riz 	prop_dictionary_set(device_properties(&ld->sc_dv),
    880      1.43       riz 	    "disk-info", disk_info);
    881      1.43       riz 
    882      1.43       riz 	/*
    883      1.43       riz 	 * Don't release disk_info here; we keep a reference to it.
    884      1.43       riz 	 * disk_detach() will release it when we go away.
    885      1.43       riz 	 */
    886      1.43       riz 
    887      1.43       riz 	odisk_info = ld->sc_dk.dk_info;
    888      1.43       riz 	ld->sc_dk.dk_info = disk_info;
    889      1.43       riz 	if (odisk_info)
    890      1.43       riz 		prop_object_release(odisk_info);
    891      1.43       riz }
    892  1.44.2.1      yamt 
    893  1.44.2.1      yamt static void
    894  1.44.2.1      yamt ld_config_interrupts (struct device *d)
    895  1.44.2.1      yamt {
    896  1.44.2.1      yamt 	struct ld_softc *sc = (struct ld_softc *)d;
    897  1.44.2.1      yamt 	dkwedge_discover(&sc->sc_dk);
    898  1.44.2.1      yamt }
    899