1998-03-29 00:57:08 +03:00
|
|
|
/* $NetBSD: scsi_base.c,v 1.60 1998/03/28 21:57:09 christos Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
1997-04-02 06:29:30 +04:00
|
|
|
* Copyright (c) 1994, 1995, 1997 Charles M. Hannum. All rights reserved.
|
1994-03-29 08:29:20 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1997-04-02 06:29:30 +04:00
|
|
|
* This product includes software developed by Charles M. Hannum.
|
1994-03-29 08:29:20 +04:00
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Originally written by Julian Elischer (julian@dialix.oz.au)
|
1993-11-24 07:52:44 +03:00
|
|
|
*/
|
|
|
|
|
1997-09-13 12:51:15 +04:00
|
|
|
#include "opt_scsiverbose.h"
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
1995-09-26 22:26:48 +03:00
|
|
|
#include <sys/systm.h>
|
1994-04-11 07:53:45 +04:00
|
|
|
#include <sys/kernel.h>
|
1993-11-24 07:52:44 +03:00
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/device.h>
|
1996-02-15 00:46:52 +03:00
|
|
|
#include <sys/proc.h>
|
1993-11-24 12:45:04 +03:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
#include <dev/scsipi/scsipi_all.h>
|
|
|
|
#include <dev/scsipi/scsi_all.h>
|
|
|
|
#include <dev/scsipi/scsi_disk.h>
|
|
|
|
#include <dev/scsipi/scsiconf.h>
|
|
|
|
#include <dev/scsipi/scsipi_base.h>
|
1993-11-24 07:52:44 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Do a scsi operation, asking a device to run as SCSI-II if it can.
|
|
|
|
*/
|
1997-10-01 05:18:38 +04:00
|
|
|
int
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_change_def(sc_link, flags)
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_link *sc_link;
|
1994-04-11 07:53:45 +04:00
|
|
|
int flags;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsi_changedef scsipi_cmd;
|
1994-12-28 22:42:47 +03:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
bzero(&scsipi_cmd, sizeof(scsipi_cmd));
|
|
|
|
scsipi_cmd.opcode = SCSI_CHANGE_DEFINITION;
|
|
|
|
scsipi_cmd.how = SC_SCSI_2;
|
1997-04-02 06:29:30 +04:00
|
|
|
|
1997-10-18 23:50:51 +04:00
|
|
|
return (scsipi_command(sc_link,
|
1997-10-01 05:18:38 +04:00
|
|
|
(struct scsipi_generic *) &scsipi_cmd, sizeof(scsipi_cmd),
|
|
|
|
0, 0, 2, 100000, NULL, flags));
|
1994-12-28 22:42:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ask the scsi driver to perform a command for us.
|
|
|
|
* tell it where to read/write the data, and how
|
|
|
|
* long the data is supposed to be. If we have a buf
|
|
|
|
* to associate with the transfer, we need that too.
|
|
|
|
*/
|
1997-10-01 05:18:38 +04:00
|
|
|
int
|
1997-08-27 15:22:52 +04:00
|
|
|
scsi_scsipi_cmd(sc_link, scsipi_cmd, cmdlen, data_addr, datalen,
|
|
|
|
retries, timeout, bp, flags)
|
|
|
|
struct scsipi_link *sc_link;
|
|
|
|
struct scsipi_generic *scsipi_cmd;
|
1994-12-28 22:42:47 +03:00
|
|
|
int cmdlen;
|
|
|
|
u_char *data_addr;
|
|
|
|
int datalen;
|
|
|
|
int retries;
|
|
|
|
int timeout;
|
|
|
|
struct buf *bp;
|
|
|
|
int flags;
|
|
|
|
{
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_xfer *xs;
|
1994-12-28 22:42:47 +03:00
|
|
|
int error;
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB2, ("scsi_scsipi_cmd\n"));
|
1994-12-28 22:42:47 +03:00
|
|
|
|
1995-01-13 17:38:13 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (bp != 0 && (flags & SCSI_NOSLEEP) == 0)
|
1997-08-27 15:22:52 +04:00
|
|
|
panic("scsi_scsipi_cmd: buffer without nosleep");
|
1995-01-13 17:38:13 +03:00
|
|
|
#endif
|
|
|
|
|
1997-10-01 05:18:38 +04:00
|
|
|
if ((xs = scsipi_make_xs(sc_link, scsipi_cmd, cmdlen, data_addr,
|
|
|
|
datalen, retries, timeout, bp, flags)) == NULL)
|
|
|
|
return (ENOMEM);
|
1994-12-28 22:42:47 +03:00
|
|
|
|
1998-01-15 05:21:27 +03:00
|
|
|
/*
|
|
|
|
* Set the LUN in the CDB if we have an older device. We also
|
|
|
|
* set it for more modern SCSI-II devices "just in case".
|
|
|
|
*/
|
|
|
|
if ((sc_link->scsipi_scsi.scsi_version & SID_ANSII) <= 2)
|
|
|
|
xs->cmd->bytes[0] |=
|
|
|
|
((sc_link->scsipi_scsi.lun << SCSI_CMD_LUN_SHIFT) &
|
|
|
|
SCSI_CMD_LUN_MASK);
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
if ((error = scsipi_execute_xs(xs)) == EJUSTRETURN)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1994-12-28 22:42:47 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* we have finished with the xfer stuct, free it and
|
|
|
|
* check if anyone else needs to be started up.
|
|
|
|
*/
|
1997-08-27 15:22:52 +04:00
|
|
|
scsipi_free_xs(xs, flags);
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1994-12-28 22:42:47 +03:00
|
|
|
}
|
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* Look at the returned sense and act on the error, determining
|
|
|
|
* the unix error number to pass back. (0 = report no error)
|
|
|
|
*
|
1997-08-27 15:22:52 +04:00
|
|
|
* THIS IS THE DEFAULT ERROR HANDLER FOR SCSI DEVICES
|
1993-11-24 07:52:44 +03:00
|
|
|
*/
|
1997-10-01 05:18:38 +04:00
|
|
|
int
|
1993-11-24 07:52:44 +03:00
|
|
|
scsi_interpret_sense(xs)
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_xfer *xs;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_sense_data *sense;
|
|
|
|
struct scsipi_link *sc_link = xs->sc_link;
|
1994-12-28 22:42:47 +03:00
|
|
|
u_int8_t key;
|
|
|
|
u_int32_t info;
|
1993-11-24 12:45:04 +03:00
|
|
|
int error;
|
1997-08-20 22:19:12 +04:00
|
|
|
#ifndef SCSIVERBOSE
|
1994-12-28 22:42:47 +03:00
|
|
|
static char *error_mes[] = {
|
|
|
|
"soft error (corrected)",
|
|
|
|
"not ready", "medium error",
|
|
|
|
"non-media hardware failure", "illegal request",
|
|
|
|
"unit attention", "readonly device",
|
|
|
|
"no data found", "vendor unique",
|
|
|
|
"copy aborted", "command aborted",
|
|
|
|
"search returned equal", "volume overflow",
|
|
|
|
"verify miscompare", "unknown error key"
|
1993-11-24 07:52:44 +03:00
|
|
|
};
|
1997-08-20 22:19:12 +04:00
|
|
|
#endif
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
sense = &xs->sense.scsi_sense;
|
1993-11-24 07:52:44 +03:00
|
|
|
#ifdef SCSIDEBUG
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((sc_link->flags & SDEV_DB1) != 0) {
|
|
|
|
int count;
|
1997-08-04 10:55:22 +04:00
|
|
|
printf("code 0x%x valid 0x%x ",
|
1997-08-27 15:22:52 +04:00
|
|
|
sense->error_code & SSD_ERRCODE,
|
|
|
|
sense->error_code & SSD_ERRCODE_VALID ? 1 : 0);
|
1997-08-04 10:55:22 +04:00
|
|
|
printf("seg 0x%x key 0x%x ili 0x%x eom 0x%x fmark 0x%x\n",
|
1997-08-27 15:22:52 +04:00
|
|
|
sense->segment,
|
|
|
|
sense->flags & SSD_KEY,
|
|
|
|
sense->flags & SSD_ILI ? 1 : 0,
|
|
|
|
sense->flags & SSD_EOM ? 1 : 0,
|
|
|
|
sense->flags & SSD_FILEMARK ? 1 : 0);
|
1997-08-04 10:55:22 +04:00
|
|
|
printf("info: 0x%x 0x%x 0x%x 0x%x followed by %d extra bytes\n",
|
1997-08-27 15:22:52 +04:00
|
|
|
sense->info[0],
|
|
|
|
sense->info[1],
|
|
|
|
sense->info[2],
|
|
|
|
sense->info[3],
|
|
|
|
sense->extra_len);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("extra: ");
|
1997-10-02 20:03:42 +04:00
|
|
|
for (count = 0; count < ADD_BYTES_LIM(sense); count++)
|
|
|
|
printf("0x%x ", sense->cmd_spec_info[count]);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n");
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1997-08-20 22:19:12 +04:00
|
|
|
#endif /* SCSIDEBUG */
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* If the device has it's own error handler, call it first.
|
|
|
|
* If it returns a legit error value, return that, otherwise
|
|
|
|
* it wants us to continue with normal error processing.
|
|
|
|
*/
|
|
|
|
if (sc_link->device->err_handler) {
|
1997-10-01 05:18:38 +04:00
|
|
|
SC_DEBUG(sc_link, SDEV_DB2,
|
|
|
|
("calling private err_handler()\n"));
|
|
|
|
error = (*sc_link->device->err_handler)(xs);
|
1993-11-24 12:45:04 +03:00
|
|
|
if (error != -1)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error); /* error >= 0 better ? */
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
/* otherwise use the default */
|
|
|
|
switch (sense->error_code & SSD_ERRCODE) {
|
|
|
|
/*
|
1997-10-01 05:18:38 +04:00
|
|
|
* If it's code 70, use the extended stuff and
|
|
|
|
* interpret the key
|
1993-11-24 07:52:44 +03:00
|
|
|
*/
|
|
|
|
case 0x71: /* delayed error */
|
1997-08-27 15:22:52 +04:00
|
|
|
sc_link->sc_print_addr(sc_link);
|
1996-03-19 06:05:15 +03:00
|
|
|
key = sense->flags & SSD_KEY;
|
1997-08-20 22:19:12 +04:00
|
|
|
printf(" DEFERRED ERROR, key = 0x%x\n", key);
|
|
|
|
/* FALLTHROUGH */
|
1993-11-24 07:52:44 +03:00
|
|
|
case 0x70:
|
1996-03-19 06:05:15 +03:00
|
|
|
if ((sense->error_code & SSD_ERRCODE_VALID) != 0)
|
|
|
|
info = _4btol(sense->info);
|
|
|
|
else
|
1993-11-24 07:52:44 +03:00
|
|
|
info = 0;
|
1996-03-19 06:05:15 +03:00
|
|
|
key = sense->flags & SSD_KEY;
|
1993-11-24 07:52:44 +03:00
|
|
|
|
1994-12-28 22:42:47 +03:00
|
|
|
switch (key) {
|
|
|
|
case 0x0: /* NO SENSE */
|
1994-12-29 16:49:57 +03:00
|
|
|
case 0x1: /* RECOVERED ERROR */
|
1994-12-28 22:42:47 +03:00
|
|
|
if (xs->resid == xs->datalen)
|
|
|
|
xs->resid = 0; /* not short read */
|
|
|
|
case 0xc: /* EQUAL */
|
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
case 0x2: /* NOT READY */
|
|
|
|
if ((sc_link->flags & SDEV_REMOVABLE) != 0)
|
|
|
|
sc_link->flags &= ~SDEV_MEDIA_LOADED;
|
|
|
|
if ((xs->flags & SCSI_IGNORE_NOT_READY) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((xs->flags & SCSI_SILENT) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EIO);
|
1994-12-28 22:42:47 +03:00
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
case 0x5: /* ILLEGAL REQUEST */
|
|
|
|
if ((xs->flags & SCSI_IGNORE_ILLEGAL_REQUEST) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (0);
|
1996-07-05 20:19:02 +04:00
|
|
|
if ((xs->flags & SCSI_SILENT) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EIO);
|
1994-12-28 22:42:47 +03:00
|
|
|
error = EINVAL;
|
|
|
|
break;
|
|
|
|
case 0x6: /* UNIT ATTENTION */
|
|
|
|
if ((sc_link->flags & SDEV_REMOVABLE) != 0)
|
|
|
|
sc_link->flags &= ~SDEV_MEDIA_LOADED;
|
|
|
|
if ((xs->flags & SCSI_IGNORE_MEDIA_CHANGE) != 0 ||
|
1997-08-27 15:22:52 +04:00
|
|
|
/* XXX Should reupload any transient state. */
|
|
|
|
(sc_link->flags & SDEV_REMOVABLE) == 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (ERESTART);
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((xs->flags & SCSI_SILENT) != 0)
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EIO);
|
1994-12-28 22:42:47 +03:00
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
case 0x7: /* DATA PROTECT */
|
1997-12-31 00:36:51 +03:00
|
|
|
error = EROFS;
|
1994-12-28 22:42:47 +03:00
|
|
|
break;
|
|
|
|
case 0x8: /* BLANK CHECK */
|
|
|
|
error = 0;
|
|
|
|
break;
|
1996-01-31 18:16:06 +03:00
|
|
|
case 0xb: /* COMMAND ABORTED */
|
|
|
|
error = ERESTART;
|
|
|
|
break;
|
1994-12-28 22:42:47 +03:00
|
|
|
case 0xd: /* VOLUME OVERFLOW */
|
|
|
|
error = ENOSPC;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error = EIO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1997-08-27 15:22:52 +04:00
|
|
|
#ifdef SCSIVERBOSE
|
1997-10-01 22:47:01 +04:00
|
|
|
if ((xs->flags & SCSI_SILENT) == 0)
|
|
|
|
scsi_print_sense(xs, 0);
|
1997-08-20 22:19:12 +04:00
|
|
|
#else
|
1994-12-28 22:42:47 +03:00
|
|
|
if (key) {
|
1997-08-27 15:22:52 +04:00
|
|
|
sc_link->sc_print_addr(sc_link);
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("%s", error_mes[key - 1]);
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((sense->error_code & SSD_ERRCODE_VALID) != 0) {
|
1993-11-24 07:52:44 +03:00
|
|
|
switch (key) {
|
1994-12-29 16:49:57 +03:00
|
|
|
case 0x2: /* NOT READY */
|
|
|
|
case 0x5: /* ILLEGAL REQUEST */
|
|
|
|
case 0x6: /* UNIT ATTENTION */
|
1993-11-24 07:52:44 +03:00
|
|
|
case 0x7: /* DATA PROTECT */
|
|
|
|
break;
|
|
|
|
case 0x8: /* BLANK CHECK */
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(", requested size: %d (decimal)",
|
1997-10-01 05:18:38 +04:00
|
|
|
info);
|
1993-11-24 07:52:44 +03:00
|
|
|
break;
|
1996-01-31 18:16:06 +03:00
|
|
|
case 0xb:
|
|
|
|
if (xs->retries)
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(", retrying");
|
|
|
|
printf(", cmd 0x%x, info 0x%x",
|
1997-10-01 05:18:38 +04:00
|
|
|
xs->cmd->opcode, info);
|
1996-01-31 18:16:06 +03:00
|
|
|
break;
|
1993-11-24 07:52:44 +03:00
|
|
|
default:
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(", info = %d (decimal)", info);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
}
|
1996-03-19 06:05:15 +03:00
|
|
|
if (sense->extra_len != 0) {
|
1995-01-13 17:38:13 +03:00
|
|
|
int n;
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(", data =");
|
1996-03-19 06:05:15 +03:00
|
|
|
for (n = 0; n < sense->extra_len; n++)
|
1997-10-01 05:18:38 +04:00
|
|
|
printf(" %02x",
|
|
|
|
sense->cmd_spec_info[n]);
|
1995-01-13 17:38:13 +03:00
|
|
|
}
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n");
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1997-08-20 22:19:12 +04:00
|
|
|
#endif
|
1997-10-01 05:18:38 +04:00
|
|
|
return (error);
|
1994-12-28 22:42:47 +03:00
|
|
|
|
1993-11-24 07:52:44 +03:00
|
|
|
/*
|
|
|
|
* Not code 70, just report it
|
|
|
|
*/
|
|
|
|
default:
|
1997-08-27 15:22:52 +04:00
|
|
|
sc_link->sc_print_addr(sc_link);
|
1997-10-01 05:18:38 +04:00
|
|
|
printf("error code %d", sense->error_code & SSD_ERRCODE);
|
1994-12-28 22:42:47 +03:00
|
|
|
if ((sense->error_code & SSD_ERRCODE_VALID) != 0) {
|
1997-08-27 15:22:52 +04:00
|
|
|
struct scsipi_sense_data_unextended *usense =
|
1997-10-01 05:18:38 +04:00
|
|
|
(struct scsipi_sense_data_unextended *)sense;
|
1996-10-13 03:23:13 +04:00
|
|
|
printf(" at block no. %d (decimal)",
|
1997-10-01 05:18:38 +04:00
|
|
|
_3btol(usense->block));
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("\n");
|
1997-10-01 05:18:38 +04:00
|
|
|
return (EIO);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Utility routines often used in SCSI stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print out the scsi_link structure's address info.
|
|
|
|
*/
|
|
|
|
void
|
1997-08-27 15:22:52 +04:00
|
|
|
scsi_print_addr(sc_link)
|
|
|
|
struct scsipi_link *sc_link;
|
1993-11-24 07:52:44 +03:00
|
|
|
{
|
|
|
|
|
1996-10-13 03:23:13 +04:00
|
|
|
printf("%s(%s:%d:%d): ",
|
1997-10-01 05:18:38 +04:00
|
|
|
sc_link->device_softc ?
|
|
|
|
((struct device *)sc_link->device_softc)->dv_xname : "probe",
|
|
|
|
((struct device *)sc_link->adapter_softc)->dv_xname,
|
|
|
|
sc_link->scsipi_scsi.target, sc_link->scsipi_scsi.lun);
|
1993-11-24 07:52:44 +03:00
|
|
|
}
|