aboutsummaryrefslogtreecommitdiffstats
path: root/module/zfs/zio.c
diff options
context:
space:
mode:
authorShen Yan <[email protected]>2013-07-03 10:00:16 +0800
committerBrian Behlendorf <[email protected]>2013-07-09 10:41:46 -0700
commit8e07b99b2f5e1e281af72e07dee87301c8872f56 (patch)
tree23e113b57d0c5d2c08b3a3cf7737968c7fc29869 /module/zfs/zio.c
parente77aa730bc9d7ac80aac56b68f9cf7d51b275a29 (diff)
Update zio.c
The cv_wait_io is used to account io time instead of cv_wait. Signed-off-by: Brian Behlendorf <[email protected]> Closes #1566
Diffstat (limited to 'module/zfs/zio.c')
-rw-r--r--module/zfs/zio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/zio.c b/module/zfs/zio.c
index 8cf040850..0bc19a7b7 100644
--- a/module/zfs/zio.c
+++ b/module/zfs/zio.c
@@ -1248,7 +1248,7 @@ zio_interrupt(zio_t *zio)
* vdev-level caching or aggregation; (5) the I/O is deferred
* due to vdev-level queueing; (6) the I/O is handed off to
* another thread. In all cases, the pipeline stops whenever
- * there's no CPU work; it never burns a thread in cv_wait().
+ * there's no CPU work; it never burns a thread in cv_wait_io().
*
* There's no locking on io_stage because there's no legitimate way
* for multiple threads to be attempting to process the same I/O.