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: