diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-06-10 00:44:01 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-06-10 00:44:01 +0000 |
commit | 5f8e6f389312dc58d7e115698eddf1aadba5d2cf (patch) | |
tree | 3cbfbe54a59611a5998349f98f02141dca907fe3 /sys/scsi/scsi_debug.h | |
parent | 34e21fa7427630a0fd22a30e611f27d844a36035 (diff) |
Several changes:
* Implemented NetBSD PR#2529, adding ZIP 100.
* Added MTIOCTOP support to acd, cd, and sd.
* Implemented eject on close for acd, cd, and sd.
`mt -f /dev/rcd0d offline' now ejects a mounted {acd|cd|sd} when it is
unmounted.
Diffstat (limited to 'sys/scsi/scsi_debug.h')
-rw-r--r-- | sys/scsi/scsi_debug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/scsi/scsi_debug.h b/sys/scsi/scsi_debug.h index ad2c3da29be..67e109788a5 100644 --- a/sys/scsi/scsi_debug.h +++ b/sys/scsi/scsi_debug.h @@ -11,10 +11,10 @@ * the following DEBUG bits are defined to exist in the flags word of * the scsi_link structure. */ -#define SDEV_DB1 0x10 /* scsi commands, errors, data */ -#define SDEV_DB2 0x20 /* routine flow tracking */ -#define SDEV_DB3 0x40 /* internal to routine flows */ -#define SDEV_DB4 0x80 /* level 4 debugging for this dev */ +#define SDEV_DB1 0x0010 /* scsi commands, errors, data */ +#define SDEV_DB2 0x0020 /* routine flow tracking */ +#define SDEV_DB3 0x0040 /* internal to routine flows */ +#define SDEV_DB4 0x0080 /* level 4 debugging for this dev */ /* target and LUN we want to debug */ #define DEBUGTARGET -1 /* -1 = disable */ |