diff options
| author | Kirk McKusick <mckusick@FreeBSD.org> | 1999-12-01 02:16:51 +0000 |
|---|---|---|
| committer | Kirk McKusick <mckusick@FreeBSD.org> | 1999-12-01 02:16:51 +0000 |
| commit | 461bb71e4fc9e5baa18691038b529148e73fa975 (patch) | |
| tree | 7dc5ab8caa425dbf06d23b675f48b88fd0124f6a | |
| parent | e9cc4758512d351375f6aa0022a8a93d9b4c8c94 (diff) | |
Notes
| -rw-r--r-- | sbin/mount/mount.c | 3 | ||||
| -rw-r--r-- | sbin/mount_ifs/mount.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 1ba9e570a7f3..8510db5d0132 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -524,6 +524,9 @@ prmount(sfp) if (sfp->f_syncwrites != 0 || sfp->f_asyncwrites != 0) (void)printf(", writes: sync %ld async %ld", sfp->f_syncwrites, sfp->f_asyncwrites); + if (sfp->f_syncreads != 0 || sfp->f_asyncreads != 0) + (void)printf(", reads: sync %ld async %ld", + sfp->f_syncreads, sfp->f_asyncreads); (void)printf(")\n"); } diff --git a/sbin/mount_ifs/mount.c b/sbin/mount_ifs/mount.c index 1ba9e570a7f3..8510db5d0132 100644 --- a/sbin/mount_ifs/mount.c +++ b/sbin/mount_ifs/mount.c @@ -524,6 +524,9 @@ prmount(sfp) if (sfp->f_syncwrites != 0 || sfp->f_asyncwrites != 0) (void)printf(", writes: sync %ld async %ld", sfp->f_syncwrites, sfp->f_asyncwrites); + if (sfp->f_syncreads != 0 || sfp->f_asyncreads != 0) + (void)printf(", reads: sync %ld async %ld", + sfp->f_syncreads, sfp->f_asyncreads); (void)printf(")\n"); } |
