diff options
Diffstat (limited to 'sys/scsi/scsiconf.h')
-rw-r--r-- | sys/scsi/scsiconf.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index 1f6c4dfd10d..d7e252fd042 100644 --- a/sys/scsi/scsiconf.h +++ b/sys/scsi/scsiconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.h,v 1.92 2008/06/14 01:57:51 krw Exp $ */ +/* $OpenBSD: scsiconf.h,v 1.93 2008/06/21 21:11:34 krw Exp $ */ /* $NetBSD: scsiconf.h,v 1.35 1997/04/02 02:29:38 mycroft Exp $ */ /* @@ -297,10 +297,15 @@ struct scsi_xfer { #define XS_RESET 8 /* bus was reset; possible retry command */ /* - * Possible retries numbers for scsi_test_unit_ready() + * Possible retries for scsi_test_unit_ready() */ #define TEST_READY_RETRIES 5 +/* + * Possible retries for most SCSI commands. + */ +#define SCSI_RETRIES 4 + const void *scsi_inqmatch(struct scsi_inquiry_data *, const void *, int, int, int *); |