diff options
author | 2007-04-13 18:34:48 +0000 | |
---|---|---|
committer | 2007-04-13 18:34:48 +0000 | |
commit | ffc5cc876cc8592b41d172754f9831160623bd45 (patch) | |
tree | e6e68035666ff40201daadb4de65f9b1b40283b9 | |
parent | Relax the cache flags logic in pmap_kenter_pa, to make sure that mappings (diff) | |
download | wireguard-openbsd-ffc5cc876cc8592b41d172754f9831160623bd45.tar.xz wireguard-openbsd-ffc5cc876cc8592b41d172754f9831160623bd45.zip |
scsi_generic is now 16 bytes. Adjust padding so struct is still
256 bytes.
-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: */ |