diff options
author | Richard Elling <[email protected]> | 2017-09-25 10:02:24 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-09-25 10:02:24 -0700 |
commit | e8474f9ad3b3d23c3277535c4f53f8fd1e6cbd74 (patch) | |
tree | 7ec8e30099c7d450de7e1825e395a52cd85b11c6 /module/spl | |
parent | 9df9692637aeee416f509c7f39655beb2d35b549 (diff) |
Pool io stat shows wlentime instead of rlentime
Reviewed-by: Tim Chase <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Giuseppe Di Natale <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Richard Elling <[email protected]>
Closes #652
Closes #651
Diffstat (limited to 'module/spl')
-rw-r--r-- | module/spl/spl-kstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/spl/spl-kstat.c b/module/spl/spl-kstat.c index 3765f63cb..ed5265311 100644 --- a/module/spl/spl-kstat.c +++ b/module/spl/spl-kstat.c @@ -264,7 +264,7 @@ kstat_seq_show_io(struct seq_file *f, kstat_io_t *kip) kip->nread, kip->nwritten, kip->reads, kip->writes, kip->wtime, kip->wlentime, kip->wlastupdate, - kip->rtime, kip->wlentime, kip->rlastupdate, + kip->rtime, kip->rlentime, kip->rlastupdate, kip->wcnt, kip->rcnt); return 0; |