From: krw Date: Thu, 24 Mar 2022 00:30:51 +0000 (+0000) Subject: Revert previous. Breaks probing native IDE devices. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=475618162a2c19aee88ca34b945ae96a2901ded9;p=openbsd Revert previous. Breaks probing native IDE devices. Problem reported by jungle Boogie via bugs@ --- diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c index 7847ce73417..a5450001ee4 100644 --- a/sys/scsi/scsiconf.c +++ b/sys/scsi/scsiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.c,v 1.247 2022/03/23 14:36:01 krw Exp $ */ +/* $OpenBSD: scsiconf.c,v 1.248 2022/03/24 00:30:51 krw Exp $ */ /* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */ /* @@ -519,8 +519,7 @@ scsi_probe_link(struct scsibus_softc *sb, int target, int lun, int dumbscan) SC_DEBUG(link, SDEV_DB2, ("dev_probe(link) failed.\n")); rslt = EINVAL; } - free(link, M_DEVBUF, sizeof(*link)); - return rslt; + goto free; } /* @@ -623,7 +622,7 @@ scsi_probe_link(struct scsibus_softc *sb, int target, int lun, int dumbscan) /* The device doesn't distinguish between LUNs. */ SC_DEBUG(link, SDEV_DB1, ("IDENTIFY not supported.\n")); rslt = EINVAL; - goto bad; + goto free_devid; } link->quirks = devquirks; /* Restore what the device wanted. */ @@ -680,7 +679,7 @@ scsi_probe_link(struct scsibus_softc *sb, int target, int lun, int dumbscan) if (cf == NULL) { scsibussubprint(&sa, sb->sc_dev.dv_xname); printf(" not configured\n"); - goto bad; + goto free_devid; } /* @@ -718,8 +717,17 @@ scsi_probe_link(struct scsibus_softc *sb, int target, int lun, int dumbscan) config_attach((struct device *)sb, cf, &sa, scsibussubprint); return 0; +free_devid: + if (link->id) + devid_free(link->id); bad: - scsi_detach_link(link, DETACH_FORCE); + if (ISSET(link->flags, SDEV_OWN_IOPL)) + free(link->pool, M_DEVBUF, sizeof(*link->pool)); + + if (sb->sb_adapter->dev_free != NULL) + sb->sb_adapter->dev_free(link); +free: + free(link, M_DEVBUF, sizeof(*link)); return rslt; }