diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-16 21:23:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-16 21:23:27 +0000 |
commit | 46911f6708d8f6b2c2ed9aafdeab04bea5a8a819 (patch) | |
tree | 5c264a998c67b5ceb4f2d3fbd9d809d2d65301be | |
parent | 43eadc94f63395d4c174d8ea6c3fd48f1a419cc6 (diff) |
add SDEV_NOTAGS
-rw-r--r-- | sys/scsi/scsiconf.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index 43cff83adb7..a315b0121f5 100644 --- a/sys/scsi/scsiconf.h +++ b/sys/scsi/scsiconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.h,v 1.14 1997/09/05 05:56:50 millert Exp $ */ +/* $OpenBSD: scsiconf.h,v 1.15 1998/02/16 21:23:26 deraadt Exp $ */ /* $NetBSD: scsiconf.h,v 1.35 1997/04/02 02:29:38 mycroft Exp $ */ /* @@ -155,8 +155,9 @@ struct scsi_link { #define SDEV_NOSYNCWIDE 0x02 /* does not grok SDTR or WDTR */ #define SDEV_NOLUNS 0x04 /* does not grok LUNs */ #define SDEV_FORCELUNS 0x08 /* prehistoric drive/ctlr groks LUNs */ -#define SDEV_NOMODESENSE 0x10 /* removable media/optical drives */ -#define SDEV_NOSTARTUNIT 0x20 /* do not issue start unit requests in sd.c */ +#define SDEV_NOMODESENSE 0x10 /* removable media/optical drives */ +#define SDEV_NOSTARTUNIT 0x20 /* do not issue start unit requests in sd.c */ +#define SDEV_NOTAGS 0x40 /* lies about having tagged queueing */ u_int8_t inquiry_flags; /* copy of flags from probe INQUIRY */ struct scsi_device *device; /* device entry points etc. */ void *device_softc; /* needed for call to foo_start */ |