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