aboutsummaryrefslogtreecommitdiff
path: root/share/man/man5/fs.5
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2012-02-12 18:29:56 +0000
committerEd Schouten <ed@FreeBSD.org>2012-02-12 18:29:56 +0000
commit6b99842ada7bb3bd24c5fd4541e046994733757b (patch)
treeac73d0fee5bb41748009d87a44b179ab6b7d87bc /share/man/man5/fs.5
parent5a197b461236c689211780e2f74e4c7d4d313fe9 (diff)
downloadsrc-6b99842ada7bb3bd24c5fd4541e046994733757b.tar.gz
src-6b99842ada7bb3bd24c5fd4541e046994733757b.zip
Globally replace u_int*_t from (non-contributed) man pages.
The reasoning behind this, is that if we are consistent in our documentation about the uint*_t stuff, people will be less tempted to write new code that uses the non-standard types. I am not going to bump the man page dates, as these changes can be considered style nits. The meaning of the man pages is unaffected. MFC after: 1 month
Notes
Notes: svn path=/head/; revision=231564
Diffstat (limited to 'share/man/man5/fs.5')
-rw-r--r--share/man/man5/fs.56
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man5/fs.5 b/share/man/man5/fs.5
index abb0f470bf8e..fbe870645dd8 100644
--- a/share/man/man5/fs.5
+++ b/share/man/man5/fs.5
@@ -145,12 +145,12 @@ struct fs {
int8_t fs_old_flags; /* old FS_ flags */
u_char fs_fsmnt[MAXMNTLEN]; /* name mounted on */
u_char fs_volname[MAXVOLLEN]; /* volume name */
- u_int64_t fs_swuid; /* system-wide uid */
+ uint64_t fs_swuid; /* system-wide uid */
int32_t fs_pad; /* due to alignment of fs_swuid */
/* these fields retain the current block allocation info */
int32_t fs_cgrotor; /* last cg searched */
void *fs_ocsp[NOCSPTRS]; /* padding; was list of fs_cs buffers */
- u_int8_t *fs_contigdirs; /* # of contiguously allocated dirs */
+ uint8_t *fs_contigdirs; /* # of contiguously allocated dirs */
struct csum *fs_csp; /* cg summary info buffer for fs_cs */
int32_t *fs_maxcluster; /* max cluster in each cyl group */
u_int *fs_active; /* used by snapshots to track fs */
@@ -175,7 +175,7 @@ struct fs {
int32_t fs_contigsumsize; /* size of cluster summary array */
int32_t fs_maxsymlinklen; /* max length of an internal symlink */
int32_t fs_old_inodefmt; /* format of on-disk inodes */
- u_int64_t fs_maxfilesize; /* maximum representable file size */
+ uint64_t fs_maxfilesize; /* maximum representable file size */
int64_t fs_qbmask; /* ~fs_bmask for use with 64-bit size */
int64_t fs_qfmask; /* ~fs_fmask for use with 64-bit size */
int32_t fs_state; /* validate fs_clean field */