aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2001-03-28 18:21:54 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2001-03-28 18:21:54 +0000
commit392550af02768f1fff962d5dfeea5c81d8bc18ea (patch)
treed63075987239fdb8bdbe4e6276816905a2aba11d
parent3f865320ba02b32f26ba5616a31ea2806181712d (diff)
Notes
-rw-r--r--lib/libc/sys/statfs.27
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/sys/statfs.2 b/lib/libc/sys/statfs.2
index 589940ffed7f2..3bc174a1b0afc 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: