summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs
diff options
context:
space:
mode:
authorPedro Martelletto <pedro@cvs.openbsd.org>2006-04-02 16:58:53 +0000
committerPedro Martelletto <pedro@cvs.openbsd.org>2006-04-02 16:58:53 +0000
commit54c80363f012985d4cad642a3971233ca32c253f (patch)
treea0515e57f2c2e7e10539b8798f953364a49f0341 /sys/ufs/ffs
parent8f7824760ff990c78b2593562442d5bfa7b24669 (diff)
In the cylinder groups, use part of the reserved space to sprinkle a
couple of new fields needed by FFS2, no functional change.
Diffstat (limited to 'sys/ufs/ffs')
-rw-r--r--sys/ufs/ffs/fs.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/ufs/ffs/fs.h b/sys/ufs/ffs/fs.h
index 50a61bb11e3..f113231a894 100644
--- a/sys/ufs/ffs/fs.h
+++ b/sys/ufs/ffs/fs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: fs.h,v 1.21 2006/03/31 08:13:07 pedro Exp $ */
+/* $OpenBSD: fs.h,v 1.22 2006/04/02 16:58:52 pedro Exp $ */
/* $NetBSD: fs.h,v 1.6 1995/04/12 21:21:02 mycroft Exp $ */
/*
@@ -407,7 +407,11 @@ struct cg {
int32_t cg_clustersumoff; /* (u_int32) counts of avail clusters */
int32_t cg_clusteroff; /* (u_int8) free cluster map */
int32_t cg_nclusterblks; /* number of clusters this cg */
- int32_t cg_sparecon[13]; /* reserved for future use */
+ int32_t cg_ffs2_niblk; /* number of inode blocks this cg */
+ int32_t cg_initediblk; /* last initialized inode */
+ int32_t cg_sparecon32[3]; /* reserved for future use */
+ int64_t cg_ffs2_time; /* time last written */
+ int64_t cg_sparecon64[3]; /* reserved for future use */
u_int8_t cg_space[1]; /* space for cylinder group maps */
/* actually longer */
};