Module Name: src Committed By: rkujawa Date: Mon May 18 09:52:30 UTC 2020
Modified Files: src/sys/sys: scsiio.h Log Message: Remove misleading comment. I've successfully transferred 16-byte command. I've checked scsipi source and see no reason for this limitation. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/sys/scsiio.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/scsiio.h diff -u src/sys/sys/scsiio.h:1.12 src/sys/sys/scsiio.h:1.13 --- src/sys/sys/scsiio.h:1.12 Sun Mar 4 06:03:41 2007 +++ src/sys/sys/scsiio.h Mon May 18 09:52:30 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: scsiio.h,v 1.12 2007/03/04 06:03:41 christos Exp $ */ +/* $NetBSD: scsiio.h,v 1.13 2020/05/18 09:52:30 rkujawa Exp $ */ #ifndef _SYS_SCSIIO_H_ #define _SYS_SCSIIO_H_ @@ -12,7 +12,7 @@ typedef struct scsireq { u_long flags; /* info about the request status and type */ u_long timeout; - u_char cmd[16]; /* 12 is actually the max */ + u_char cmd[16]; u_char cmdlen; void * databuf; /* address in user space of buffer */ u_long datalen; /* size of user buffer (request) */