diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-10-18 20:09:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-10-18 20:09:40 +0000 |
commit | 8297763c6498ddf44689438c9cbc89460061bda4 (patch) | |
tree | 5aba7d32e9f858070df5f03f66cfb4258d969bb1 /sys/arch/hppa64/include | |
parent | f09f7f3f716a77492ae376468e40ab1cb02ec0fc (diff) |
back out disksubr changes ... since they violate strict alignment on
some architectures (kaboom); that will be fixed in the next iteration
hopefully!
Diffstat (limited to 'sys/arch/hppa64/include')
-rw-r--r-- | sys/arch/hppa64/include/disklabel.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/hppa64/include/disklabel.h b/sys/arch/hppa64/include/disklabel.h index fa058bf0c5a..4edbb365aef 100644 --- a/sys/arch/hppa64/include/disklabel.h +++ b/sys/arch/hppa64/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.8 2006/10/17 23:42:37 krw Exp $ */ +/* $OpenBSD: disklabel.h,v 1.9 2006/10/18 20:09:38 deraadt Exp $ */ /* $NetBSD: disklabel.h,v 1.1 1995/02/13 23:07:34 cgd Exp $ */ /* @@ -179,6 +179,9 @@ struct cpu_disklabel { int labelsector; union { struct { + struct dos_partition dosparts[NDOSPART]; + } _i386; + struct { struct lifvol lifvol; struct lifdir lifdir[LIF_NUMDIR]; struct hpux_label hplabel; |