diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-06-01 06:50:57 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-06-01 06:50:57 +0000 |
commit | d9e3928fef69597d8a17af4cf1372f080b91168e (patch) | |
tree | d1b7f8969592f7d703b8ede6c25aa2afe3e27859 /sys/ufs | |
parent | 77fce94f7c3884b240099f839d8be24f2de08998 (diff) |
fix comment, fs_ipg is inode *blocks* per cylinder group
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ffs/fs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/fs.h b/sys/ufs/ffs/fs.h index 0c056b2f052..f7f4d3797cb 100644 --- a/sys/ufs/ffs/fs.h +++ b/sys/ufs/ffs/fs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fs.h,v 1.30 2007/05/03 20:11:55 millert Exp $ */ +/* $OpenBSD: fs.h,v 1.31 2007/06/01 06:50:56 otto Exp $ */ /* $NetBSD: fs.h,v 1.6 1995/04/12 21:21:02 mycroft Exp $ */ /* @@ -245,7 +245,7 @@ struct fs { int32_t fs_ncyl; /* cylinders in file system */ /* these fields can be computed from the others */ int32_t fs_cpg; /* cylinders per group */ - int32_t fs_ipg; /* inodes per group */ + int32_t fs_ipg; /* inode blocks per group */ int32_t fs_fpg; /* blocks per group * fs_frag */ /* this data must be re-computed after crashes */ struct csum fs_ffs1_cstotal; /* cylinder summary information */ |