summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Coddens <[email protected]>2013-01-11 08:54:18 -0800
committerBrian Behlendorf <[email protected]>2013-01-11 09:16:59 -0800
commit5c839890712c216aa657d8e3f5a25dca1469157d (patch)
tree826b040306689fe5306c68c5cb992d5f8cc80aa6
parente191b54ecfbd2af619d5cb4b3a0f298305c2145a (diff)
Illumos #2618 arc.c mistypes in the comments
2618 arc.c mistypes in the comments Reviewed by: Jason King <[email protected]> Reviewed by: Josef Sipek <[email protected]> Approved by: Richard Lowe <[email protected]> References: illumos/illumos-gate@fc98fea58e89224f6f13d7fae246d6cb5dfa35ea illumos changeset: 13721:5b51a16a186f https://www.illumos.org/issues/2618 Ported-by: Brian Behlendorf <[email protected]>
-rw-r--r--module/zfs/arc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/zfs/arc.c b/module/zfs/arc.c
index 5e21b1b71..50b686535 100644
--- a/module/zfs/arc.c
+++ b/module/zfs/arc.c
@@ -80,9 +80,9 @@
* types of locks: 1) the hash table lock array, and 2) the
* arc list locks.
*
- * Buffers do not have their own mutexs, rather they rely on the
- * hash table mutexs for the bulk of their protection (i.e. most
- * fields in the arc_buf_hdr_t are protected by these mutexs).
+ * Buffers do not have their own mutexes, rather they rely on the
+ * hash table mutexes for the bulk of their protection (i.e. most
+ * fields in the arc_buf_hdr_t are protected by these mutexes).
*
* buf_hash_find() returns the appropriate mutex (held) when it
* locates the requested buffer in the hash table. It returns
@@ -2890,7 +2890,7 @@ arc_read_done(zio_t *zio)
}
/*
- * "Read" the block block at the specified DVA (in bp) via the
+ * "Read" the block at the specified DVA (in bp) via the
* cache. If the block is found in the cache, invoke the provided
* callback immediately and return. Note that the `zio' parameter
* in the callback will be NULL in this case, since no IO was