From 64a0a3ed07a7a71f54bb19d88202fef9497b97ea Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 11 Feb 1997 06:59:29 +0000 Subject: Add fs_id support and random inode generation numbers for ffs. --- sys/ufs/ffs/fs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/ufs/ffs/fs.h') diff --git a/sys/ufs/ffs/fs.h b/sys/ufs/ffs/fs.h index 478db6a5be7..ce4f34bef21 100644 --- a/sys/ufs/ffs/fs.h +++ b/sys/ufs/ffs/fs.h @@ -198,8 +198,8 @@ struct fs { int32_t fs_npsect; /* # sectors/track including spares */ int32_t fs_interleave; /* hardware sector interleave */ int32_t fs_trackskew; /* sector 0 skew, per track */ - int32_t fs_headswitch; /* head switch time, usec */ - int32_t fs_trkseek; /* track-to-track seek, usec */ +/* fs_id takes the space of the unused fs_headswitch and fs_trkseek fields */ + int32_t fs_id[2]; /* unique filesystem id */ /* sizes determined by number of cylinder groups and their sizes */ daddr_t fs_csaddr; /* blk addr of cyl grp summary area */ int32_t fs_cssize; /* size of cyl grp summary area */ -- cgit v1.2.3