summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-10-18 20:09:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-10-18 20:09:40 +0000
commit8297763c6498ddf44689438c9cbc89460061bda4 (patch)
tree5aba7d32e9f858070df5f03f66cfb4258d969bb1 /sys/arch/mips64/include
parentf09f7f3f716a77492ae376468e40ab1cb02ec0fc (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/mips64/include')
-rw-r--r--sys/arch/mips64/include/disklabel.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/mips64/include/disklabel.h b/sys/arch/mips64/include/disklabel.h
index 16d1a1cdbba..cfc568f142f 100644
--- a/sys/arch/mips64/include/disklabel.h
+++ b/sys/arch/mips64/include/disklabel.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: disklabel.h,v 1.10 2006/10/17 23:42:37 krw Exp $ */
+/* $OpenBSD: disklabel.h,v 1.11 2006/10/18 20:09:39 deraadt Exp $ */
/* $NetBSD: disklabel.h,v 1.1 1995/02/13 23:07:34 cgd Exp $ */
/*
@@ -149,6 +149,11 @@ struct sgilabel {
struct cpu_disklabel {
int labelsector;
+ union {
+ struct {
+ struct dos_partition dosparts[NDOSPART];
+ } _i386;
+ } u;
};
#endif /* _MACHINE_DISKLABEL_H_ */