diff options
| author | chs <chs@NetBSD.org> | 2005-05-18 13:58:10 +0000 |
|---|---|---|
| committer | chs <chs@NetBSD.org> | 2005-05-18 13:58:10 +0000 |
| commit | a4ef51503ff3324efedef33a0af1cd95cf4bda5a (patch) | |
| tree | e007a728421f3bbd44fbaf491fa4964e7c3edcbe /sys | |
| parent | 9cb572b112201baabe0e7716f1fd4bb0e85f317c (diff) | |
as a stop-gap measure to allow boot-from-disk to work on hppa,
add some padding to the end of struct scsipi_xfer on that platform.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/scsipi/scsipiconf.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/scsipi/scsipiconf.h b/sys/dev/scsipi/scsipiconf.h index 3958c3c2e4b..e85c10b1dde 100644 --- a/sys/dev/scsipi/scsipiconf.h +++ b/sys/dev/scsipi/scsipiconf.h @@ -1,4 +1,4 @@ -/* $NetBSD: scsipiconf.h,v 1.97 2005/02/27 00:27:48 perry Exp $ */ +/* $NetBSD: scsipiconf.h,v 1.98 2005/05/18 13:58:10 chs Exp $ */ /*- * Copyright (c) 1998, 1999, 2000, 2004 The NetBSD Foundation, Inc. @@ -533,6 +533,11 @@ struct scsipi_xfer { struct scsipi_generic cmdstore __attribute__ ((aligned (4)));/* stash the command in here */ + +#ifdef __hppa__ + /* XXX temp hack until we fix the memory corruption bug */ + u_int8_t pad[32]; +#endif }; /* |
