diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-04-13 18:34:49 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-04-13 18:34:49 +0000 |
commit | aeed09682d670db93b1f23228d1df88ae910fdc3 (patch) | |
tree | 77b3d92a9f035d2a2457db8f034d8b7b8874c5aa /sys/dev/ic | |
parent | bc642dd57391c75065328ab246ca2beb103f2ef7 (diff) |
scsi_generic is now 16 bytes. Adjust padding so struct is still
256 bytes.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/osiopvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/osiopvar.h b/sys/dev/ic/osiopvar.h index 9aba89816e4..b3de8328ea2 100644 --- a/sys/dev/ic/osiopvar.h +++ b/sys/dev/ic/osiopvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: osiopvar.h,v 1.9 2003/11/16 20:30:06 avsm Exp $ */ +/* $OpenBSD: osiopvar.h,v 1.10 2007/04/13 18:34:48 krw Exp $ */ /* $NetBSD: osiopvar.h,v 1.3 2002/05/14 02:58:35 matt Exp $ */ /* @@ -111,9 +111,9 @@ struct osiop_ds { u_int8_t msgout[8]; u_int8_t msgbuf[8]; u_int8_t stat[8]; - + struct scsi_generic scsi_cmd; /* DMA'able copy of xs->cmd */ - u_int32_t pad[1+4]; /* pad to 256 bytes */ + u_int32_t pad[1+3]; /* pad to 256 bytes */ } __packed; /* status can hold the SCSI_* status values, and 2 additional values: */ |