View | Details | Raw Unified | Return to bug 267654 | Differences between
and this patch

Collapse All | Expand All

(-)b/lib/libufs/libufs.h (-2 / +2 lines)
Lines 55-65 struct uufsd { Link Here
55
	union {
55
	union {
56
		struct fs d_fs;		/* filesystem information */
56
		struct fs d_fs;		/* filesystem information */
57
		char d_sb[MAXBSIZE];	/* superblock as buffer */
57
		char d_sb[MAXBSIZE];	/* superblock as buffer */
58
	} d_sbunion;
58
	} d_sbunion __attribute__ ((aligned(512)));
59
	union {
59
	union {
60
		struct cg d_cg;		/* cylinder group */
60
		struct cg d_cg;		/* cylinder group */
61
		char d_buf[MAXBSIZE];	/* cylinder group storage */
61
		char d_buf[MAXBSIZE];	/* cylinder group storage */
62
	} d_cgunion;
62
	} d_cgunion __attribute__ ((aligned(512)));
63
	int d_ccg;			/* current cylinder group */
63
	int d_ccg;			/* current cylinder group */
64
	int d_lcg;			/* last cylinder group (in d_cg) */
64
	int d_lcg;			/* last cylinder group (in d_cg) */
65
	const char *d_error;		/* human readable disk error */
65
	const char *d_error;		/* human readable disk error */

Return to bug 267654