Module Name:    src
Committed By:   matt
Date:           Fri May  7 06:15:07 UTC 2010

Modified Files:
        src/sys/sys [matt-nb5-mips64]: disklabel.h

Log Message:
Add a uint64_t to the union so that disklabel will have the same layout on
both LP64 and IPL32.


To generate a diff of this commit:
cvs rdiff -u -r1.102 -r1.102.10.1 src/sys/sys/disklabel.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/disklabel.h
diff -u src/sys/sys/disklabel.h:1.102 src/sys/sys/disklabel.h:1.102.10.1
--- src/sys/sys/disklabel.h:1.102	Tue Aug 19 12:16:49 2008
+++ src/sys/sys/disklabel.h	Fri May  7 06:15:07 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: disklabel.h,v 1.102 2008/08/19 12:16:49 haad Exp $	*/
+/*	$NetBSD: disklabel.h,v 1.102.10.1 2010/05/07 06:15:07 matt Exp $	*/
 
 /*
  * Copyright (c) 1987, 1988, 1993
@@ -117,6 +117,7 @@
 			char *un_d_boot0;	/* primary bootstrap name */
 			char *un_d_boot1;	/* secondary bootstrap name */
 		} un_b;
+		uint64_t un_d_pad;		/* force 8 byte alignment */
 	} d_un;
 #define	d_packname	d_un.un_d_packname
 #define	d_boot0		d_un.un_b.un_d_boot0

Reply via email to