summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2006-11-27 11:56:21 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2006-11-27 11:56:21 +0000
commit260cd8ce709a413c6a5adab22ec07153aa64354a (patch)
tree39b5647538a7d0ba9e3553bbfe4f4f410fd116ad /sys
parenta7f6eff3bfa830b33c8a255f85f48d279e54adf7 (diff)
if there are no luns on a target, then say there were no devices,
otherwise return any error we find during detach of the luns.
Diffstat (limited to 'sys')
-rw-r--r--sys/scsi/scsiconf.c26
1 files changed, 12 insertions, 14 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c
index 0725b902ad0..8d40860939d 100644
--- a/sys/scsi/scsiconf.c
+++ b/sys/scsi/scsiconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: scsiconf.c,v 1.118 2006/11/26 09:29:07 dlg Exp $ */
+/* $OpenBSD: scsiconf.c,v 1.119 2006/11/27 11:56:20 dlg Exp $ */
/* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */
/*
@@ -301,30 +301,27 @@ int
scsi_detach_bus(struct scsibus_softc *sc, int flags)
{
struct scsi_link *alink = sc->adapter_link;
- int i, err, rv;
-
- for (i = 0; i < alink->adapter_buswidth; i++) {
- if (sc->sc_link[i] == NULL)
- continue;
+ int i;
- err = scsi_detach_target(sc, i, flags);
- if (err != 0)
- rv = err;
- }
+ for (i = 0; i < alink->adapter_buswidth; i++)
+ scsi_detach_target(sc, i, flags);
- return (rv);
+ return (0);
}
int
scsi_detach_target(struct scsibus_softc *sc, int target, int flags)
{
struct scsi_link *alink = sc->adapter_link;
- int i, err, rv;
+ int i, err, rv = 0, detached = 0;
if (target < 0 || target >= alink->adapter_buswidth ||
target == alink->adapter_target)
return (ENXIO);
+ if (sc->sc_link[target] == NULL)
+ return (ENXIO);
+
for (i = 0; i < alink->luns; i++) { /* nicer backwards? */
if (sc->sc_link[target][i] == NULL)
continue;
@@ -332,9 +329,10 @@ scsi_detach_target(struct scsibus_softc *sc, int target, int flags)
err = scsi_detach_lun(sc, target, i, flags);
if (err != 0)
rv = err;
+ detached = 1;
}
- return (rv);
+ return (detached ? rv : ENXIO);
}
int
@@ -356,7 +354,7 @@ scsi_detach_lun(struct scsibus_softc *sc, int target, int lun, int flags)
if (link == NULL)
return (ENXIO);
- if (((flags & DETACH_FORCE) == 0) && link->flags & SDEV_OPEN)
+ if (((flags & DETACH_FORCE) == 0) && (link->flags & SDEV_OPEN))
return (EBUSY);
/* detaching a device from scsibus is a two step process... */