diff options
Diffstat (limited to 'sys/kern/subr_disk.c')
-rw-r--r-- | sys/kern/subr_disk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/kern/subr_disk.c b/sys/kern/subr_disk.c index dc158928dd2..dfed96b2241 100644 --- a/sys/kern/subr_disk.c +++ b/sys/kern/subr_disk.c @@ -385,6 +385,7 @@ disk_unbusy(diskp, bcount) diskp->dk_bytes += bcount; diskp->dk_xfer++; } + diskp->dk_seek++; } /* @@ -401,6 +402,7 @@ disk_resetstat(diskp) diskp->dk_xfer = 0; diskp->dk_bytes = 0; + diskp->dk_seek = 0; t = splclock(); diskp->dk_attachtime = mono_time; |