From 392550af02768f1fff962d5dfeea5c81d8bc18ea Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Wed, 28 Mar 2001 18:21:54 +0000 Subject: [PATCH] The f_syncreads and f_asyncreads entries are missing from the man page. This also tidies up the formatting a bit and omits all the padding entries. PR: 25834 Submitted by: Tony Finch --- lib/libc/sys/statfs.2 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/libc/sys/statfs.2 b/lib/libc/sys/statfs.2 index 589940ffed7..3bc174a1b0a 100644 --- a/lib/libc/sys/statfs.2 +++ b/lib/libc/sys/statfs.2 @@ -67,7 +67,6 @@ typedef struct fsid { int32_t val[2]; } fsid_t; /* file system id type */ #define MNAMELEN 90 /* length of buffer for returned name */ struct statfs { -long f_spare2; /* placeholder */ long f_bsize; /* fundamental file system block size */ long f_iosize; /* optimal transfer block size */ long f_blocks; /* total data blocks in file system */ @@ -82,8 +81,10 @@ int f_flags; /* copy of mount flags */ long f_syncwrites; /* count of sync writes since mount */ long f_asyncwrites; /* count of async writes since mount */ char f_fstypename[MFSNAMELEN];/* fs type name */ -char f_mntonname[MNAMELEN]; /* mount point */ -char f_mntfromname[MNAMELEN]; /* mounted filesystem */ +char f_mntonname[MNAMELEN]; /* mount point */ +long f_syncreads; /* count of sync reads since mount */ +long f_asyncreads; /* count of async reads since mount */ +char f_mntfromname[MNAMELEN]; /* mounted filesystem */ }; .Ed The flags that may be returned include: